/* ==============================
    PREDAVAC CARD
 ============================== */


.predavac-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;

    margin-bottom: 16px;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #ffffff;

    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* ==============================
    IMAGE
 ============================== */

.predavac-card-image {
    flex: 0 0 160px;
}

.predavac-card-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

/* ==============================
    CONTENT
 ============================== */

.predavac-card-content {
    flex: 1;
}

/* ==============================
    TYPOGRAPHY
 ============================== */

.predavac-card-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.predavac-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
}

.predavac-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/* ==============================
    RESPONSIVENESS
 ============================== */

@media (max-width: 768px) {

    .predavac-card {
        flex-direction: column;
    }

    .predavac-card-image {
        flex: none;
    }

    .predavac-card-image img {
        width: 140px;
        height: 140px;
    }
}
