/* Editorial homepage refresh */

:root {
    color-scheme: light;
    --hb-bg: #f5f5f1;
    --hb-bg-soft: #fbfbf8;
    --hb-bg-muted: #f1f3ef;
    --hb-bg-elevated: #ffffff;
    --hb-bg-subtle: #eceee9;
    --hb-bg-strong: #121a1d;
    --hb-text: #173237;
    --hb-text-strong: #16353a;
    --hb-text-muted: #6b7d80;
    --hb-text-soft: #7b8b8f;
    --hb-accent: #176d66;
    --hb-accent-strong: #0f6964;
    --hb-accent-soft: rgba(23, 109, 102, 0.14);
    --hb-border: #dde2db;
    --hb-border-strong: #d6ddd6;
    --hb-input-bg: #ffffff;
    --hb-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

html[data-theme="dark"] {
    color-scheme: dark;
    --hb-bg: #10191c;
    --hb-bg-soft: #172427;
    --hb-bg-muted: #1f2d31;
    --hb-bg-elevated: #1d2c30;
    --hb-bg-subtle: #132024;
    --hb-bg-strong: #0c1417;
    --hb-text: #e6f1ef;
    --hb-text-strong: #f3f8f6;
    --hb-text-muted: #a6bbb8;
    --hb-text-soft: #88a09c;
    --hb-accent: #66c8b7;
    --hb-accent-strong: #42b19f;
    --hb-accent-soft: rgba(102, 200, 183, 0.18);
    --hb-border: #2d4044;
    --hb-border-strong: #385055;
    --hb-input-bg: #213236;
    --hb-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

html.theme-preload *,
html.theme-preload *::before,
html.theme-preload *::after {
    transition: none !important;
}

body {
    background: #f5f5f1;
    color: #173237;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.hb-site-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 241, 0.58);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 10000;
}

.hb-site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hb-site-loader__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 64px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 18px 48px rgba(12, 28, 32, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hb-site-loader .loader {
    width: 120px;
    height: 20px;
    background: linear-gradient(var(--hb-accent-strong) 0 0) 0 / 0% no-repeat #d9dfd9;
    animation: hb-loader-bar 2s infinite linear;
}

html[data-theme="dark"] .hb-site-loader {
    background: rgba(16, 25, 28, 0.58);
}

html[data-theme="dark"] .hb-site-loader .loader {
    background: linear-gradient(var(--hb-accent) 0 0) 0 / 0% no-repeat #2b3a3e;
}

html[data-theme="dark"] .hb-site-loader__inner {
    background: rgba(22, 34, 37, 0.4);
    border-color: rgba(121, 154, 149, 0.18);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
}

@keyframes hb-loader-bar {
    100% {
        background-size: 100%;
    }
}

.outer,
.main-block {
    background: #f5f5f1;
}

.hb-shell {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.hb-topbar {
    background: #fbfbf8;
    border-bottom: 1px solid #dfe5df;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    z-index: 20;
    overflow: visible;
}

.hb-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 60px;
    overflow: visible;
}

.hb-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0f2f34;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hb-brand:hover {
    transform: translateY(-2px);
    color: #176d66;
}

.hb-brand__logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.hb-brand__mark {
    display: none;
}

.hb-brand__text {
    display: none;
}

.hb-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--hb-border);
    background: var(--hb-bg-soft);
    cursor: pointer;
    flex-shrink: 0;
}

.hb-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--hb-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.hb-mobile-nav-open .hb-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.hb-mobile-nav-open .hb-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.hb-mobile-nav-open .hb-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hb-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.hb-mobile-nav-tools {
    display: none;
}

.hb-nav a {
    position: relative;
    padding: 18px 0 16px;
    color: #56696d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.hb-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 4px;
    height: 2px;
    background: #176d66;
    transition: all 0.3s ease;
}

.hb-nav a.is-active,
.hb-nav a:hover {
    color: #16353a;
}

.hb-nav a.is-active::after,
.hb-nav a:hover::after {
    left: 0;
    right: 0;
}

.hb-topbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hb-translate {
    display: flex;
    align-items: center;
    min-height: 36px;
    position: relative;
    overflow: visible;
    padding-top: 7px;
}

.hb-translate .gtranslate_wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hb-translate .gt_switcher-popup,
.hb-translate .gt_switcher-notranslate {
    margin: 0;
    transform: scale(0.86);
    transform-origin: center right;
}

.hb-translate img {
    max-width: none;
}

.hb-translate .gt_switcher,
.hb-translate .gt_float_switcher {
    font-size: 12px;
}

.hb-translate .gt_options a,
.hb-translate .gt_selected a {
    padding-top: 4px;
    padding-bottom: 4px;
}

.hb-translate .gt_float_switcher img,
.hb-translate .gt_switcher img {
    width: 14px;
    height: 14px;
}

.hb-translate .gt_float_switcher,
.hb-translate .gt_switcher {
    position: relative !important;
    overflow: visible !important;
}

.hb-translate .gt_float_switcher .gt_options,
.hb-translate .gt_switcher .gt_options,
.hb-translate .gt_float_switcher .gt_options.gt-open,
.hb-translate .gt_switcher .gt_options.gt-open {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    width: 170px !important;
    max-height: min(320px, 70vh) !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    border: 1px solid var(--hb-border) !important;
    border-radius: 0 !important;
    background: var(--hb-bg-elevated) !important;
    box-shadow: 0 18px 42px rgba(8, 21, 25, 0.16) !important;
}

.hb-translate .gt_float_switcher .gt_options::before,
.hb-translate .gt_switcher .gt_options::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    width: 14px;
    height: 14px;
    background: var(--hb-bg-elevated);
    border-left: 1px solid var(--hb-border);
    border-top: 1px solid var(--hb-border);
    transform: rotate(45deg);
}

.hb-translate .gt_float_switcher .gt_options a,
.hb-translate .gt_switcher .gt_options a,
.hb-translate .gt_float_switcher .gt_options span,
.hb-translate .gt_switcher .gt_options span {
    color: var(--hb-text) !important;
    background: transparent !important;
}

.hb-translate .gt_float_switcher .gt_options a:hover,
.hb-translate .gt_switcher .gt_options a:hover,
.hb-translate .gt_float_switcher .gt_options .gt-current-lang,
.hb-translate .gt_switcher .gt_options .gt-current-lang {
    background: var(--hb-accent-soft) !important;
    color: var(--hb-text-strong) !important;
}

html[data-theme="dark"] .hb-translate .gt_float_switcher .gt_options,
html[data-theme="dark"] .hb-translate .gt_switcher .gt_options,
html[data-theme="dark"] .hb-translate .gt_float_switcher .gt_options.gt-open,
html[data-theme="dark"] .hb-translate .gt_switcher .gt_options.gt-open {
    background: #1b282c !important;
    border-color: #33484c !important;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42) !important;
}

html[data-theme="dark"] .hb-translate .gt_float_switcher .gt_options::before,
html[data-theme="dark"] .hb-translate .gt_switcher .gt_options::before {
    background: #1b282c !important;
    border-left-color: #33484c !important;
    border-top-color: #33484c !important;
}

html[data-theme="dark"] .hb-translate .gt_float_switcher .gt_options a,
html[data-theme="dark"] .hb-translate .gt_switcher .gt_options a,
html[data-theme="dark"] .hb-translate .gt_float_switcher .gt_options span,
html[data-theme="dark"] .hb-translate .gt_switcher .gt_options span {
    color: #dce9e6 !important;
}

html[data-theme="dark"] .hb-translate .gt_float_switcher .gt_options a:hover,
html[data-theme="dark"] .hb-translate .gt_switcher .gt_options a:hover,
html[data-theme="dark"] .hb-translate .gt_float_switcher .gt_options .gt-current-lang,
html[data-theme="dark"] .hb-translate .gt_switcher .gt_options .gt-current-lang {
    background: rgba(102, 200, 183, 0.2) !important;
    color: #ffffff !important;
}

.hb-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
    padding: 6px 14px;
    background: #f1f3ef;
    border: 1px solid #d9dfd9;
    border-radius: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.hb-search:hover,
.hb-search:focus-within {
    background: #fff;
    border-color: #176d66;
    box-shadow: 0 2px 6px rgba(23, 109, 102, 0.1);
}

.hb-search i,
.hb-icon-button i {
    color: #7b8c90;
    font-size: 14px;
    transition: color 0.3s ease;
}

.hb-search:hover i,
.hb-search:focus-within i {
    color: #176d66;
}

.hb-search input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    color: #173237;
    font-size: 13px;
    transition: all 0.3s ease;
}

.hb-search input::placeholder {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.hb-search input:focus::placeholder {
    color: #176d66;
}

.hb-icon-button {
    width: 40px;
    height: 40px;
    border: 1px solid #d9dfd9;
    border-radius: 50%;
    background: #f8faf7;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-icon-button:hover {
    transform: scale(1.1) translateY(-2px);
    border-color: #176d66;
    background: #f0f7f5;
    box-shadow: 0 2px 6px rgba(23, 109, 102, 0.15);
}

.hb-icon-button:hover i {
    color: #176d66;
}

.hb-auth-menu {
    position: relative;
}

.hb-auth-menu summary {
    list-style: none;
}

.hb-auth-menu summary::-webkit-details-marker {
    display: none;
}

.hb-auth-menu__trigger {
    border: 1px solid #d9dfd9;
}

.hb-auth-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    padding: 8px 0;
    background: var(--hb-bg-elevated);
    border: 1px solid var(--hb-border);
    box-shadow: 0 18px 42px rgba(8, 21, 25, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.hb-auth-menu[open] .hb-auth-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hb-auth-menu__panel a {
    display: block;
    padding: 10px 14px;
    color: var(--hb-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.hb-auth-menu__panel a:hover {
    background: var(--hb-accent-soft);
    color: var(--hb-accent-strong);
}

.hb-homepage {
    padding: 28px 0 52px;
}

.hb-auth-page {
    padding: 36px 0 56px;
}

.hb-auth-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
    gap: 30px;
    align-items: start;
}

.hb-auth-story,
.hb-auth-card {
    background: var(--hb-bg-soft);
    border: 1px solid var(--hb-border);
}

.hb-auth-story {
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.hb-auth-story::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--hb-accent-soft) 0%, rgba(23, 109, 102, 0) 72%);
    pointer-events: none;
}

.hb-auth-card__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--hb-border);
    color: var(--hb-text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--hb-bg-elevated);
}

.hb-auth-story h1 {
    margin: 0 0 14px;
    color: var(--hb-text-strong);
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hb-auth-story > p {
    color: var(--hb-text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.hb-auth-story__extra {
    margin-top: -6px;
}

.hb-auth-greeting {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: var(--hb-accent-soft);
    color: var(--hb-accent-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hb-auth-story__feature {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-bottom: 14px;
    padding: 18px;
    background: linear-gradient(135deg, var(--hb-bg-elevated), var(--hb-bg-muted));
    border: 1px solid var(--hb-border);
}

.hb-auth-story__feature-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: var(--hb-bg-strong);
    color: #f3f8f6;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.hb-auth-story__feature h3 {
    margin: 0 0 6px;
    color: var(--hb-text-strong);
    font-size: 22px;
    line-height: 1.15;
}

.hb-auth-story__feature p {
    margin: 0;
    color: var(--hb-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.hb-auth-story__mini {
    display: grid;
    gap: 12px;
}

.hb-auth-story__mini-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    background: var(--hb-bg-elevated);
    border: 1px solid var(--hb-border);
}

.hb-auth-story__mini-label {
    color: var(--hb-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hb-auth-story__mini-item strong {
    color: var(--hb-text-strong);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-align: right;
}

.hb-auth-story__note {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--hb-border);
    color: var(--hb-text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.hb-auth-story__panel {
    margin-bottom: 22px;
    padding: 18px 20px;
    background: var(--hb-bg-muted);
    border: 1px solid var(--hb-border);
}

.hb-auth-card {
    padding: 30px;
    box-shadow: var(--hb-shadow);
}

.hb-auth-card__head {
    margin-bottom: 22px;
    display: grid;
    gap: 10px;
}

.hb-auth-card__head h2 {
    margin: 0;
    color: var(--hb-text-strong);
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hb-auth-card__head p {
    margin: 0;
    color: var(--hb-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.hb-auth-form {
    display: grid;
    gap: 16px;
}

.hb-auth-form--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
}

.hb-auth-form__group {
    display: grid;
    gap: 8px;
}

.hb-auth-form__group--full,
.hb-auth-actions--full,
.hb-auth-foot--full {
    grid-column: 1 / -1;
}

.hb-auth-form label {
    margin: 0;
    color: var(--hb-text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-auth-form .form-control,
.hb-auth-form select,
.hb-auth-form input[type="text"],
.hb-auth-form input[type="email"],
.hb-auth-form input[type="password"] {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    background: var(--hb-input-bg);
    border: 1px solid var(--hb-border);
    border-radius: 0;
    color: var(--hb-text);
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hb-auth-form .form-control:focus,
.hb-auth-form select:focus,
.hb-auth-form input:focus {
    border-color: var(--hb-accent);
    box-shadow: 0 0 0 4px var(--hb-accent-soft) !important;
}

.hb-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.hb-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hb-text-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.hb-auth-check input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.hb-auth-check--terms {
    align-items: flex-start;
    line-height: 1.6;
}

.hb-auth-check--terms span {
    color: var(--hb-text-muted);
    font-size: 13px;
    font-weight: 500;
}

.hb-auth-link {
    color: var(--hb-accent);
    font-weight: 700;
    text-decoration: none;
}

.hb-auth-link:hover {
    color: var(--hb-accent-strong);
}

.hb-auth-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hb-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hb-auth-btn:hover {
    transform: translateY(-1px);
}

.hb-auth-btn--primary {
    background: var(--hb-accent-strong);
    border-color: var(--hb-accent-strong);
    color: #f7fbfa;
}

.hb-auth-btn--secondary {
    background: transparent;
    border-color: var(--hb-border);
    color: var(--hb-text);
}

.hb-auth-btn--social {
    flex: 1 1 220px;
}

.hb-auth-btn--google {
    background: #b53d32;
    border-color: #b53d32;
    color: #fff;
}

.hb-auth-btn--facebook {
    background: #285a98;
    border-color: #285a98;
    color: #fff;
}

.hb-auth-foot {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--hb-text-muted);
    font-size: 13px;
}

.hb-auth-social {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--hb-border);
}

.hb-auth-social__label {
    margin-bottom: 12px;
    color: var(--hb-text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-auth-social__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hb-auth-note {
    padding: 12px 14px;
    background: var(--hb-bg-muted);
    border-left: 3px solid var(--hb-accent);
    color: var(--hb-text-muted);
    font-size: 13px;
}

.hb-auth-card .alert {
    margin-bottom: 16px;
    border-radius: 0;
}

.hb-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(220px, 0.92fr) minmax(220px, 0.88fr);
    gap: 20px;
}

.hb-hero__feature {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hb-hero__eyebrow {
    display: flex;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-hero__eyebrow span:first-child {
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.hb-hero__content h1 {
    max-width: 520px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hb-hero__author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.hb-hero__author img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.hb-hero__teasers,
.hb-trending {
    background: #f7f8f4;
    border: 1px solid #dde2db;
}

.hb-teaser-card {
    padding: 22px 20px;
    border-bottom: 1px solid #dde2db;
}

.hb-teaser-card:last-child {
    border-bottom: 0;
}

.hb-teaser-card h3,
.hb-editorial-card h3,
.hb-pick-card h3,
.hb-expert-card h3,
.hb-research-card h3,
.hb-media-card h3,
.hb-audio-row h3 {
    margin: 0;
    color: #173237;
}

.hb-teaser-card h3 {
    font-size: 20px;
    line-height: 1.15;
}

.hb-teaser-card p {
    margin: 12px 0 16px;
    color: #6a7a7e;
    font-size: 13px;
    line-height: 1.6;
}

.hb-teaser-card a {
    color: #176d66;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.hb-trending {
    padding: 18px 18px 6px;
    background: #efefea;
}

.hb-trending__tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d6dbd5;
    color: #819196;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hb-trending__tabs .is-active {
    color: #173237;
}

.hb-trending__item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #d6dbd5;
}

.hb-trending__item:last-child {
    border-bottom: 0;
}

.hb-trending__rank {
    color: #9aaaa7;
    font-size: 25px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.hb-trending__item p {
    margin: 0;
    color: #2a4247;
    font-size: 14px;
    line-height: 1.45;
}

.hb-section {
    margin-top: 34px;
}

.hb-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hb-section__head h2,
.hb-audio-panel__head h2 {
    margin: 0;
    color: #173237;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hb-stories {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.hb-stories-carousel {
    padding: 0 42px;
    overflow: visible;
}

.hb-stories-carousel .owl-stage-outer {
    overflow: hidden;
}

.hb-stories-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.hb-story {
    width: 92px;
    min-width: 92px;
    text-align: center;
}

.hb-stories-carousel .hb-story img {
    width: 74px;
    height: 74px;
    max-width: 74px;
    border-radius: 50%;
    border: 4px solid #d7dfd9;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: #e9efea;
}

.hb-stories-carousel.owl-carousel .owl-item .hb-story img {
    width: 74px !important;
    height: 74px !important;
    max-width: 74px !important;
    min-width: 74px !important;
    border-radius: 50% !important;
}

.hb-story span {
    display: block;
    color: #6e7e82;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.hb-stories-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

.hb-stories-carousel .owl-nav button.owl-prev,
.hb-stories-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #d7ddd6 !important;
    border-radius: 50% !important;
    background: #fbfbf8 !important;
    color: #64777a !important;
    font-size: 18px !important;
    line-height: 1 !important;
    pointer-events: auto;
    transition: all 0.2s ease;
}

.hb-stories-carousel .owl-nav button.owl-prev {
    left: -2px;
}

.hb-stories-carousel .owl-nav button.owl-next {
    right: -2px;
}

.hb-stories-carousel .owl-nav button.owl-prev:hover,
.hb-stories-carousel .owl-nav button.owl-next:hover {
    border-color: #176d66 !important;
    color: #176d66 !important;
}

.hb-stories-carousel .owl-nav button.disabled {
    opacity: 0.4;
    cursor: default;
}

.hb-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) 290px;
    gap: 24px;
}

.hb-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hb-editorial-card {
    background: #fbfbf8;
}

.hb-editorial-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.hb-editorial-card__body {
    padding: 18px 0 0;
}

.hb-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #7a8c8f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hb-editorial-card h3 {
    font-size: 29px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hb-editorial-card p {
    margin: 12px 0 16px;
    color: #6b7d80;
    font-size: 14px;
    line-height: 1.65;
}

.hb-meta {
    color: #8a999d;
    font-size: 12px;
}

.hb-sidebar-block {
    margin-bottom: 22px;
}

.hb-sidebar-block__title {
    margin-bottom: 14px;
    color: #7c8c90;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hb-pick-card,
.hb-expert-card {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    align-items: center;
    padding: 0 0 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #dce2dc;
}

.hb-pick-card img,
.hb-expert-card img {
    width: 84px;
    height: 68px;
    object-fit: cover;
}

.hb-pick-card h3 {
    font-size: 15px;
    line-height: 1.3;
}

.hb-study-highlight {
    padding: 22px 20px;
    margin-bottom: 24px;
    background: #0f6964;
    color: #ffffff;
}

.hb-study-highlight__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-study-highlight p {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
}

.hb-study-highlight__source {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.hb-expert-card img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.hb-expert-card {
    grid-template-columns: 52px 1fr;
}

.hb-expert-card h3 {
    font-size: 15px;
    line-height: 1.25;
}

.hb-expert-card p {
    margin: 4px 0 0;
    color: #7a8a8e;
    font-size: 12px;
}

.hb-section__head--spaced {
    margin-top: 40px;
}

.hb-research-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 22px;
    background: #eceee9;
}

.hb-research-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e0e5de;
}

.hb-research-card__chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 70px;
    margin-bottom: 18px;
    padding: 12px 10px;
    background: #f4f7f2;
}

.hb-research-card__chart span {
    width: 18px;
    background: linear-gradient(180deg, #96cfc2 0%, #3f9a8b 100%);
}

.hb-research-card__chart span:nth-child(1) { height: 34px; }
.hb-research-card__chart span:nth-child(2) { height: 50px; }
.hb-research-card__chart span:nth-child(3) { height: 42px; }

.hb-research-card h3 {
    font-size: 18px;
    line-height: 1.35;
}

.hb-research-card p {
    margin: 10px 0 18px;
    color: #7a8a8f;
    font-size: 12px;
    line-height: 1.5;
}

.hb-research-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #176d66;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hb-section__head--with-controls {
    align-items: center;
}

.hb-slider-controls {
    display: inline-flex;
    gap: 8px;
}

.hb-slider-controls span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7ddd6;
    border-radius: 50%;
    color: #7a8a8f;
}

.hb-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hb-media-card {
    position: relative;
    min-height: 245px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hb-kicker--light,
.hb-media-card h3 {
    color: #ffffff;
}

.hb-media-card h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hb-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.38);
    transform: translate(-50%, -50%);
}

.hb-audio-panel {
    margin-top: 22px;
    padding: 18px 20px;
    background: #121a1d;
}

.hb-audio-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.hb-audio-panel__head h2 {
    color: #ffffff;
    font-size: 19px;
}

.hb-audio-panel__head a {
    color: #86c7ba;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.hb-audio-row {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hb-audio-row:first-child {
    border-top: 0;
}

.hb-audio-row__play {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0f6964;
    color: #ffffff;
    font-size: 11px;
}

.hb-audio-row h3 {
    color: #eef5f2;
    font-size: 14px;
    line-height: 1.45;
}

.hb-audio-row__duration {
    color: #9eb2b0;
    font-size: 12px;
}

.hb-audio-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.hb-audio-wave span {
    width: 3px;
    height: 16px;
    background: #2a716d;
}

.hb-audio-wave span:nth-child(2) { height: 10px; }
.hb-audio-wave span:nth-child(3) { height: 18px; }
.hb-audio-wave span:nth-child(4) { height: 12px; }
.hb-audio-wave span:nth-child(5) { height: 16px; }
.hb-audio-wave span:nth-child(6) { height: 8px; }

.hb-footer {
    padding: 32px 0 18px;
    background: #eceee9;
    border-top: 1px solid #dfe5df;
    transition: all 0.3s ease;
}

.hb-footer__accordion {
    display: grid;
    gap: 0;
    border-top: 1px solid #d5ddd6;
}

.hb-accordion {
    border-bottom: 1px solid #d5ddd6;
}

.hb-accordion summary {
    position: relative;
    padding: 18px 28px 18px 0;
    color: #596d70;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    list-style: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hb-accordion summary:hover {
    color: #176d66;
    padding-left: 4px;
}

.hb-accordion summary::-webkit-details-marker {
    display: none;
}

.hb-accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #7f9093;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hb-accordion[open] summary::after {
    content: "-";
    transform: translateY(-50%) rotate(180deg);
    color: #176d66;
}

.hb-accordion__body {
    padding: 0 0 18px;
    color: #7b8b8f;
    font-size: 14px;
    line-height: 1.7;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hb-footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
}

.hb-footer__bar p,
.hb-footer__social span {
    margin: 0;
    color: #7b8b8f;
    font-size: 12px;
}

.hb-footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hb-footer__social a {
    color: #2f4448;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hb-footer__social a:hover {
    transform: scale(1.15) translateY(-3px);
    background: rgba(23, 109, 102, 0.15);
    color: #176d66;
    box-shadow: 0 3px 8px rgba(23, 109, 102, 0.2);
}

.hb-section-page {
    padding: 28px 0 52px;
}

.hb-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 26px;
}

.hb-page-hero--wellness,
.hb-page-hero--conditions,
.hb-page-hero--resources,
.hb-page-hero--newsletter {
    grid-template-columns: 1fr;
}

.hb-page-hero__copy,
.hb-page-hero__feature,
.hb-search-panel,
.hb-topic-row {
    background: #fbfbf8;
    border: 1px solid #dde2db;
}

.hb-page-hero__copy {
    padding: 30px;
}

.hb-page-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #176d66;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hb-page-hero__copy h1 {
    margin: 0 0 12px;
    color: #173237;
    font-size: 44px;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hb-page-hero__copy p,
.hb-panel p,
.hb-feed-card p,
.hb-panel__text {
    color: #6b7d80;
    font-size: 14px;
    line-height: 1.7;
}

.hb-page-hero__feature {
    min-height: 280px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hb-page-hero__feature--compact {
    min-height: 250px;
}

.hb-page-hero__feature h2 {
    margin: 10px 0 8px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hb-page-hero__feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.hb-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) 320px;
    gap: 24px;
}

.hb-page-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.hb-page-section-head h2 {
    margin: 0;
    color: #173237;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.hb-page-section-head span {
    color: #839396;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-feed-grid,
.hb-story-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hb-feed-card,
.hb-panel {
    background: #fbfbf8;
    border: 1px solid #dde2db;
}

.hb-feed-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.hb-feed-card__body,
.hb-panel {
    padding: 20px;
}

.hb-feed-card h3,
.hb-panel h3 {
    margin: 0 0 10px;
    color: #173237;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.hb-panel--soft {
    background: #f8faf7;
}

.hb-panel--dark {
    background: #102a2f;
    border-color: #102a2f;
}

.hb-panel--dark h3,
.hb-panel--dark p {
    color: #f3f8f6;
}

.hb-panel__title {
    margin-bottom: 14px;
    color: #7c8c90;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hb-list {
    margin: 0;
    padding-left: 18px;
}

.hb-list li {
    margin-bottom: 12px;
    color: #32484c;
    line-height: 1.6;
}

.hb-kpi-grid {
    display: grid;
    gap: 12px;
}

.hb-kpi-grid article {
    padding: 14px;
    background: #f4f7f3;
    border: 1px solid #e0e5de;
}

.hb-kpi-grid strong {
    display: block;
    margin-bottom: 4px;
    color: #173237;
    font-size: 28px;
    line-height: 1;
}

.hb-kpi-grid span {
    color: #6f8184;
    font-size: 13px;
    line-height: 1.5;
}

.hb-load-more {
    margin-top: 20px;
    padding: 14px 18px;
    background: #f7faf7;
    border: 1px dashed #ccd7d0;
    color: #176d66;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-page-tools {
    margin-top: 28px;
}

.hb-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hb-tool-card {
    display: block;
    padding: 22px;
    background: #fbfbf8;
    border: 1px solid #dde2db;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.hb-tool-card:hover {
    border-color: #176d66;
    transform: translateY(-2px);
}

.hb-tool-card__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #176d66;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hb-tool-card h3 {
    margin: 0 0 10px;
    color: #173237;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hb-tool-card p {
    margin: 0 0 18px;
    color: #6b7d80;
    font-size: 14px;
    line-height: 1.7;
}

.hb-tool-card__cta {
    color: #176d66;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-tool-form {
    display: grid;
    gap: 16px;
}

.hb-tool-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hb-tool-form label span {
    display: block;
    margin-bottom: 8px;
    color: #5f7276;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hb-tool-form input,
.hb-tool-form select {
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border: 1px solid #d6ddd6;
    background: #ffffff;
    color: #173237;
}

.hb-tool-form button {
    width: fit-content;
    min-width: 180px;
    height: 48px;
    padding: 0 22px;
    border: 0;
    background: #176d66;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-tool-result {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    margin-top: 18px;
    padding: 18px;
    background: #f5faf8;
    border: 1px solid #d7e5df;
}

.hb-tool-result__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #deebe5;
}

.hb-tool-result__stat strong {
    color: #173237;
    font-size: 36px;
    line-height: 1;
}

.hb-tool-result__stat span {
    margin-top: 6px;
    color: #6b7d80;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hb-tool-result__detail h3 {
    margin: 0 0 10px;
    color: #173237;
    font-size: 24px;
}

.hb-tool-table-wrap {
    overflow-x: auto;
}

.hb-tool-table {
    width: 100%;
    border-collapse: collapse;
}

.hb-tool-table th,
.hb-tool-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #dfe5df;
    text-align: left;
    color: #32484c;
    font-size: 14px;
}

.hb-tool-table th {
    color: #607377;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-steps-list {
    margin: 0;
    padding-left: 18px;
}

.hb-steps-list li {
    margin-bottom: 14px;
    color: #32484c;
    line-height: 1.7;
}

.hb-time-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.hb-time-card {
    padding: 18px;
    background: #f8faf7;
    border: 1px solid #dde2db;
    text-align: center;
}

.hb-time-card strong {
    display: block;
    color: #173237;
    font-size: 28px;
    line-height: 1;
}

.hb-time-card span {
    display: block;
    margin-top: 8px;
    color: #6b7d80;
    font-size: 12px;
}

.hb-topic-row,
.hb-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 20px;
}

.hb-topic-row span,
.hb-tag-cloud span {
    padding: 10px 14px;
    background: #f4f7f3;
    border: 1px solid #dbe3dc;
    color: #355055;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hb-search-panel {
    padding: 20px;
}

.hb-search-panel label {
    display: block;
    margin-bottom: 10px;
    color: #5f7276;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hb-search-panel input,
.hb-newsletter-form input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #d6ddd6;
    background: #ffffff;
    color: #173237;
}

.hb-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.hb-newsletter-form button {
    min-width: 180px;
    padding: 0 24px;
    border: 0;
    background: #176d66;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .hb-topbar__inner,
    .hb-content-grid,
    .hb-hero__grid,
    .hb-page-grid,
    .hb-page-hero {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hb-topbar__inner {
        gap: 18px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .hb-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hb-topbar__actions {
        width: 100%;
    }

    .hb-search {
        min-width: 0;
        width: 100%;
    }
}

/* Banner visibility defaults: keep the original featured card on desktop, hide mobile duplicates */
.banner .first-img--desktop-featured {
    display: block;
}

.banner .other-img-featured-mobile,
.banner .second-img--mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .hb-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hb-homepage {
        padding-top: 18px;
    }

    .hb-hero__feature {
        min-height: 340px;
        padding: 18px;
    }

    .hb-hero__content h1 {
        font-size: 34px;
    }

    .hb-editorial-grid,
    .hb-research-strip,
    .hb-media-grid,
    .hb-feed-grid,
    .hb-story-panels,
    .hb-tools-grid,
    .hb-time-grid {
        grid-template-columns: 1fr;
    }

    .hb-stories-carousel {
        padding: 0 26px;
    }

    .hb-footer__bar,
    .hb-audio-panel__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hb-page-hero__copy h1 {
        font-size: 34px;
    }

    .hb-newsletter-form {
        grid-template-columns: 1fr;
    }

    .hb-tool-form__grid,
    .hb-tool-result {
        grid-template-columns: 1fr;
    }
}

/* Theme system */

body,
.outer,
.main-block {
    background: var(--hb-bg);
    color: var(--hb-text);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.hb-topbar,
.hb-footer,
.hb-hero__teasers,
.hb-trending,
.hb-editorial-card,
.hb-page-hero__copy,
.hb-page-hero__feature,
.hb-search-panel,
.hb-topic-row,
.hb-feed-card,
.hb-panel,
.hb-tool-card,
.hb-research-card,
.hb-time-card,
.hb-tool-result__stat,
.hb-search,
.hb-icon-button {
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.hb-topbar {
    background: var(--hb-bg-soft);
    border-bottom-color: var(--hb-border);
    box-shadow: var(--hb-shadow);
}

.hb-brand,
.hb-nav a.is-active,
.hb-nav a:hover,
.hb-teaser-card h3,
.hb-editorial-card h3,
.hb-pick-card h3,
.hb-expert-card h3,
.hb-research-card h3,
.hb-media-card h3,
.hb-audio-row h3,
.hb-section__head h2,
.hb-audio-panel__head h2,
.hb-page-hero__copy h1,
.hb-page-section-head h2,
.hb-feed-card h3,
.hb-panel h3,
.hb-tool-card h3,
.hb-tool-result__detail h3,
.hb-tool-result__stat strong,
.hb-time-card strong {
    color: var(--hb-text);
}

.hb-brand:hover,
.hb-search:hover i,
.hb-search:focus-within i,
.hb-teaser-card a,
.hb-page-kicker,
.hb-tool-card__eyebrow,
.hb-tool-card__cta,
.hb-research-card__footer,
.hb-audio-panel__head a,
.hb-footer__social a:hover,
body a {
    color: var(--hb-accent);
}

.hb-nav a,
.hb-search i,
.hb-icon-button i,
.hb-kicker,
.hb-meta,
.hb-sidebar-block__title,
.hb-footer__bar p,
.hb-footer__social span,
.hb-accordion summary,
.hb-accordion__body,
.hb-page-section-head span,
.hb-search-panel label,
.hb-tool-form label span,
.hb-tool-result__stat span,
.hb-time-card span,
.hb-trending__tabs,
.hb-trending__rank,
.hb-tool-table th {
    color: var(--hb-text-soft);
}

.hb-teaser-card p,
.hb-editorial-card p,
.hb-research-card p,
.hb-panel p,
.hb-feed-card p,
.hb-panel__text,
.hb-tool-card p,
.hb-page-hero__copy p,
.hb-tool-table td,
.hb-list li,
.hb-steps-list li,
.hb-kpi-grid span,
.hb-topic-row span,
.hb-tag-cloud span,
body p,
body li,
body label,
body .excerpt p,
body .news-list-description,
body .post-content p,
body .post-content li {
    color: var(--hb-text-muted);
}

.hb-nav a {
    color: var(--hb-text-muted);
}

.hb-nav a::after,
.hb-audio-row__play,
.hb-study-highlight,
.hb-tool-form button,
.hb-newsletter-form button {
    background: var(--hb-accent-strong);
}

.hb-search {
    background: var(--hb-bg-muted);
    border-color: var(--hb-border);
}

.hb-search:hover,
.hb-search:focus-within {
    background: var(--hb-bg-elevated);
    border-color: var(--hb-accent);
    box-shadow: 0 2px 10px var(--hb-accent-soft);
}

.hb-search input,
.hb-tool-form input,
.hb-tool-form select,
.hb-search-panel input,
.hb-newsletter-form input,
body input,
body select,
body textarea,
body .form-control,
body .form-control-sm {
    background: var(--hb-input-bg);
    border-color: var(--hb-border);
    color: var(--hb-text);
}

.hb-search input::placeholder,
.hb-search-panel input::placeholder,
.hb-newsletter-form input::placeholder,
body input::placeholder,
body textarea::placeholder,
body .form-control::placeholder {
    color: var(--hb-text-soft);
}

.hb-icon-button {
    background: var(--hb-bg-soft);
    border-color: var(--hb-border);
}

.hb-icon-button:hover {
    border-color: var(--hb-accent);
    background: var(--hb-accent-soft);
    box-shadow: 0 4px 12px var(--hb-accent-soft);
}

.hb-theme-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.hb-theme-switch__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hb-theme-switch__track {
    position: relative;
    width: 64px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border: 1px solid var(--hb-border);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(234, 241, 239, 0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hb-theme-switch__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #eef5f3 100%);
    box-shadow: 0 4px 12px rgba(12, 27, 31, 0.16);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hb-theme-switch__icon {
    position: relative;
    z-index: 1;
    color: var(--hb-text-soft);
    font-size: 12px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.hb-theme-switch__input:focus-visible + .hb-theme-switch__track {
    border-color: var(--hb-accent);
    box-shadow: 0 0 0 4px var(--hb-accent-soft);
}

.hb-theme-switch__input:checked + .hb-theme-switch__track {
    background: linear-gradient(135deg, rgba(30, 48, 53, 0.95) 0%, rgba(18, 31, 36, 0.98) 100%);
    border-color: rgba(102, 200, 183, 0.45);
}

.hb-theme-switch__input:checked + .hb-theme-switch__track .hb-theme-switch__thumb {
    transform: translateX(28px);
    background: linear-gradient(135deg, #7ad7c7 0%, #ddfbf4 100%);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.hb-theme-switch__input:checked + .hb-theme-switch__track .hb-theme-switch__icon--sun,
.hb-theme-switch__input:not(:checked) + .hb-theme-switch__track .hb-theme-switch__icon--moon {
    opacity: 0.4;
}

.hb-theme-switch__input:checked + .hb-theme-switch__track .hb-theme-switch__icon--moon,
.hb-theme-switch__input:not(:checked) + .hb-theme-switch__track .hb-theme-switch__icon--sun {
    color: var(--hb-accent);
}

.hb-footer {
    background: var(--hb-bg-subtle);
    border-top-color: var(--hb-border);
}

.hb-footer__accordion,
.hb-accordion,
.hb-pick-card,
.hb-expert-card,
.hb-trending__item,
.hb-trending__tabs,
.hb-tool-table th,
.hb-tool-table td {
    border-color: var(--hb-border-strong);
}

.hb-hero__teasers,
.hb-trending,
.hb-editorial-card,
.hb-page-hero__copy,
.hb-page-hero__feature,
.hb-search-panel,
.hb-topic-row,
.hb-feed-card,
.hb-panel,
.hb-tool-card,
.hb-research-card,
.hb-time-card,
.hb-search,
.hb-icon-button,
.hb-tool-result__stat {
    background: var(--hb-bg-soft);
    border-color: var(--hb-border);
}

.hb-panel--soft,
.hb-chip-bg,
.hb-research-strip,
.hb-topic-row span,
.hb-tag-cloud span,
.hb-kpi-grid article,
.hb-research-card__chart,
.hb-time-card,
.hb-tool-result,
.scrollable-news-widget ul li:hover {
    background: var(--hb-bg-muted);
}

.hb-panel--dark,
.hb-audio-panel {
    background: var(--hb-bg-strong);
    border-color: var(--hb-bg-strong);
}

.hb-panel--dark h3,
.hb-panel--dark p,
.hb-panel--dark li,
.hb-panel--dark a:not(.btn) {
    color: #eef7f5 !important;
}

.hb-panel--dark .hb-panel__title {
    color: rgba(238, 247, 245, 0.72) !important;
}

html[data-theme="dark"] .hb-story img,
html[data-theme="dark"] .hb-stories-carousel .hb-story img {
    border-color: var(--hb-border) !important;
}

html[data-theme="dark"] .container,
html[data-theme="dark"] .main-container,
html[data-theme="dark"] .all-news-content,
html[data-theme="dark"] .widget-content,
html[data-theme="dark"] .hot-properties,
html[data-theme="dark"] .s-widget,
html[data-theme="dark"] .main-news,
html[data-theme="dark"] .news-list-item,
html[data-theme="dark"] .news-card,
html[data-theme="dark"] .panel,
html[data-theme="dark"] .card,
html[data-theme="dark"] .well,
html[data-theme="dark"] .modal-content,
html[data-theme="dark"] footer,
html[data-theme="dark"] .blog-list,
html[data-theme="dark"] .blog-one,
html[data-theme="dark"] .comments-area,
html[data-theme="dark"] .comment-box,
html[data-theme="dark"] .reply-box {
    background-color: transparent;
    color: var(--hb-text);
}

html[data-theme="dark"] .widget-content,
html[data-theme="dark"] .hot-properties,
html[data-theme="dark"] .all-news-content,
html[data-theme="dark"] .main-news,
html[data-theme="dark"] .news-list-item,
html[data-theme="dark"] .news-card,
html[data-theme="dark"] .panel,
html[data-theme="dark"] .card,
html[data-theme="dark"] .well,
html[data-theme="dark"] .modal-content,
html[data-theme="dark"] .blog-one,
html[data-theme="dark"] .comment-box,
html[data-theme="dark"] .reply-box,
html[data-theme="dark"] .search-page-form,
html[data-theme="dark"] .newsletter-section {
    background: var(--hb-bg-soft) !important;
    border-color: var(--hb-border) !important;
    box-shadow: none;
}

html[data-theme="dark"] .page-title,
html[data-theme="dark"] .main-news-title a,
html[data-theme="dark"] .sub-head a,
html[data-theme="dark"] .news-list-title a,
html[data-theme="dark"] .widget-content a:not(.btn),
html[data-theme="dark"] .post-content h1,
html[data-theme="dark"] .post-content h2,
html[data-theme="dark"] .post-content h3,
html[data-theme="dark"] .post-content h4 {
    color: var(--hb-text) !important;
}

html[data-theme="dark"] .sub-head-link-date,
html[data-theme="dark"] .main-news-meta,
html[data-theme="dark"] .news-list-meta,
html[data-theme="dark"] .news-by-title,
html[data-theme="dark"] .news-by-body,
html[data-theme="dark"] .meta-date,
html[data-theme="dark"] .meta-source,
html[data-theme="dark"] .meta-views {
    color: var(--hb-text-soft) !important;
}

html[data-theme="dark"] .dropdown-menu,
html[data-theme="dark"] .dropdown-menu > li > a,
html[data-theme="dark"] .ui-widget-content,
html[data-theme="dark"] .ui-datepicker {
    background: var(--hb-bg-soft) !important;
    border-color: var(--hb-border) !important;
    color: var(--hb-text) !important;
}

html[data-theme="dark"] .btn,
html[data-theme="dark"] .btn-primary,
html[data-theme="dark"] .btn-blue {
    background: var(--hb-accent) !important;
    border-color: var(--hb-accent) !important;
    color: #0b1716 !important;
}

html[data-theme="dark"] .scrollable-news-widget::-webkit-scrollbar-track {
    background: var(--hb-bg-muted);
}

html[data-theme="dark"] .scrollable-news-widget::-webkit-scrollbar-thumb {
    background: var(--hb-accent-strong);
}

html[data-theme="dark"] .scrollable-news-widget {
    scrollbar-color: var(--hb-accent-strong) var(--hb-bg-muted);
}

html[data-theme="dark"] .scrollable-news-widget::after {
    background: linear-gradient(to bottom, transparent, rgba(16, 25, 28, 0.92));
}

@media (max-width: 1100px) {
    .hb-auth-layout {
        grid-template-columns: 1fr;
    }

    .hb-auth-story h1 {
        font-size: 36px;
    }

    .hb-theme-switch {
        order: 2;
    }

    .hb-topbar__inner {
        gap: 18px;
    }

    .hb-nav {
        gap: 16px;
    }

    .hb-search {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    /* Mobile homepage redesign: tighter shell spacing and cleaner vertical rhythm */
    .hb-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hb-topbar {
        position: sticky;
        top: 0;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    /* Mobile navbar fix: improve spacing without affecting desktop */
    .hb-topbar__inner {
        display: grid;
        grid-template-columns: max-content minmax(0, 1fr) max-content max-content max-content;
        align-items: center;
        column-gap: 10px;
        row-gap: 0;
        min-height: 58px;
        padding-top: 6px;
        padding-bottom: 6px;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 0 0 18px 18px;
        background: color-mix(in srgb, var(--hb-bg-soft) 88%, transparent);
        border-bottom: 1px solid color-mix(in srgb, var(--hb-border) 86%, transparent);
        box-shadow: 0 10px 28px rgba(8, 21, 25, 0.08);
    }

    .hb-brand {
        order: 1;
        min-width: 0;
        display: flex;
        align-items: center;
    }

    .hb-brand__logo {
        height: 28px;
        max-width: 156px;
        display: block;
    }

    .hb-menu-toggle {
        display: inline-flex;
        order: 4;
        align-items: center;
        justify-content: center;
        justify-self: end;
        width: 34px;
        height: 34px;
        border-radius: 12px;
        background: color-mix(in srgb, var(--hb-bg-elevated) 92%, transparent);
        border: 1px solid var(--hb-border);
        box-shadow: 0 8px 18px rgba(8, 21, 25, 0.08);
    }

    .hb-auth-menu {
        order: 3;
        justify-self: end;
        display: flex;
        align-items: center;
    }

    .hb-auth-menu__trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 12px;
        background: color-mix(in srgb, var(--hb-bg-elevated) 92%, transparent);
        border: 1px solid var(--hb-border);
        box-shadow: 0 8px 18px rgba(8, 21, 25, 0.08);
    }

    .hb-topbar__inner > .hb-translate {
        order: 5;
        display: flex;
        align-items: center;
        justify-self: end;
        padding-top: 0;
        min-height: 34px;
        margin-right: 0;
        min-width: 54px;
    }

    .hb-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px 12px 14px;
        background: color-mix(in srgb, var(--hb-bg-soft) 94%, transparent);
        border-bottom: 1px solid var(--hb-border);
        box-shadow: 0 18px 40px rgba(8, 21, 25, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        z-index: 25;
        justify-content: stretch;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .hb-mobile-nav-tools {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-top: 12px;
        margin-top: 6px;
        padding-left: 2px;
    }

    .hb-mobile-nav-tools .hb-translate,
    .hb-mobile-nav-tools .hb-theme-switch {
        width: auto;
    }

    .hb-mobile-nav-tools .hb-theme-switch {
        width: auto;
        justify-self: start;
        margin-left: 0;
        transform: none;
    }

    body.hb-mobile-nav-open .hb-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .hb-nav a {
        padding: 12px 4px;
        border-bottom: 1px solid var(--hb-border);
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .hb-nav a:last-child {
        border-bottom: 0;
    }

    .hb-nav a::after {
        display: none;
    }

    .hb-auth-page {
        padding: 24px 0 40px;
    }

    .banner-block .container {
        width: 100%;
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-top: 10px;
    }

    .banner .row {
        margin-left: 0;
        margin-right: 0;
        display: block;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .banner .row::-webkit-scrollbar {
        display: none;
    }

    .banner .first-img,
    .banner .second-img {
        float: none;
        display: inline-block;
        vertical-align: top;
    }

    /* Mobile compact banner carousel: hide the large desktop feature card */
    .banner .first-img--desktop-featured {
        display: none;
    }

    .banner .second-img--mobile-only {
        display: block;
    }

    .banner .second-img {
        display: block;
        width: 100%;
        overflow: visible;
    }

    .banner .second-img > .row {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 164px;
        gap: 8px;
        margin: 0;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .banner .second-img > .row::-webkit-scrollbar {
        display: none;
    }

    .banner .second-img .other-img {
        float: none;
        width: 164px;
        height: 120px;
        border: 0 !important;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid color-mix(in srgb, var(--hb-border) 82%, transparent) !important;
        box-shadow: 0 12px 26px rgba(10, 24, 29, 0.1);
        background: var(--hb-bg-elevated);
        position: relative;
        scroll-snap-align: start;
    }

    .banner .second-img .col-xs-6 {
        padding-left: 0;
        padding-right: 0;
        width: auto;
    }

    /* Mobile compact banner carousel: show the duplicated first card as the first small card */
    .banner .second-img .other-img-featured-mobile {
        display: block;
    }

    .banner .second-img .other-img img {
        height: 120px;
        object-fit: cover;
        object-position: center center;
    }

    .banner .second-img .shadoweffect {
        left: 0;
        background: linear-gradient(180deg, rgba(7, 16, 20, 0.02) 6%, rgba(7, 16, 20, 0.3) 48%, rgba(7, 16, 20, 0.94) 100%) repeat scroll 0 0;
    }

    .banner .second-img .caption {
        padding: 10px 10px 8px;
    }

    .banner .second-img .caption .item-heading {
        display: block;
        font-size: 11px;
        line-height: 1.28;
        font-weight: 500;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
    }

    .banner .second-img .caption .the-date {
        font-size: 8px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.9;
    }

    .hb-auth-story,
    .hb-auth-card {
        padding: 22px;
    }

    .hb-auth-form--grid {
        grid-template-columns: 1fr;
    }

    .hb-auth-actions,
    .hb-auth-social__actions {
        flex-direction: column;
    }

    .hb-auth-btn,
    .hb-auth-btn--social {
        width: 100%;
    }

    .hb-topbar__actions {
        order: 2;
        grid-column: auto;
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
    }

    /* Mobile navbar fix: use a square search box and preserve clear spacing */
    .hb-search {
        min-width: 0;
        width: 100%;
        min-height: 38px;
        padding: 0 10px;
        max-width: 158px;
        border-radius: 0;
        display: flex;
        align-items: center;
        background: color-mix(in srgb, var(--hb-bg-elevated) 92%, transparent);
        border: 1px solid var(--hb-border);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 6px 16px rgba(8, 21, 25, 0.06);
    }

    .hb-search input {
        font-size: 11px;
    }

    .hb-search i {
        font-size: 12px;
        flex: 0 0 auto;
        margin-right: 6px;
    }

    .hb-topbar__actions > .hb-theme-switch {
        display: none !important;
    }

    .hb-topbar__inner > .hb-translate .gt_switcher-popup,
    .hb-topbar__inner > .hb-translate .gt_switcher-notranslate {
        transform: scale(0.68);
        transform-origin: center right;
    }

    .hb-topbar__inner > .hb-translate .gt_float_switcher,
    .hb-topbar__inner > .hb-translate .gt_switcher {
        font-size: 10px;
        min-height: 30px;
        min-width: 54px;
        border-radius: 999px;
        border: 1px solid var(--hb-border);
        background: color-mix(in srgb, var(--hb-bg-elevated) 92%, transparent);
        box-shadow: 0 6px 16px rgba(8, 21, 25, 0.06);
    }

    .hb-topbar__inner > .hb-translate .gt_float_switcher img,
    .hb-topbar__inner > .hb-translate .gt_switcher img {
        display: none !important;
    }

    .hb-topbar__inner > .hb-translate .gt_float_switcher,
    .hb-topbar__inner > .hb-translate .gt_switcher,
    .hb-topbar__inner > .hb-translate .gt_selected,
    .hb-topbar__inner > .hb-translate .gt_selected a {
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
    }

    .hb-topbar__inner > .hb-translate .gt_selected a,
    .hb-topbar__inner > .hb-translate .gt_options a {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .hb-topbar__inner > .hb-translate .gt_selected a {
        gap: 4px;
        line-height: 1;
    }

    .hb-topbar__inner > .hb-translate .gt_selected a span:not(.gt_float_switcher-arrow),
    .hb-topbar__inner > .hb-translate .gt_switcher a span:not(.gt_float_switcher-arrow) {
        display: inline !important;
    }

    .hb-auth-menu__panel,
    .hb-translate .gt_float_switcher .gt_options,
    .hb-translate .gt_switcher .gt_options,
    .hb-translate .gt_float_switcher .gt_options.gt-open,
    .hb-translate .gt_switcher .gt_options.gt-open {
        right: 0 !important;
        left: auto !important;
    }

    .hb-topbar__inner > .hb-translate .gt_float_switcher .gt_options,
    .hb-topbar__inner > .hb-translate .gt_switcher .gt_options,
    .hb-topbar__inner > .hb-translate .gt_float_switcher .gt_options.gt-open,
    .hb-topbar__inner > .hb-translate .gt_switcher .gt_options.gt-open {
        width: 60px !important;
        min-width: 60px !important;
    }

    .hb-mobile-nav-tools .hb-theme-switch__track {
        width: 58px;
        height: 32px;
        padding: 0 8px;
        justify-content: space-between;
    }

    .hb-mobile-nav-tools .hb-theme-switch__thumb {
        top: 3px;
        left: 3px;
        width: 24px;
        height: 24px;
    }

    .hb-mobile-nav-tools .hb-theme-switch__input:checked + .hb-theme-switch__track .hb-theme-switch__thumb {
        transform: translateX(26px);
    }

    .hb-mobile-nav-tools .hb-theme-switch__icon {
        font-size: 11px;
    }

    .hb-translate .gt_float_switcher .gt_options,
    .hb-translate .gt_switcher .gt_options,
    .hb-translate .gt_float_switcher .gt_options.gt-open,
    .hb-translate .gt_switcher .gt_options.gt-open,
    .hb-auth-menu__panel {
        right: 0 !important;
        left: auto !important;
    }
}

@media (max-width: 420px) {
    .banner .second-img .other-img,
    .banner .second-img .other-img img {
        width: 150px;
        height: 112px;
    }

    .banner .second-img .caption .item-heading {
        font-size: 10px;
    }
}

/* Multimedia Hub readability */

.hb-media-card {
    color: #ffffff;
}

.hb-media-card .hb-kicker--light,
.hb-media-card h3,
.hb-media-card a,
.hb-media-card a:hover,
.hb-media-card a:focus {
    color: #ffffff !important;
}

.hb-audio-panel,
.hb-audio-panel__head h2,
.hb-audio-panel__head a,
.hb-audio-row h3,
.hb-audio-row__duration {
    color: #ffffff;
}

.hb-audio-panel__head a {
    color: #86c7ba !important;
}

.hb-audio-row__duration {
    color: #9eb2b0 !important;
}

html[data-theme="dark"] .hb-media-card .hb-kicker--light,
html[data-theme="dark"] .hb-media-card h3,
html[data-theme="dark"] .hb-media-card a,
html[data-theme="dark"] .hb-audio-panel__head h2,
html[data-theme="dark"] .hb-audio-row h3 {
    color: #f3f8f6 !important;
}

html[data-theme="dark"] .hb-audio-panel__head a {
    color: var(--hb-accent) !important;
}

html[data-theme="dark"] .hb-audio-row__duration {
    color: var(--hb-text-soft) !important;
}

html[data-theme="dark"] .hb-trending {
    background: #162225;
    border-color: var(--hb-border);
}

html[data-theme="dark"] .hb-trending__tabs {
    color: #8eaba7 !important;
    border-bottom-color: var(--hb-border-strong);
}

html[data-theme="dark"] .hb-trending__tabs .is-active {
    color: #f3f8f6 !important;
}

html[data-theme="dark"] .hb-trending__item {
    border-bottom-color: var(--hb-border-strong);
}

html[data-theme="dark"] .hb-trending__rank {
    color: #c8dad7 !important;
}

html[data-theme="dark"] .hb-trending__item p,
html[data-theme="dark"] .hb-trending__item a,
html[data-theme="dark"] .hb-trending__item a:hover,
html[data-theme="dark"] .hb-trending__item a:focus {
    color: #dce9e7 !important;
}
