.article-page {
    padding-top: 2.4rem;
}

.article-page__article {
    min-width: 0;
}

.article-page__crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0;
    margin: 0 0 1.2rem;
    list-style: none;
}

.article-page__crumbs li {
    display: inline-flex;
    align-items: center;
}

.article-page__crumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.55rem;
    color: #8c8b88;
}

.article-page__crumbs a {
    color: #2a2a2a;
    font-family: var(--font-label);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.article-page__crumbs a:hover {
    color: #0f0f0f;
}

.article-page__head {
    width: 100%;
}

.article-page__title {
    color: #0f0f0f;
    font-family: var(--font-heading);
    font-size: clamp(3.4rem, 4.6vw, 5rem);
    line-height: 1.2;
}

.article-page__byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1.2rem;
}

.article-page__byline,
.article-page__byline a,
.article-page__byline time {
    color: #8c8b88;
    font-size: 1.6rem;
    line-height: 1.4;
}

.article-page__author {
    color: #0f0f0f;
    background-image: linear-gradient(180deg, #eeb045 0%, #eeb045 100%);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 2px;
    transition: background-size 0.1s ease-out, background-image 0.1s ease-out;
}

.article-page__author:hover {
    background-image: linear-gradient(180deg, #eedbbc 65%, #eeb045 100%);
    background-size: 100% 100%;
}

.article-page__timestamp::before {
    content: "\2022";
    margin: 0 0.6rem;
    color: #eeb045;
}

.article-page__media {
    width: 100%;
    aspect-ratio: 78 / 44;
    margin: 0;
    overflow: hidden;
}

.article-page__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.article-page__stage {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(32rem, 1fr);
    column-gap: 2rem;
    row-gap: 2.4rem;
    align-items: start;
    width: 100%;
    margin-top: 2rem;
}

.article-page__stage--solo {
    grid-template-columns: minmax(0, 1fr);
    justify-content: start;
}

.article-page__main {
    min-width: 0;
    width: 100%;
    order: 1;
}

.article-page__aside {
    min-width: 0;
    order: 2;
    position: sticky;
    top: 8.8rem;
    align-self: start;
}

.article-page__article--aside-left .article-page__aside {
    order: 1;
}

.article-page__article--aside-left .article-page__main {
    order: 2;
}

.article-page__toc {
    padding: 2rem;
    background: #fff;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.article-page__toc-kicker {
    margin: 0;
    color: #0f0f0f;
    font-family: var(--font-label);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.article-page__toc-list {
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.article-page__toc-item {
    border-bottom: 1px solid #cecece;
}

.article-page__toc-item:last-child {
    border-bottom: 0;
}

.article-page__toc-item a {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    color: #0f0f0f;
}

.article-page__toc-item a:hover {
    color: #eeb045;
}

.article-page__toc-index {
    flex: 0 0 2rem;
    color: #eeb045;
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.article-page__toc-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.35;
}

.article-page__content {
    min-width: 0;
    margin-top: 2.4rem;
}

.article-page__inline-rail {
    width: min(100%, 78rem);
    margin-top: 2.4rem;
}

.article-page__share {
    margin-top: 1.8rem;
    padding: 2rem;
    background: #fff;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.article-page__share-kicker {
    margin: 0;
    color: #0f0f0f;
    font-family: var(--font-label);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.article-page__share-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.article-page__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    color: #0f0f0f;
    background: #f5f2ec;
    transition: background-color 0.15s ease-out, color 0.15s ease-out;
}

.article-page__share-link:hover {
    color: #0f0f0f;
    background: #eeb045;
}

.rich-copy {
    color: #2a2a2a;
    font-size: 1.8rem;
    line-height: 1.6;
}

.rich-copy > *:first-child {
    margin-top: 0;
}

.rich-copy h2,
.rich-copy h3,
.rich-copy h4 {
    color: #0f0f0f;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.35;
}

.rich-copy h2 {
    margin: 3rem 0 1.6rem;
    font-size: 3.2rem;
    scroll-margin-top: 8rem;
}

.rich-copy h3 {
    margin: 2.4rem 0 1.2rem;
    font-size: 2.3rem;
}

.rich-copy h4 {
    margin: 1.8rem 0 0.8rem;
    font-size: 1.9rem;
}

.rich-copy p,
.rich-copy ul,
.rich-copy ol,
.rich-copy blockquote {
    margin: 1.6rem 0;
}

.rich-copy ul,
.rich-copy ol {
    padding-left: 2.2rem;
}

.rich-copy li {
    margin: 0.8rem 0;
}

.rich-copy a {
    color: #0f0f0f;
    background-image: linear-gradient(180deg, #eeb045 0%, #eeb045 100%);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 2px;
    text-decoration: none;
    transition: background-size 0.2s ease-out, background-image 0.2s ease-out;
}

.rich-copy a:hover {
    background-image: linear-gradient(180deg, #eedbbc 65%, #eeb045 100%);
    background-size: 100% 100%;
}

.rich-copy blockquote {
    position: relative;
    padding: 4.2rem 0 2.8rem;
    color: #0f0f0f;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.45;
    font-style: italic;
}

.rich-copy blockquote::before,
.rich-copy blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.4rem;
    background-image: radial-gradient(#cecece 1.5px, transparent 0);
    background-size: 1.4rem 1.4rem;
    background-repeat: repeat-x;
}

.rich-copy blockquote::before {
    top: 0;
}

.rich-copy blockquote::after {
    bottom: 0;
}

.rich-copy img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2.4rem 0;
}

.rich-copy figure,
.rich-copy .wp-block-image,
.rich-copy .wp-block-gallery {
    width: 100%;
    max-width: 100%;
    margin: 2.4rem 0;
}

.rich-copy .wp-block-table {
    width: 100%;
    max-width: 100%;
    margin: 2.4rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rich-copy .wp-block-table table,
.rich-copy table {
    width: 100%;
    min-width: 72rem;
    border-collapse: collapse;
    background: var(--tone-card, #fff);
}

.rich-copy .wp-block-table th,
.rich-copy .wp-block-table td,
.rich-copy table th,
.rich-copy table td {
    padding: 1.2rem 1.4rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.12);
    color: #2a2a2a;
    font-size: 1.7rem;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
}

.rich-copy .wp-block-table thead th,
.rich-copy table thead th {
    background: var(--tone-page, #f5f2ec);
    color: #0f0f0f;
    font-family: var(--font-label);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rich-copy .wp-block-table tbody tr:nth-child(even),
.rich-copy table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.025);
}

.rich-copy .wp-block-table figcaption {
    margin-top: 1rem;
    color: #8c8b88;
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: left;
}

.article-page__related {
    margin-top: 4rem;
}

.article-page__related .article-index {
    margin-top: 2.4rem;
}
