.rn-authors-page {
    --rn-primary: #42b574;
    --rn-primary-dark: #31945d;
    --rn-dark: #1d1d1f;
    --rn-text: #4c4c4c;
    --rn-muted: #767676;
    --rn-border: #e8e8e8;
    --rn-background: #f7f7f7;
    --rn-surface: #ffffff;
    width: 100%;
    padding: 34px 0 76px;
    color: var(--rn-text);
    font-family: "Lato", Helvetica, Arial, sans-serif;
    text-align: left;
}

.rn-authors-page,
.rn-authors-page * {
    box-sizing: border-box;
}

.rn-authors-page a {
    color: inherit;
}

.rn-authors-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.rn-authors-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: var(--rn-primary-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.rn-authors-header h1,
.rn-author-hero h1 {
    margin: 0;
    color: var(--rn-dark);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.5px;
}

.rn-authors-header > p {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--rn-muted);
    font-size: 17px;
    line-height: 1.75;
}

.rn-authors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rn-author-card {
    min-width: 0;
    border: 1px solid var(--rn-border);
    border-radius: 5px;
    background: var(--rn-surface);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rn-author-card:hover {
    border-color: #d7d7d7;
    box-shadow: 0 14px 34px rgba(29, 29, 31, 0.08);
}

.rn-author-card > article {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.rn-author-card-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--rn-background);
    overflow: hidden;
}

.rn-author-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.rn-author-card:hover .rn-author-card-image:not(.is-placeholder) img {
    transform: scale(1.015);
}

.rn-author-card-image.is-placeholder img,
.rn-author-hero-image.is-placeholder img {
    padding: 25%;
    object-fit: contain;
    object-position: center;
    opacity: 0.55;
}

.rn-author-card-content {
    display: flex;
    flex: 1;
    align-items: flex-start;
    padding: 25px 25px 27px;
    flex-direction: column;
}

.rn-author-card h2 {
    margin: 0;
    color: var(--rn-dark);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}

.rn-author-card h2 a,
.rn-author-card-link,
.rn-author-news-item h3 a,
.rn-author-news-link {
    text-decoration: none;
}

.rn-author-card h2 a:hover,
.rn-author-card h2 a:focus,
.rn-author-news-item h3 a:hover,
.rn-author-news-item h3 a:focus {
    color: var(--rn-primary-dark);
}

.rn-author-card-role {
    min-height: 48px;
    margin: 10px 0 24px;
    color: var(--rn-muted);
    font-size: 14px;
    line-height: 1.65;
}

.rn-author-card-link,
.rn-author-news-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: var(--rn-primary-dark) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.rn-author-card-link span,
.rn-author-news-link span {
    margin-left: 9px;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.rn-author-card-link:hover span,
.rn-author-card-link:focus span,
.rn-author-news-link:hover span,
.rn-author-news-link:focus span {
    transform: translateX(3px);
}

.rn-authors-empty {
    margin: 0;
    padding: 24px;
    border: 1px solid var(--rn-border);
    background: var(--rn-background);
    color: var(--rn-muted);
    text-align: center;
}

.rn-author-page {
    padding-top: 28px;
}

.rn-author-hero {
    display: grid;
    grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
    margin: 0;
    padding: 0 0 62px;
    border-bottom: 1px solid var(--rn-border);
}

.rn-author-hero-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    border-radius: 5px;
    background: var(--rn-background);
    overflow: hidden;
}

.rn-author-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.rn-author-hero-content {
    max-width: 760px;
    padding-top: 10px;
}

.rn-author-role {
    margin: 13px 0 0;
    color: var(--rn-primary-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
}

.rn-author-biography {
    max-width: 700px;
    margin-top: 27px;
    color: var(--rn-text);
    font-size: 17px;
    line-height: 1.8;
}

.rn-author-references {
    margin-top: 31px;
    padding-top: 24px;
    border-top: 1px solid var(--rn-border);
}

.rn-author-references h2 {
    margin: 0 0 14px;
    color: var(--rn-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.rn-author-reference-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rn-author-reference-list a {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid var(--rn-border);
    border-radius: 999px;
    background: var(--rn-surface);
    color: var(--rn-text) !important;
    font-size: 12px;
    line-height: 1.3;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.rn-author-reference-list a:hover,
.rn-author-reference-list a:focus {
    border-color: var(--rn-primary);
    color: var(--rn-primary-dark) !important;
}

.rn-author-reference-list span {
    margin-left: 7px;
}

.rn-author-news {
    max-width: 900px;
    margin-top: 62px;
}

.rn-author-news-header {
    margin-bottom: 25px;
}

.rn-author-news-header h2 {
    margin: 0;
    color: var(--rn-dark);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}

.rn-author-news-list {
    border-top: 1px solid var(--rn-border);
}

.rn-author-news-item {
    position: relative;
    padding: 25px 27px 26px;
    border-bottom: 1px solid var(--rn-border);
    background: var(--rn-surface);
    transition: background 0.2s ease;
}

.rn-author-news-item::before {
    position: absolute;
    top: 25px;
    bottom: 26px;
    left: 0;
    width: 3px;
    background: var(--rn-primary);
    content: "";
}

.rn-author-news-item:hover {
    background: #fbfbfb;
}

.rn-author-news-item time {
    display: block;
    margin-bottom: 7px;
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rn-author-news-item h3 {
    margin: 0 0 13px;
    color: var(--rn-dark);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

.rn-author-card a:focus-visible,
.rn-author-reference-list a:focus-visible,
.rn-author-news-item a:focus-visible {
    outline: 3px solid rgba(66, 181, 116, 0.3);
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .rn-authors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rn-author-hero {
        grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
        gap: 38px;
    }

    .rn-authors-header h1,
    .rn-author-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .rn-authors-page {
        padding: 22px 0 52px;
    }

    .rn-authors-header {
        margin-bottom: 34px;
        text-align: left;
    }

    .rn-authors-header h1,
    .rn-author-hero h1 {
        font-size: 31px;
    }

    .rn-authors-header > p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.7;
    }

    .rn-authors-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rn-author-card-role {
        min-height: 0;
    }

    .rn-author-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 45px;
    }

    .rn-author-hero-image {
        max-width: 260px;
    }

    .rn-author-hero-content {
        padding-top: 0;
    }

    .rn-author-biography {
        font-size: 16px;
        line-height: 1.75;
    }

    .rn-author-news {
        margin-top: 45px;
    }

    .rn-author-news-header h2 {
        font-size: 25px;
    }

    .rn-author-news-item {
        padding: 21px 20px 22px;
    }

    .rn-author-news-item::before {
        top: 21px;
        bottom: 22px;
    }

    .rn-author-news-item h3 {
        font-size: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rn-author-card,
    .rn-author-card-image img,
    .rn-author-card-link span,
    .rn-author-news-link span,
    .rn-author-reference-list a,
    .rn-author-news-item {
        transition: none;
    }
}
