/* Expert Profile Section */
.expert-profile {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.expert-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.expert-image-container {
    position: relative;
    padding-bottom: 20px;
}

.expert-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--bg-light), 20px 20px 0 2px var(--accent);
    object-fit: cover;
    max-height: 500px;
}

.expert-badge {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.expert-badge i {
    color: var(--accent);
    font-size: 1.5rem;
}

.expert-badge span {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.expert-content {
    padding-left: 20px;
}

.expert-subtitle {
    font-family: 'Lora', serif;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-bio {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.expert-highlights {
    margin-bottom: 30px;
}

.expert-highlights li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
}

.expert-highlights li i {
    color: var(--primary);
    /* Checkmark color */
}

.expert-education {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.expert-education h5 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.expert-education h5 i {
    color: var(--accent);
}

.expert-education ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expert-education ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95rem;
}

.expert-education ul li::before {
    content: "▪";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 900px) {
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expert-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .expert-content {
        padding-left: 0;
        text-align: center;
    }

    .expert-bio {
        text-align: left;
        /* Keep bio readable */
    }

    .expert-highlights li {
        justify-content: flex-start;
        /* Keep aligned left even if valid center */
    }

    .expert-education {
        text-align: left;
    }

    .expert-badge {
        right: 0;
    }
}