.article-body > .flow {
    width: 100%;
}
.article-body figure {
    margin: 0;
    min-width: 0;
    width: 100%;
    flex-shrink: 0;
}
.article-body .article-figure-inner {
    aspect-ratio: auto;
    overflow: hidden;
    display: block;
    min-width: 0;
}
.article-body .article-figure-inner img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
}
.article-body .article-figure-inner--placeholder {
    aspect-ratio: 455 / 302;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-carousel {
    width: 100%;
}
.article-carousel__viewport {
    position: relative;
    overflow: hidden;
    background: var(--color-grey-96, #f4f4f4);
}
.article-body .article-carousel__slide {
    display: none;
    margin: 0;
    width: 100%;
}
.article-body .article-carousel__slide.is-active {
    display: block;
}
.article-body .article-carousel__slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
}
.article-carousel__slide figcaption {
    padding: var(--space-12, 12px) var(--space-16, 16px);
    color: var(--color-grey-40, #666);
    font-size: 14px;
}
.article-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.article-carousel__arrow--prev { left: var(--space-12, 12px); }
.article-carousel__arrow--next { right: var(--space-12, 12px); }
.article-carousel__arrow .icon-mask {
    width: 20px;
    height: 20px;
    mask-image: url('/icons/chevron-left-09e53a2d79701a8ee1ce0afcd44eb3fa.svg');
    -webkit-mask-image: url('/icons/chevron-left-09e53a2d79701a8ee1ce0afcd44eb3fa.svg');
}
.article-carousel__arrow--next .icon-mask { transform: rotate(180deg); }
.article-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: var(--space-12, 12px);
}
.article-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--color-card-border, #ddd);
    transition: width .2s ease, background-color .2s ease;
}
.article-carousel__dot.is-active {
    width: 24px;
    background: var(--color-blue-80, #0a6dae);
}
