/* Author Section Styles */
.author-section {
    padding: var(--spacing-xl, 80px) 0;
    background-color: #1B263B;
}

.author-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.author-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #D4A017;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.3);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-content {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 2rem;
    color: #D4A017;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.author-title {
    font-size: 1rem;
    color: #B0C4DE;
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.author-bio {
    line-height: 1.8;
}

.author-bio p {
    margin-bottom: 20px;
    color: #E5E5E5;
    font-size: 1.05rem;
}

.author-bio strong {
    color: #D4A017;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .author-container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .author-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .author-name {
        font-size: 1.5rem;
    }

    .author-title {
        font-size: 0.9rem;
    }

    .author-bio p {
        font-size: 1rem;
        text-align: left;
    }
}