.author-page {
    background: #f7f7f4;
    color: #222;
}

.author-hero {
    padding: 64px 0px 64px;
}

.author-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.author-profile {
    background: #fff;
    border: 1px solid #e4e0d9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(35, 30, 25, 0.08);
}

.author-photo-frame {
    aspect-ratio: 2 / 3;
    background: #d9ddd8;
    overflow: hidden;
}

.author-photo-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-profile-body {
    padding: 26px 28px 30px;
}

.author-profile-label,
.author-kicker,
.author-highlight-label {
    margin: 0 0 8px;
    color: #7d6d57;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.author-profile h1 {
    margin: 0;
    color: #1f1f1f;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.18;
}

.author-role {
    margin: 12px 0 0;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.55;
}

.author-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.author-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid #ded8cf;
    border-radius: 6px;
    color: #2d2d2d;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.author-social-links a:hover,
.author-social-links a:focus {
    border-color: #8940c0;
    background: #fbf7ff;
    color: #8940c0;
}

.author-social-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.author-content {
    background: #fff;
    border: 1px solid #e4e0d9;
    border-radius: 8px;
    padding: 38px 44px 42px;
    box-shadow: 0 18px 40px rgba(35, 30, 25, 0.06);
}

.author-content h2 {
    margin: 0 0 18px;
    color: #202020;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
}

.author-content h2::after {
    content: "";
    display: block;
    width: 68px;
    height: 4px;
    margin-top: 16px;
    background: #28a745;
}

.author-intro {
    margin: 0 0 24px;
    color: #343434;
    font-size: 20px;
    line-height: 1.65;
}

.author-text p {
    margin: 0 0 18px;
    color: #3c3c3c;
    font-size: 17px;
    line-height: 1.72;
}

.author-text p:last-child {
    margin-bottom: 0;
}

.author-highlight {
    display: grid;
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
    gap: 26px;
    margin: 32px 0;
    padding: 26px;
    border-left: 5px solid #8940c0;
    background: #f7f3ee;
}

.author-highlight h3 {
    margin: 0;
    color: #1f1f1f;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.author-highlight p:last-child {
    margin: 0;
    color: #343434;
    font-size: 17px;
    line-height: 1.68;
}

@media (max-width: 991.98px) {
    .author-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .author-profile {
        display: grid;
        grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
    }

    .author-photo-frame {
        min-height: 100%;
    }
}

@media (max-width: 767.98px) {
    .author-hero {
        padding: 28px 0 44px;
    }

    .author-profile {
        display: block;
    }

    .author-profile-body,
    .author-content {
        padding: 24px;
    }

    .author-profile h1 {
        font-size: 26px;
    }

    .author-content h2 {
        font-size: 28px;
    }

    .author-intro {
        font-size: 18px;
    }

    .author-highlight {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px;
    }

}
