.cards {
    margin: 0 auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    gap: 20px;
    font-family: 'Inter', sans-serif;
   
    
}

.card {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Ensure cards stack vertically */
    
}

.card__image {
    width: 80%;
    display: block;
    align-self: center;
}
.comp__image {
    width: 30%;
    display: block;
    align-self: center;
}

.card__content{
    flex-grow: 1; /* Make the content area take up available space */
 
    line-height: 1.5;
    font-size: 0.9em;
    padding: 15px;
    background: #fafafa;
}

.card__content > p:first-of-type {
    margin-top: 0;
}

.card__content > p:last-of-type {
    margin-bottom: 0;
}

.card__info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555555;
    background: #eeeeee;
    font-size: 0.8em;
    border-bottom: 2px solid #cccccc;
}

.card__info i {
    font-size: 0.9em;
    margin-right: 8px;
}
.card__link {
    color: #64968c;
    text-decoration: none;
}



