.article-show {
    padding-bottom: 0;
}

.article-show__article {
    max-width: var(--sm-content-width);
    margin-inline: auto;
    width: 100%;
}

.article-show__article .wrapper-standard {
    max-width: var(--sm-content-width);
    margin-inline: auto;
    padding-inline: var(--global-content-edge-padding);
    width: 100%;
}

.article-show__more .wrapper-standard {
    max-width: var(--global-content-width);
}

.article-show__header {
    padding-top: 0;
    padding-bottom: 1.5rem;
}

.article-show__breadcrumbs {
    margin-bottom: 4.5rem;
}

.article-show__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
}

.article-show__meta {
    font-size: var(--font-xs);
    font-weight: 600;
    color: var(--global-palette5);
    margin: 0;
}

.article-show__share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-show__share-link,
.article-show__share-copy {
    color: var(--global-palette1);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-size: var(--font-xs);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.article-show__share-link .ph,
.article-show__share-copy .ph {
    font-size: 1.4em;
}

.article-show__share-link:hover,
.article-show__share-link:focus {
    color: var(--global-palette1);
    background: none;
}

.article-show__share-link:hover .ph,
.article-show__share-link:focus .ph {
    color: var(--global-palette2);
}

.article-show__share-copy:hover,
.article-show__share-copy:focus {
    color: var(--global-palette1);
    background: none;
}

.article-show__share-copy:hover .ph,
.article-show__share-copy:focus .ph {
    color: var(--global-palette2);
}

.article-show__share-copy {
    font-family: inherit;
}

.article-show__title {
    font-size: var(--font-l);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.article-show__image-wrap {
    margin-bottom: 2rem;
}

.article-show__image {
    width: 100%;
    line-height: 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.article-show__content {
    margin-bottom: 2rem;
}

.article-show__body {
    font-size: var(--font-body);
    line-height: 1.7;
}

.article-show__cta {
    margin-bottom: 3rem;
}

.article-show__cta .button-gold {
    display: block;
    width: 100%;
    padding: 1.4rem 2rem;
    font-size: var(--font-s);
    text-align: center;
    white-space: normal;
}

.article-show__more {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: var(--global-palette8);
}

.article-show__more-inner {
    max-width: var(--global-content-width);
    margin-inline: auto;
    padding-inline: var(--global-content-edge-padding);
    width: 100%;
}

.article-show__more-title {
    font-size: var(--font-m);
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.article-show__more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .article-show__more-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .article-show__more-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
