.author-profile-container {
    max-width: 1000px;
    width: 90%;
    margin: 5.5rem auto 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .author-profile-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
        margin: 8rem auto 4rem auto;
    }
}

.author-image-wrapper {
    flex-shrink: 0;
    width: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #e2e8f0;
}
.author-image-wrapper img {
    width: 100%;
    height: auto;
    min-height: 260px;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.author-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1rem;
}

.author-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00346e;
    margin-bottom: 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .author-name {
        font-size: 2.6rem;
        text-align: left;
    }
}

.author-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    text-align: justify;
}
@media (min-width: 768px) {
    .author-desc {
        font-size: 1.15rem;
        text-align: justify;
    }
}
