/* Editorial system for the article listing and reading experience. */
.articles-editorial-page,
.article-reading-page {
    background: var(--ho-soft);
    color: var(--ho-text);
}

.articles-index-hero,
.article-header {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ho-line);
    background:
        radial-gradient(circle at 86% 10%, color-mix(in srgb, var(--ho-orange) 10%, transparent), transparent 26%),
        radial-gradient(circle at 12% 90%, color-mix(in srgb, var(--ho-cyan) 9%, transparent), transparent 28%),
        var(--ho-white);
}

.articles-index-hero::after,
.article-header::after {
    position: absolute;
    right: max(4vw, 28px);
    bottom: -54px;
    width: 190px;
    height: 190px;
    border: 1px solid color-mix(in srgb, var(--ho-cyan) 18%, transparent);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.articles-index-hero {
    padding: 36px 0 46px;
}

.articles-index-hero .portal-container,
.article-header .portal-container {
    position: relative;
    z-index: 1;
}

.articles-hero-copy {
    max-width: 940px;
}

.articles-hero-copy .portal-kicker,
.article-header-category,
.articles-section-label > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ho-cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.articles-hero-copy .portal-kicker::before,
.article-header-category::before,
.articles-section-label > span:first-child::before {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: '';
}

.articles-hero-copy h1 {
    max-width: 900px;
    margin: 13px 0 0;
    color: var(--ho-navy);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.articles-hero-copy p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--ho-muted);
    font-size: 17px;
    line-height: 1.7;
}

.articles-index-content {
    padding: 54px 0 0;
    background: var(--ho-soft);
}

.articles-featured,
.articles-discovery,
.articles-latest {
    margin-top: 58px;
}

.articles-featured {
    margin-top: 0;
}

.articles-section-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.articles-section-label > span:last-child {
    height: 1px;
    flex: 1;
    background: var(--ho-line);
}

.ho-article-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ho-line);
    border-radius: var(--hop-radius, 20px);
    background: var(--ho-white);
    box-shadow: var(--ho-shadow-soft);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ho-article-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--ho-cyan) 38%, var(--ho-line));
    box-shadow: var(--ho-shadow);
}

.ho-article-card .ho-module-media {
    display: block;
    min-width: 0;
    overflow: hidden;
    background: color-mix(in srgb, var(--ho-soft) 88%, var(--ho-cyan));
}

.ho-article-card .ho-module-media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .35s ease;
}

.ho-article-card:hover .ho-module-media img {
    transform: scale(1.025);
}

.article-media-placeholder {
    position: relative;
    overflow: hidden;
    display: grid;
    min-height: 240px;
    place-items: center;
    align-content: center;
    gap: 8px;
    background:
        radial-gradient(circle at 82% 22%, color-mix(in srgb, var(--ho-white) 12%, transparent), transparent 24%),
        linear-gradient(135deg, color-mix(in srgb, var(--ho-navy) 88%, var(--ho-cyan)), var(--ho-navy));
    color: var(--ho-white);
}

.article-media-placeholder::after {
    position: absolute;
    right: -8%;
    bottom: -32%;
    width: 44%;
    aspect-ratio: 1;
    border: 1px solid color-mix(in srgb, var(--ho-white) 20%, transparent);
    border-radius: 50%;
    content: '';
}

.article-media-placeholder svg {
    width: 32px;
    height: 32px;
    color: color-mix(in srgb, var(--ho-white) 78%, var(--ho-cyan));
}

.article-media-placeholder span,
.article-media-placeholder strong {
    position: relative;
    z-index: 1;
}

.article-media-placeholder span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.article-media-placeholder strong {
    color: color-mix(in srgb, var(--ho-white) 78%, var(--ho-cyan));
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -.025em;
}

.ho-article-card .ho-module-body {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.article-category-link {
    width: max-content;
    max-width: 100%;
    color: var(--ho-cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.article-category-link:hover {
    color: var(--ho-navy);
}

.ho-article-card h2,
.ho-article-card h3 {
    margin: 10px 0 0;
    color: var(--ho-navy);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.25;
}

.ho-article-card h2 a,
.ho-article-card h3 a {
    color: inherit;
}

.ho-article-card h2 a:hover,
.ho-article-card h3 a:hover {
    color: var(--ho-cyan);
}

.ho-article-card .ho-module-body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 12px 0 0;
    color: var(--ho-muted);
    font-size: 14px;
    line-height: 1.68;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-card-byline {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 16px 0 18px;
    color: var(--ho-muted);
    font-size: 12px;
    font-weight: 700;
}

.article-card-byline svg {
    flex: 0 0 auto;
    color: var(--ho-cyan);
}

.article-card-byline a:hover {
    color: var(--ho-cyan);
}

.ho-article-card .ho-module-body > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    border-top: 1px solid var(--ho-line);
    padding-top: 18px;
}

.article-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 14px;
    color: var(--ho-muted);
    font-size: 11px;
}

.article-card-meta > * + *::before {
    margin-right: 14px;
    color: color-mix(in srgb, var(--ho-muted) 45%, transparent);
    content: '•';
}

.article-read-link {
    display: inline-flex;
    min-height: 40px;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    color: var(--ho-cyan);
    font-size: 12px;
    font-weight: 800;
}

.article-read-link svg {
    transition: transform .2s ease;
}

.article-read-link:hover {
    color: var(--ho-navy);
}

.article-read-link:hover svg {
    transform: translateX(3px);
}

.articles-featured .ho-article-card {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(320px, 42%);
    min-height: 430px;
    border-radius: calc(var(--hop-radius, 20px) + 4px);
}

.articles-featured .ho-module-media img,
.articles-featured .article-media-placeholder {
    min-height: 430px;
    aspect-ratio: auto;
}

.articles-featured .ho-module-body {
    justify-content: center;
    padding: 40px;
}

.articles-featured .ho-article-card h2 {
    margin-top: 13px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
}

.articles-featured .ho-article-card .ho-module-body > p {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.72;
    -webkit-line-clamp: 4;
}

.articles-featured .ho-module-body > footer {
    margin-top: 26px;
}

.articles-discovery {
    border: 1px solid var(--ho-line);
    border-radius: calc(var(--hop-radius, 20px) + 2px);
    background: var(--ho-white);
    padding: 28px;
    box-shadow: var(--ho-shadow-soft);
}

.articles-discovery-heading,
.articles-list-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.articles-discovery-heading h2,
.articles-list-heading h2 {
    margin: 7px 0 0;
    color: var(--ho-navy);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.14;
}

.articles-reset-link,
.article-related .articles-list-heading > a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    color: var(--ho-cyan);
    font-size: 12px;
    font-weight: 800;
}

.articles-filter-form {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(170px, 220px) minmax(170px, 220px) auto;
    gap: 10px;
    margin-top: 24px;
}

.articles-filter-form label {
    min-width: 0;
}

.articles-filter-form input,
.articles-filter-form select {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    border: 1px solid var(--ho-line);
    border-radius: 13px;
    background: var(--ho-soft);
    padding: 0 15px;
    color: var(--ho-text);
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.articles-filter-form input:hover,
.articles-filter-form select:hover {
    border-color: color-mix(in srgb, var(--ho-cyan) 40%, var(--ho-line));
}

.articles-filter-form input:focus,
.articles-filter-form select:focus {
    border-color: var(--ho-cyan);
    background: var(--ho-white);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--ho-cyan) 12%, transparent);
}

.articles-search-field {
    position: relative;
    display: block;
}

.articles-search-field > svg {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 16px;
    width: 19px;
    height: 19px;
    transform: translateY(-50%);
    color: var(--ho-muted);
    pointer-events: none;
}

.articles-search-field input {
    padding-left: 47px;
}

.articles-filter-form button {
    min-height: 52px;
    gap: 8px;
    padding-inline: 22px;
    white-space: nowrap;
}

.articles-category-pills {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    margin-top: 17px;
    padding: 2px 1px 5px;
    scrollbar-width: thin;
}

.articles-category-pills a,
.article-tag-list a {
    min-height: 40px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ho-line);
    border-radius: 999px;
    background: var(--ho-white);
    padding: 8px 15px;
    color: var(--ho-text);
    font-size: 12px;
    font-weight: 750;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.articles-category-pills a:hover,
.articles-category-pills a.is-active,
.article-tag-list a:hover {
    border-color: color-mix(in srgb, var(--ho-cyan) 58%, var(--ho-line));
    background: color-mix(in srgb, var(--ho-cyan) 8%, var(--ho-white));
    color: var(--ho-cyan);
}

.articles-list-heading {
    margin-bottom: 24px;
}

.articles-list-heading > p {
    margin: 0 0 5px;
    color: var(--ho-muted);
    font-size: 13px;
    font-weight: 700;
}

.articles-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.articles-card-grid .ho-article-card {
    display: flex;
    grid-row: auto;
    flex-direction: column;
}

.articles-card-grid .ho-article-card:first-child {
    grid-row: auto;
}

.articles-card-grid .ho-module-media {
    width: 100%;
    aspect-ratio: 16 / 10;
}

.articles-card-grid .ho-module-media img,
.articles-card-grid .ho-module-media .article-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
}

.articles-card-grid .ho-article-card:first-child h3,
.articles-card-grid .ho-article-card h3 {
    display: -webkit-box;
    min-height: 2.5em;
    overflow: hidden;
    font-size: 22px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.articles-card-grid .ho-article-card .ho-module-body > p {
    min-height: 5.04em;
}

.articles-card-grid .portal-empty {
    display: grid;
    gap: 8px;
}

.articles-card-grid .portal-empty strong {
    color: var(--ho-navy);
    font-size: 18px;
}

.articles-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 38px;
    border: 1px solid var(--ho-line);
    border-radius: var(--hop-radius, 18px);
    background: var(--ho-white);
    padding: 14px 16px 14px 20px;
    box-shadow: var(--ho-shadow-soft);
}

.articles-pagination__summary {
    margin: 0;
    color: var(--ho-muted);
    font-size: 13px;
}

.articles-pagination__summary strong {
    color: var(--ho-navy);
    font-weight: 800;
}

.articles-pagination nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.articles-pagination__button,
.articles-pagination__pages > a,
.articles-pagination__pages > span {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ho-line);
    border-radius: 11px;
    background: var(--ho-white);
    color: var(--ho-navy);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.articles-pagination__button {
    gap: 8px;
    padding: 0 14px;
}

.articles-pagination__pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.articles-pagination__pages > a:hover,
.articles-pagination__button:hover {
    transform: translateY(-1px);
    border-color: var(--ho-cyan);
    color: var(--ho-cyan);
}

.articles-pagination__pages > .is-active {
    border-color: var(--ho-cyan);
    background: var(--ho-cyan);
    color: var(--ho-white);
}

.articles-pagination__button.is-disabled {
    cursor: not-allowed;
    opacity: .42;
}

.articles-pagination__pages > .articles-pagination__ellipsis {
    min-width: 24px;
    border-color: transparent;
    background: transparent;
    color: var(--ho-muted);
}

.articles-pagination a:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--ho-cyan) 28%, transparent);
    outline-offset: 3px;
}

.articles-latest {
    padding-bottom: 64px;
}

.articles-newsletter {
    border-top: 1px solid var(--ho-line);
    background: var(--ho-white);
    padding: 64px 0;
}

.articles-newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
    align-items: center;
    gap: 54px;
    border-radius: calc(var(--hop-radius, 20px) + 6px);
    background: var(--ho-navy);
    padding: 42px 46px;
    color: var(--ho-white);
    box-shadow: var(--ho-shadow-soft);
}

.articles-newsletter-copy .portal-kicker {
    color: color-mix(in srgb, var(--ho-white) 72%, var(--ho-cyan));
}

.articles-newsletter-copy h2 {
    margin: 8px 0 0;
    color: var(--ho-white);
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -.04em;
    line-height: 1.1;
}

.articles-newsletter-copy p {
    max-width: 570px;
    margin: 12px 0 0;
    color: color-mix(in srgb, var(--ho-white) 70%, transparent);
    font-size: 13px;
    line-height: 1.7;
}

.articles-newsletter .newsletter-subscription-form__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    border-radius: 15px;
    background: var(--ho-white);
    padding: 6px;
}

.articles-newsletter .newsletter-subscription-form__controls input {
    min-width: 0;
    min-height: 50px;
    border: 0;
    background: transparent;
    padding: 0 14px;
    outline: none;
}

.articles-newsletter .newsletter-subscription-form__controls input:focus {
    border-radius: 10px;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ho-cyan) 16%, transparent);
}

.articles-newsletter .newsletter-subscription-form__controls button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 11px;
    background: var(--ho-gradient);
    padding: 0 18px;
    color: var(--ho-white);
    font-weight: 800;
}

.articles-newsletter .newsletter-subscription-form__terms {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 11px;
    color: color-mix(in srgb, var(--ho-white) 68%, transparent);
    font-size: 10px;
    line-height: 1.5;
}

.articles-newsletter .newsletter-subscription-form__terms input {
    margin-top: 2px;
}

.articles-newsletter .newsletter-subscription-form__terms a {
    color: var(--ho-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Single article */
.article-header {
    padding: 36px 0 46px;
}

.article-header-inner {
    max-width: var(--ho-container);
}

.article-header .articles-hero-copy h1 {
    font-weight: 600;
}

.article-header-category {
    width: max-content;
}

.article-sponsored-badge {
    display: inline-flex;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ho-orange) 11%, var(--ho-white));
    padding: 7px 12px;
    color: var(--ho-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.article-header-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 20px;
    color: var(--ho-muted);
    font-size: 12px;
    font-weight: 650;
}

.article-header-meta span,
.article-header-meta a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-header-meta svg {
    color: var(--ho-cyan);
}

.article-header-meta a:hover {
    color: var(--ho-cyan);
}

.article-reading-section {
    padding: 42px 0 72px;
    background: var(--ho-soft);
}

.article-cover {
    width: 100%;
    max-width: none;
    overflow: hidden;
    margin: 0 0 24px;
    border: 1px solid var(--ho-line);
    border-radius: var(--hop-radius, 20px);
    background: var(--ho-white);
    box-shadow: var(--ho-shadow-soft);
}

.article-cover img {
    display: block;
    width: 100%;
    max-height: 430px;
    aspect-ratio: 16 / 7.2;
    object-fit: cover;
    object-position: center 48%;
}

.article-cover .article-media-placeholder {
    min-height: 0;
    aspect-ratio: 16 / 7.2;
}

.article-cover figcaption {
    border-top: 1px solid var(--ho-line);
    padding: 10px 15px;
    color: var(--ho-muted);
    font-size: 11px;
}

.article-reading-layout {
    display: grid;
    grid-template-columns: minmax(0, 960px) minmax(0, 300px);
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.article-main-column {
    min-width: 0;
}

.article-body-card {
    border: 1px solid var(--ho-line);
    border-radius: var(--hop-radius, 20px);
    background: var(--ho-white);
    padding: 46px 50px;
    box-shadow: var(--ho-shadow-soft);
}

.article-reading-page .article-content {
    max-width: 820px;
    margin-inline: auto;
    color: var(--ho-text);
    font-size: 15px;
    line-height: 1.72;
}

.article-reading-page .article-content > *:first-child {
    margin-top: 0;
}

.article-reading-page .article-content > *:last-child {
    margin-bottom: 0;
}

.article-reading-page .article-content p {
    margin: 0 0 1.25em;
}

.article-reading-page .article-content > p:first-child {
    color: color-mix(in srgb, var(--ho-text) 88%, var(--ho-muted));
    font-size: 16px;
    line-height: 1.7;
}

.article-reading-page .article-content h2,
.article-reading-page .article-content h3 {
    scroll-margin-top: 120px;
    color: var(--ho-navy);
    font-weight: 800;
    font-size: 1em;
    letter-spacing: -.015em;
    line-height: 1.5;
}

.article-reading-page .article-content h2 {
    margin: 1.45em 0 .5em;
}

.article-reading-page .article-content h3 {
    margin: 1.4em 0 .5em;
}

.article-reading-page .article-content strong {
    color: var(--ho-navy);
    font-weight: 800;
}

.article-reading-page .article-content a {
    color: var(--ho-cyan);
    font-weight: 750;
    text-decoration: underline;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

.article-reading-page .article-content a:hover {
    color: var(--ho-navy);
}

.article-reading-page .article-content ul,
.article-reading-page .article-content ol {
    display: grid;
    gap: .48em;
    margin: 0 0 1.3em;
    padding-left: 1.4em;
}

.article-reading-page .article-content li::marker {
    color: var(--ho-cyan);
    font-weight: 800;
}

.article-reading-page .article-content blockquote {
    margin: 1.5em 0;
    border-left: 4px solid var(--ho-cyan);
    border-radius: 0 14px 14px 0;
    background: color-mix(in srgb, var(--ho-cyan) 7%, var(--ho-white));
    padding: 19px 24px;
    color: var(--ho-navy);
    font-size: 1em;
    font-weight: 700;
    line-height: 1.6;
}

.article-reading-page .article-content blockquote > :first-child {
    margin-top: 0;
}

.article-reading-page .article-content blockquote > :last-child {
    margin-bottom: 0;
}

.article-reading-page .article-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.6em auto;
    border-radius: 16px;
}

.article-reading-page .article-content figure {
    margin: 1.6em 0;
}

.article-reading-page .article-content figure img {
    margin-bottom: 0;
}

.article-reading-page .article-content figcaption {
    margin-top: 9px;
    color: var(--ho-muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.article-reading-page .article-content hr {
    height: 1px;
    margin: 2em 0;
    border: 0;
    background: var(--ho-line);
}

.article-reading-page .article-content table {
    width: 100%;
    display: block;
    overflow-x: auto;
    margin: 2em 0;
    border-collapse: collapse;
    font-size: 14px;
}

.article-reading-page .article-content th,
.article-reading-page .article-content td {
    min-width: 140px;
    border: 1px solid var(--ho-line);
    padding: 11px 13px;
    text-align: left;
}

.article-reading-page .article-content th {
    background: var(--ho-soft);
    color: var(--ho-navy);
}

.article-reading-page .article-content code {
    border-radius: 5px;
    background: color-mix(in srgb, var(--ho-navy) 8%, var(--ho-white));
    padding: .14em .35em;
    color: var(--ho-navy);
    font-size: .88em;
}

.article-reading-page .article-content pre {
    overflow-x: auto;
    border-radius: 14px;
    background: var(--ho-navy);
    padding: 20px;
    color: var(--ho-white);
    font-size: 13px;
    line-height: 1.65;
}

.article-reading-page .article-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.article-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.article-reading-page .ho-share {
    margin: 18px 0 0;
    border-color: var(--ho-line);
    background: var(--ho-white);
    box-shadow: var(--ho-shadow-soft);
}

.article-reading-page .ho-share a,
.article-reading-page .ho-share button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--ho-soft);
    padding: 0 13px;
    color: var(--ho-cyan);
}

.article-reading-page .ho-share a:hover,
.article-reading-page .ho-share button:hover {
    background: color-mix(in srgb, var(--ho-cyan) 8%, var(--ho-white));
    color: var(--ho-navy);
}

.article-main-column .ho-faq {
    margin-top: 20px;
}

.article-comments {
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--ho-line);
    border-radius: var(--hop-radius, 20px);
    background: var(--ho-white);
    box-shadow: var(--ho-shadow-soft);
}

.article-comments__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
}

.article-comments__heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.article-comments__icon,
.article-comments__empty > span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: color-mix(in srgb, var(--ho-cyan) 10%, var(--ho-white));
    color: var(--ho-cyan);
}

.article-comments__heading h2 {
    margin: 6px 0 0;
    color: var(--ho-navy);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.1;
}

.article-comments__heading p {
    max-width: 540px;
    margin: 8px 0 0;
    color: var(--ho-muted);
    font-size: 13px;
    line-height: 1.6;
}

.article-comments__count {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--ho-cyan) 28%, var(--ho-line));
    border-radius: 999px;
    background: color-mix(in srgb, var(--ho-cyan) 7%, var(--ho-white));
    padding: 0 11px;
    color: var(--ho-cyan);
    font-size: 13px;
    font-weight: 800;
}

.article-comments__composer {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    border-top: 1px solid var(--ho-line);
    border-bottom: 1px solid var(--ho-line);
    background: color-mix(in srgb, var(--ho-soft) 72%, var(--ho-white));
    padding: 26px 30px;
}

.article-comments__composer form {
    min-width: 0;
}

.article-comments__guest-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 17px;
}

.article-comments__guest-fields label {
    min-width: 0;
}

.article-comments__guest-fields label > span {
    display: block;
    margin-bottom: 7px;
    color: var(--ho-navy);
    font-size: 12px;
    font-weight: 800;
}

.article-comments__guest-fields .form-control {
    min-height: 46px;
    border-color: var(--ho-line);
    background: var(--ho-white);
    font-size: 13px;
}

.article-comments__guest-fields .is-invalid {
    border-color: var(--ho-orange);
}

.article-comments__guest-fields small {
    display: block;
    margin-top: 6px;
    color: var(--ho-orange);
    font-size: 11px;
    font-weight: 700;
}

.article-comments__avatar {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ho-gradient);
    color: var(--ho-white);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--ho-cyan) 18%, transparent);
}

.article-comments__label {
    display: block;
    margin-bottom: 9px;
    color: var(--ho-navy);
    font-size: 13px;
    font-weight: 800;
}

.article-comments__composer .form-textarea {
    min-height: 116px;
    border-color: var(--ho-line);
    background: var(--ho-white);
    font-size: 14px;
    line-height: 1.6;
}

.article-comments__composer .form-textarea.is-invalid {
    border-color: var(--ho-orange);
}

.article-comments__error {
    margin: 7px 0 0;
    color: var(--ho-orange);
    font-size: 12px;
    font-weight: 700;
}

.article-comments__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 12px;
}

.article-comments__form-footer > span {
    color: var(--ho-muted);
    font-size: 11px;
}

.article-comments__form-footer strong {
    color: var(--ho-navy);
}

.article-comments__form-footer .btn {
    flex: 0 0 auto;
}

.article-comments__list {
    padding: 0 30px;
}

.article-comment {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 0;
}

.article-comment + .article-comment {
    border-top: 1px solid var(--ho-line);
}

.article-comment__avatar {
    background: color-mix(in srgb, var(--ho-navy) 90%, var(--ho-cyan));
    box-shadow: none;
}

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

.article-comment__content header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 5px 14px;
}

.article-comment__content strong {
    color: var(--ho-navy);
    font-size: 13px;
    font-weight: 800;
}

.article-comment__content time {
    color: var(--ho-muted);
    font-size: 10px;
    font-weight: 650;
}

.article-comment__content p {
    margin: 8px 0 0;
    color: var(--ho-text);
    font-size: 13px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.article-comments__empty {
    display: flex;
    min-height: 210px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 32px 20px;
    text-align: center;
}

.article-comments__empty strong {
    margin-top: 13px;
    color: var(--ho-navy);
    font-size: 15px;
}

.article-comments__empty p {
    margin: 5px 0 0;
    color: var(--ho-muted);
    font-size: 12px;
}

.article-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 18px;
}

.article-toc,
.article-sidebar-card,
.article-toc-mobile {
    border: 1px solid var(--ho-line);
    border-radius: var(--hop-radius, 20px);
    background: var(--ho-white);
    padding: 23px;
    box-shadow: var(--ho-shadow-soft);
}

.article-toc h2,
.article-sidebar-card h2 {
    margin: 7px 0 0;
    color: var(--ho-navy);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.article-toc ol,
.article-toc-mobile ol {
    display: grid;
    gap: 0;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: toc;
}

.article-toc li,
.article-toc-mobile li {
    counter-increment: toc;
}

.article-toc a,
.article-toc-mobile a {
    position: relative;
    display: block;
    border-top: 1px solid var(--ho-line);
    padding: 11px 0 11px 27px;
    color: var(--ho-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.article-toc li:first-child a,
.article-toc-mobile li:first-child a {
    border-top: 0;
}

.article-toc a::before,
.article-toc-mobile a::before {
    position: absolute;
    left: 0;
    color: var(--ho-cyan);
    font-size: 10px;
    font-weight: 800;
    content: counter(toc, decimal-leading-zero);
}

.article-toc li.is-subheading a,
.article-toc-mobile li.is-subheading a {
    padding-left: 39px;
    font-size: 11px;
}

.article-toc a:hover,
.article-toc-mobile a:hover {
    color: var(--ho-cyan);
}

.article-sidebar-card p {
    margin: 11px 0 0;
    color: var(--ho-muted);
    font-size: 12px;
    line-height: 1.7;
}

.article-sidebar-card .ho-text-link {
    gap: 7px;
    margin-top: 10px;
    font-size: 12px;
}

.article-toc-mobile {
    display: none;
    max-width: 760px;
    margin: 0 auto 22px;
    padding: 0;
}

.article-toc-mobile summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 18px;
    color: var(--ho-navy);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.article-toc-mobile summary::-webkit-details-marker {
    display: none;
}

.article-toc-mobile[open] summary svg {
    transform: rotate(180deg);
}

.article-toc-mobile ol {
    margin: 0;
    border-top: 1px solid var(--ho-line);
    padding: 8px 18px 14px;
}

.article-related {
    width: 100%;
    max-width: var(--ho-container);
    margin: 68px auto 0;
    border-top: 1px solid var(--ho-line);
    padding-top: 54px;
}

.article-related .articles-list-heading > a:hover {
    color: var(--ho-navy);
}

.article-ecosystem {
    max-width: 1120px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px auto 0;
}

.article-ecosystem > a {
    min-width: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--ho-line);
    border-radius: 16px;
    background: var(--ho-white);
    padding: 16px;
    color: var(--ho-navy);
    box-shadow: var(--ho-shadow-soft);
    transition: border-color .18s ease, transform .18s ease;
}

.article-ecosystem > a:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--ho-cyan) 42%, var(--ho-line));
}

.article-ecosystem > a > svg:first-child {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--ho-cyan) 8%, var(--ho-white));
    padding: 10px;
    color: var(--ho-cyan);
}

.article-ecosystem span,
.article-ecosystem small,
.article-ecosystem strong {
    min-width: 0;
    display: block;
}

.article-ecosystem small {
    color: var(--ho-cyan);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.article-ecosystem strong {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .articles-filter-form {
        grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(160px, 190px));
    }

    .articles-filter-form button {
        grid-column: 1 / -1;
    }

    .articles-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-reading-layout {
        grid-template-columns: minmax(0, 1fr) minmax(230px, 270px);
        gap: 30px;
    }

    .articles-newsletter-card {
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .articles-featured .ho-article-card {
        grid-template-columns: minmax(0, 54%) minmax(300px, 46%);
    }

    .articles-featured .ho-module-body {
        padding: 30px;
    }

    .articles-featured .ho-article-card h2 {
        font-size: 30px;
    }

    .article-reading-layout {
        grid-template-columns: minmax(0, 760px);
    }

    .article-sidebar {
        position: static;
        max-width: 760px;
    }

    .article-sidebar .article-toc {
        display: none;
    }

    .article-toc-mobile {
        display: block;
    }

    .articles-newsletter-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .articles-index-hero,
    .article-header {
        padding: 32px 0 42px;
    }

    .articles-hero-copy h1 {
        font-size: 32px;
    }

    .articles-hero-copy p {
        margin-top: 14px;
        font-size: 15px;
    }

    .articles-index-content {
        padding-top: 38px;
    }

    .articles-featured,
    .articles-discovery,
    .articles-latest {
        margin-top: 42px;
    }

    .articles-featured {
        margin-top: 0;
    }

    .articles-featured .ho-article-card {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .articles-featured .ho-module-media img,
    .articles-featured .article-media-placeholder {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .articles-featured .ho-module-body {
        padding: 25px;
    }

    .articles-featured .ho-article-card h2 {
        font-size: 29px;
    }

    .articles-discovery {
        padding: 22px;
    }

    .articles-discovery-heading,
    .articles-list-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .articles-filter-form {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .articles-filter-form button {
        grid-column: auto;
        width: 100%;
    }

    .articles-category-pills {
        margin-right: -22px;
        padding-right: 22px;
    }

    .articles-card-grid {
        grid-template-columns: 1fr;
    }

    .articles-card-grid .ho-article-card h3 {
        min-height: 0;
        font-size: 21px;
        -webkit-line-clamp: initial;
    }

    .articles-card-grid .ho-article-card .ho-module-body > p {
        min-height: 0;
    }

    .articles-pagination {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
        padding: 15px;
    }

    .articles-pagination__summary {
        text-align: center;
    }

    .articles-pagination nav {
        justify-content: space-between;
    }

    .articles-latest {
        padding-bottom: 46px;
    }

    .articles-newsletter {
        padding: 46px 0;
    }

    .articles-newsletter-card {
        border-radius: var(--hop-radius, 20px);
        padding: 28px 22px;
    }

    .articles-newsletter .newsletter-subscription-form__controls {
        grid-template-columns: 1fr;
        background: transparent;
        padding: 0;
    }

    .articles-newsletter .newsletter-subscription-form__controls input {
        border-radius: 11px;
        background: var(--ho-white);
        padding-inline: 15px;
    }

    .article-header-meta {
        gap: 10px 16px;
        margin-top: 20px;
    }

    .article-reading-section {
        padding: 28px 0 52px;
    }

    .article-comments__header {
        gap: 14px;
        padding: 24px 20px;
    }

    .article-comments__heading {
        gap: 12px;
    }

    .article-comments__icon {
        width: 42px;
        height: 42px;
    }

    .article-comments__heading h2 {
        font-size: 24px;
    }

    .article-comments__composer {
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }

    .article-comments__composer > .article-comments__avatar {
        display: none;
    }

    .article-comments__guest-fields {
        grid-template-columns: 1fr;
    }

    .article-comments__form-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .article-comments__form-footer .btn {
        width: 100%;
    }

    .article-comments__list {
        padding: 0 20px;
    }

    .article-comment {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 11px;
        padding: 21px 0;
    }

    .article-comment__avatar {
        width: 38px;
        height: 38px;
    }

    .article-cover {
        margin-bottom: 20px;
        border-radius: 18px;
    }

    .article-cover img,
    .article-cover .article-media-placeholder {
        aspect-ratio: 16 / 10;
    }

    .article-body-card {
        border-radius: 18px;
        padding: 29px 24px;
    }

    .article-reading-page .article-content {
        font-size: 15px;
        line-height: 1.72;
    }

    .article-reading-page .article-content > p:first-child {
        font-size: 16px;
    }

    .article-reading-page .ho-share {
        align-items: flex-start;
        padding: 14px;
    }

    .article-reading-page .ho-share > span {
        width: 100%;
    }

    .article-related {
        margin-top: 50px;
        padding-top: 42px;
    }

    .article-ecosystem {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .articles-editorial-page .portal-container,
    .article-reading-page .portal-container {
        width: min(calc(100% - 24px), var(--ho-container));
    }

    .articles-index-hero,
    .article-header {
        padding-top: 26px;
    }

    .articles-hero-copy h1 {
        font-size: 32px;
    }

    .articles-pagination__button {
        min-width: 42px;
        padding-inline: 11px;
    }

    .articles-pagination__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .articles-discovery {
        padding: 19px;
    }

    .articles-category-pills {
        margin-right: -19px;
        padding-right: 19px;
    }

    .ho-article-card .ho-module-body,
    .articles-featured .ho-module-body {
        padding: 20px;
    }

    .articles-featured .ho-article-card h2 {
        font-size: 26px;
    }

    .ho-article-card .ho-module-body > footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .article-body-card {
        padding: 25px 19px;
    }

    .article-reading-page .ho-share a,
    .article-reading-page .ho-share button {
        min-height: 42px;
        padding-inline: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ho-article-card,
    .ho-article-card .ho-module-media img,
    .article-read-link svg,
    .article-ecosystem > a {
        transition: none;
    }
}
