﻿.navbar {
    z-index: 1021;
}

main {
    padding-top: 65px;
}

/* Essential header styles — themed (ink + watercolor) */
.nav-social .btn-icon {
    --_size: 40px;
    width: var(--_size);
    height: var(--_size);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--mh-ink, #111316);
    background-color: transparent;
    border: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .nav-social .btn-icon:hover {
        transform: translateY(-2px) scale(1.05);
    }
    /* Accessible focus ring (uses theme token) */
    .nav-social .btn-icon:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem var(--mh-ring, color-mix(in oklab, var(--mh-teal, #0f7c82) 55%, white));
    }

    /* Social icon hover colors — toned for premium finish */
    .nav-social .btn-icon[aria-label="Facebook"]:hover {
        color: color-mix(in oklab, #1877f2 85%, black);
    }

    .nav-social .btn-icon[aria-label="Instagram"]:hover {
        color: color-mix(in oklab, #e4405f 85%, black);
    }

    .nav-social .btn-icon[aria-label="X (Twitter)"]:hover {
        color: color-mix(in oklab, var(--mh-ink, #111316) 95%, black);
    }

    .nav-social .btn-icon[aria-label="YouTube"]:hover {
        color: color-mix(in oklab, #ff0000 85%, black);
    }

    .nav-social .btn-icon[aria-label="TikTok"]:hover {
        color: color-mix(in oklab, #25f4ee 85%, black);
    }

/* Menu icon animations — inherit theme ink */
#menuToggle {
    color: var(--mh-ink, #111316);
}

.mh-menu-icon .bar,
.mh-menu-icon .glass *,
.mh-menu-icon .glass {
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s ease, color 0.2s ease;
    transform-box: fill-box;
    transform-origin: center;
}

.mh-menu-icon .bar {
    fill: currentColor !important;
}

.mh-menu-icon .glass {
    stroke: currentColor !important;
}

/* Menu hover effects (unchanged geometry) */
:root:not(.menu-open) #menuToggle:hover .mh-menu-icon .bar-top {
    transform: translateY(1.5px);
}

:root:not(.menu-open) #menuToggle:hover .mh-menu-icon .bar-bottom {
    transform: translateY(-1.5px);
}

:root:not(.menu-open) #menuToggle:hover .mh-menu-icon .glass {
    transform: rotate(15deg) scale(0.9);
}

/* Menu open state (unchanged geometry) */
.menu-open .mh-menu-icon .bar-top {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .mh-menu-icon .bar-center {
    transform: scaleX(0);
    opacity: 0;
}

.menu-open .mh-menu-icon .bar-bottom {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-open .mh-menu-icon .glass {
    transform: scale(0.6) rotate(15deg);
    opacity: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mh-menu-icon .bar,
    .mh-menu-icon .glass,
    .nav-social .btn-icon {
        transition: none;
    }
}

.mh-home-floating {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1080; /* above header / cards, below fullscreen menu overlay */
    pointer-events: none; /* container itself is pass-through */
}

.mh-home-floating-inner {
    pointer-events: auto; /* actual clickable area */
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.8rem 0.35rem 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid color-mix(in oklab, var(--mh-teal) 12%, white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 0 0 0.08rem color-mix(in oklab, var(--mh-beige) 40%, transparent);
    text-decoration: none;
    transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out, border-color 0.16s ease-out;
    font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

    .mh-home-floating-inner:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 1);
        border-color: var(--mh-teal-soft);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 0 0.09rem color-mix(in oklab, var(--mh-teal) 25%, transparent);
    }

    .mh-home-floating-inner:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.16rem color-mix(in oklab, var(--mh-teal) 45%, white), 0 14px 36px rgba(0, 0, 0, 0.22);
        border-color: var(--mh-teal-strong);
    }

.mh-home-floating-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #fff 0, #fff 30%, color-mix(in oklab, var(--mh-teal) 20%, white) 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}

    .mh-home-floating-icon-wrap img {
        display: block;
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

.mh-home-floating-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mh-home-floating-label-main {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--mh-ink-soft);
}

.mh-home-floating-label-sub {
    font-size: 0.72rem;
    color: color-mix(in oklab, var(--mh-ink) 45%, white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .mh-home-floating {
        bottom: 6rem;
    }

    .mh-home-floating-inner {
        display: block;
        background: radial-gradient(circle at 30% 20%, #fff 0, #fff 30%, color-mix(in oklab, var(--mh-teal) 20%, white) 100%);
        padding: 0.5rem;
        width: 64px;
        height: 64px;
        text-align: center;
    }

        .mh-home-floating-inner:hover {
            background: radial-gradient(circle at 30% 20%, #fff 0, #fff 30%, color-mix(in oklab, var(--mh-teal) 20%, white) 100%);
        }

    .mh-home-floating-label-main {
        font-weight: 400;
        font-size: 0.8rem;
    }

    .mh-home-floating-icon-wrap {
        background: none;
        width: 28px;
        height: 28px;
        border-radius: 0;
        margin: 0 auto;
    }

        .mh-home-floating-icon-wrap img {
            width: 28px;
            height: 28px;
        }

    .mh-home-floating-label-sub {
        display: none; /* keep it clean on mobile */
    }
}

/* Compact on very small screens */
@media (max-width: 575.98px) {
    .mh-home-floating {
        bottom: 4.5rem;
    }

    .mh-home-floating-label-sub {
        display: none; /* keep it clean on mobile */
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .section-nav-cards .col {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* =========================
   Footer — themed (ink + watercolor)
   Layout unchanged
   ========================= */

/* Footer Styles */
.footer {
    /* deep navy base with subtle washi wash using theme tokens */
    background: radial-gradient(900px 320px at -10% -10%, color-mix(in oklab, var(--mh-sakura, #f4a7bf) 10%, transparent) 0%, transparent 55%), radial-gradient(760px 260px at 110% 10%, color-mix(in oklab, var(--mh-teal, #0f7c82) 10%, transparent) 0%, transparent 55%), var(--mh-navy, #223347);
    padding-bottom: 2rem;
    color: color-mix(in oklab, #fff 92%, var(--mh-beige, #f3e4c7));
}

/* Social Icons */
footer .nav-social .btn-icon {
    --btn-bg: color-mix(in oklab, #ffffff 12%, transparent);
    --btn-fg: color-mix(in oklab, #ffffff 92%, var(--mh-beige, #f3e4c7));
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0;
    background: var(--btn-bg);
    color: var(--btn-fg);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

    footer .nav-social .btn-icon:hover {
        transform: translateY(-2px);
        background: #ffffff;
        color: var(--mh-teal, #0f7c82);
    }
    /* Accessible focus ring in footer context */
    footer .nav-social .btn-icon:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem color-mix(in oklab, var(--mh-teal, #0f7c82) 45%, #ffffff);
    }

/* Optional “subtle” variant keeps parity with buttons elsewhere */
footer .nav-social .btn-primary-subtle {
    background: color-mix(in oklab, #ffffff 16%, transparent);
    color: var(--btn-fg, #fff);
}

    footer .nav-social .btn-primary-subtle:hover {
        background: #ffffff;
        color: var(--mh-teal, #0f7c82);
    }

/* Category Headers */
.footer h6 {
    min-height: 24px;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 0.02em;
}

/* Links */
.footer .link-light {
    --bs-link-opacity: 0.78;
    color: rgba(255, 255, 255, var(--bs-link-opacity));
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
}

    .footer .link-light:hover,
    .footer .link-light:focus {
        --bs-link-opacity: 1;
        color: color-mix(in oklab, #ffffff 96%, var(--mh-plumeria, #f4d06f));
    }

/* Category Icons */
.footer .category-icon {
    width: 24px;
    height: 24px;
    vertical-align: text-bottom;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

/* Copyright Badge */
.footer .copyright-badge {
    background-color: rgba(0, 0, 0, 0.32);
    color: color-mix(in oklab, #ffffff 92%, var(--mh-beige, #f3e4c7));
    font-weight: normal;
    border-radius: 0.5rem;
    letter-spacing: 1px;
}

/* Borders */
.footer .border-light {
    border-color: color-mix(in oklab, #ffffff 10%, transparent) !important;
}

@media (max-width: 767.98px) {
    .footer {
        padding-bottom: 5rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding-bottom: 4rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    footer .nav-social .btn-icon {
        transition: none;
    }
}

/* =========================
   Fullscreen Menu — Themed (ink + watercolor)
   Layout & behavior unchanged
   ========================= */

/* Social icons styles */
.nav-social .btn-icon {
    --_size: 40px;
    width: var(--_size);
    height: var(--_size);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--mh-ink, #111316);
    background-color: transparent;
    border: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .nav-social .btn-icon:hover {
        transform: translateY(-2px) scale(1.05);
    }
    /* Accessible focus ring */
    .nav-social .btn-icon:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem var(--mh-ring, color-mix(in oklab, var(--mh-teal, #0f7c82) 55%, white));
    }

    /* Social icon hover colors — toned for premium finish */
    .nav-social .btn-icon[aria-label="Facebook"]:hover {
        color: color-mix(in oklab, #1877f2 85%, black);
    }

    .nav-social .btn-icon[aria-label="Instagram"]:hover {
        color: color-mix(in oklab, #e4405f 85%, black);
    }

    .nav-social .btn-icon[aria-label="X"]:hover {
        color: color-mix(in oklab, var(--mh-ink, #111316) 95%, black);
    }

    .nav-social .btn-icon[aria-label="YouTube"]:hover {
        color: color-mix(in oklab, #ff0000 85%, black);
    }

    .nav-social .btn-icon[aria-label="TikTok"]:hover {
        color: color-mix(in oklab, #25f4ee 85%, black);
    }

/* Fullscreen menu styles */
.mh-fs-menu {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: grid;
    place-items: center;
    /* Watercolor wash driven by theme tokens */
    background: radial-gradient(1000px 400px at -10% -10%, color-mix(in oklab, var(--mh-sunset, #e4572e) 18%, white) 0%, transparent 60%), radial-gradient(800px 300px at 110% 10%, color-mix(in oklab, var(--mh-teal, #0f7c82) 18%, white) 0%, transparent 60%), linear-gradient(180deg, #fff, color-mix(in oklab, var(--mh-beige, #f3e4c7) 60%, white));
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.menu-open #fsMenu {
    opacity: 1;
    transform: none;
}

/* Lock scroll while menu is open (keeps your selectors) */
.menu-open body,
.menu-open {
    overflow: hidden;
}

/* Close button styles */
.mh-fs-close {
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    color: var(--mh-ink, #111316);
}

.mh-close-icon .cbar {
    fill: currentColor;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), color 0.2s ease;
    transform-origin: 50% 50%;
}

.mh-close-icon .cbar-a {
    transform: rotate(45deg);
}

.mh-close-icon .cbar-b {
    transform: rotate(-45deg);
}

.mh-fs-close:hover {
    color: var(--mh-teal, #0f7c82);
}

    .mh-fs-close:hover .cbar-a {
        transform: rotate(45deg) scaleX(1.06);
    }

    .mh-fs-close:hover .cbar-b {
        transform: rotate(-45deg) scaleX(1.06);
    }
/* Focus ring for keyboard users */
.mh-fs-close:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--mh-ring, color-mix(in oklab, var(--mh-teal, #0f7c82) 55%, white));
    border-radius: 0.5rem;
}

/* Search styles */
.fs-search {
    position: relative;
}

.fs-search-wrap {
    position: relative;
}

.fs-search-ico {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: color-mix(in oklab, var(--mh-ink, #111316) 50%, var(--mh-navy, #223347));
    pointer-events: none;
}

.fs-search-input {
    height: 52px;
    border-radius: 999px;
    padding-left: 44px;
    padding-right: 56px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: var(--mh-ink, #111316);
}

    .fs-search-input::placeholder {
        color: color-mix(in oklab, var(--mh-ink, #111316) 55%, white);
    }

    .fs-search-input:focus {
        border-color: color-mix(in oklab, var(--mh-teal, #0f7c82) 35%, white);
        box-shadow: 0 0 0 0.25rem var(--mh-ring, color-mix(in oklab, var(--mh-teal, #0f7c82) 25%, rgba(13, 110, 253, 0.15)));
    }

.fs-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: #fff;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .fs-search-btn svg {
        margin-top: -3px;
    }

    .fs-search-btn:hover {
        transform: translateY(-50%) translateX(2px);
        color: color-mix(in oklab, var(--mh-teal, #0f7c82), black 10%);
    }

    .fs-search-btn:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem var(--mh-ring, color-mix(in oklab, var(--mh-teal, #0f7c82) 55%, white));
        border-radius: 0.75rem;
    }

/* Menu navigation styles */
.fs-entry {
    text-decoration: none;
    color: color-mix(in oklab, var(--mh-navy, #223347) 90%, var(--mh-ink, #111316));
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

    .fs-entry:hover {
        background-color: color-mix(in oklab, var(--mh-teal, #0f7c82) 8%, transparent);
        transform: translateY(-2px);
        color: var(--mh-teal, #0f7c82);
    }

    .fs-entry:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem var(--mh-ring, color-mix(in oklab, var(--mh-teal, #0f7c82) 55%, white));
        border-radius: 0.75rem;
    }

/* Touch-friendly padding for close button */
@media (hover: none) {
    .mh-fs-close {
        padding: 0.5rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mh-menu-icon .bar,
    .mh-menu-icon .glass,
    .mh-fs-menu,
    .fs-entry,
    .fs-search-btn {
        transition: none;
    }
}

/* --------------------------------------------------------
   Editorial background — clean “solid edge”, Japan-premium
   • No fades / no blending into next section
   • Calm indigo wash + hero artwork locked to bottom-right
   • Optimized with image-set() + content-safe positioning
   -------------------------------------------------------- */

.editorial-section {
    /* lighter ocean watercolor + turtle */
    background-color: #fff;
    background-image: url("https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-editorial.jpg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    padding-bottom: 1rem;
}

.editorial-container {
    max-width: var(--mh-container-xxl, 1400px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.editorial-slider {
    position: relative;
    margin: 3rem 0;
    padding: 1rem 0;
}

.editorial-list {
    padding: 0;
    margin: 0;
}

/* Card base */
.editorial-card {
    display: block;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.26s;
}

    .editorial-card:hover {
        transform: translateY(-3px);
    }

/* Thumb + doodles */
.editorial-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    transition: transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.26s;
}

.editorial-card:hover .editorial-thumb {
    box-shadow: 0 1.5rem 3rem -1.25rem rgba(0, 0, 0, 0.18);
}

.editorial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s;
    will-change: transform;
}

.editorial-card:hover .editorial-thumb img,
.editorial-feature:hover .editorial-thumb img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

/* Floating info panel (white card over image bottom) */
.editorial-panel {
    position: relative;
    margin: -5rem 1rem 2rem;
    z-index: 2;
    background: #fff;
    border-radius: 0.9rem;
    padding: 1rem 1.25rem 2rem;
}

/* Tags */
.editorial-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0 0 0.5rem;
    font-size: 0.875rem;
}

.editorial-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: var(--mh-teal, #0f7c82);
    background: color-mix(in oklab, var(--mh-teal, #0f7c82) 12%, white);
    border: 1px solid color-mix(in oklab, var(--mh-teal, #0f7c82) 18%, white);
}

/* Title + meta */
.editorial-title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-weight: 900;
    line-height: 1.45;
    margin: 0 0 0.6rem;
    color: color-mix(in oklab, var(--mh-navy, #223347) 90%, var(--mh-ink, #111316));
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.35rem);
}

.editorial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: color-mix(in oklab, var(--mh-ink, #111316) 65%, var(--mh-navy, #223347));
}

.author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.author-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px color-mix(in oklab, var(--mh-ink, #111316) 12%, transparent);
}

/* Center emphasis: active slide large & vivid; sides smaller & softer */
.editorial-slider .swiper-slide {
    transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease, height 0.35s 0.5s ease;
}

    .editorial-slider .swiper-slide:not(.swiper-slide-active) {
        transform: scale(0.8);
        opacity: 0.88;
        filter: saturate(0.9);
    }

.editorial-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
}

.editorial-slider .swiper-slide:not(.swiper-slide-active) .editorial-panel {
    opacity: 0;
}

.editorial-slider .swiper-slide-active {
    opacity: 1;
}

/* Pagination (small dots) */
.editorial-pagination {
    position: absolute;
    bottom: 4rem !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
}

    .editorial-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 4px !important;
        background: rgba(0, 0, 0, 0.25);
        opacity: 1;
    }

    .editorial-pagination .swiper-pagination-bullet-active {
        background: var(--mh-teal, #0f7c82);
    }

/* Nav buttons — white circular with teal arrow */
.editorial-next,
.editorial-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    color: var(--mh-teal, #0f7c82);
    box-shadow: 0 10px 28px -12px rgba(0, 0, 0, 0.28);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    z-index: 1;
}

    .editorial-next svg,
    .editorial-prev svg {
        transform: scale(2);
    }

.editorial-prev {
    left: 1rem;
}

.editorial-next {
    right: 1rem;
}

    .editorial-next:hover,
    .editorial-prev:hover {
        transform: translateY(-50%) scale(1.06);
        box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.32);
        color: color-mix(in oklab, var(--mh-teal, #0f7c82), black 10%);
    }

/* Optional section doodle */
.bg-doodle {
    position: absolute;
    left: -2%;
    bottom: -12%;
    width: 360px;
    height: 360px;
    opacity: 0.22;
    color: #fff;
    mix-blend-mode: overlay;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .editorial-panel {
        margin: -3rem 1rem 2rem;
        min-height: 200px;
    }
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .editorial-slider {
        margin-top: 0;
        margin-bottom: 1rem;
        padding-top: 0;
    }

    .editorial-panel {
        margin: -2.25rem 2rem 1.5rem;
        padding: 0.85rem 1rem;
    }

    .editorial-thumb {
        border-radius: 0;
    }

    .editorial-title {
        font-size: 1rem;
    }

    .editorial-prev,
    .editorial-next {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 2rem;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
    }

        .editorial-next svg,
        .editorial-prev svg {
            transform: scale(1.5);
        }
}

@media (min-width: 768px) {
    .editorial-prev {
        left: 9%;
    }

    .editorial-next {
        right: 9%;
    }
}

@media (min-width: 1200px) {
    .editorial-prev {
        left: 23%;
    }

    .editorial-next {
        right: 23%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .swiper-slide,
    .editorial-next,
    .editorial-prev {
        transition: none;
    }
}

/* =========================
   Navigation Section — themed (ink + watercolor)
   Layout & structure unchanged
   ========================= */

/* Section canvas */
.section-nav-cards {
    color: var(--mh-ink, #111316);
    padding-top: 3rem;
}

/* Card */
.nav-card {
    border: 1px solid color-mix(in oklab, var(--mh-teal, #0f7c82) 10%, transparent);
    border-radius: 1rem;
    background-color: #fff;
    transition: transform var(--nav-transition-duration, 0.2s) ease;
    text-decoration: none;
}

/* Icon */
.nav-icon {
    width: var(--nav-icon-size, 72px);
    height: var(--nav-icon-size, 72px);
    transition: transform var(--nav-transition-duration, 0.2s) ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

/* Hover Animation (Yuragi) */
@keyframes yuragi {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }
}

.mh-yuragi-hover:hover {
    animation: yuragi 0.3s ease-in-out infinite;
}

/* Labels */
.nav-card .label {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.01em;
    color: color-mix(in oklab, var(--mh-navy, #223347) 90%, var(--mh-ink, #111316));
}

/* Secondary text (if present) */
.nav-card .sub {
    display: block;
    font-size: 0.875rem;
    color: color-mix(in oklab, var(--mh-ink, #111316) 70%, var(--mh-navy, #223347));
}

/* Responsive */
@media (max-width: 991.98px) {
    :root {
        --nav-icon-size: 64px;
        --nav-card-padding: 1rem;
    }

    .nav-card .card-body {
        min-height: 140px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .nav-card,
    .nav-icon {
        transition: none;
    }

    .mh-yuragi-hover:hover {
        animation: none;
    }
}

/* Sticky nav cards */
.section-nav-cards.fixed-top {
    top: 65px; /* matches your navbar height */
    z-index: 1020; /* just above content, below offcanvas */
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
    padding-top: 0;
}

    .section-nav-cards.fixed-top .nav-card {
        border-radius: 0 !important;
        border: none;
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    }

    .section-nav-cards.fixed-top .card-body {
        padding: 0.8rem 1rem;
    }

    .section-nav-cards.fixed-top .nav-icon {
        width: 28px;
        height: 28px;
    }

    .section-nav-cards.fixed-top .label {
        font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
        font-size: 1rem;
        font-weight: 500;
    }

    .section-nav-cards.fixed-top .nav-card[aria-label="ニュース"] {
        border-right: none;
    }

    .section-nav-cards.fixed-top .col {
        padding: 0;
    }

/* Smooth transition when snapping into sticky */
.section-nav-cards.fixed-top {
    transition: box-shadow 0.25s ease;
}

@media (max-width: 991.98px) {
    .section-nav-cards.fixed-top {
        margin-top: 1.5rem;
    }

        .section-nav-cards.fixed-top > .px-4 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .section-nav-cards.fixed-top .row > * {
            margin-top: 0;
        }

        .section-nav-cards.fixed-top .nav-card {
            border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
        }

        .section-nav-cards.fixed-top .card-body {
            min-height: 0;
        }
}

@media (max-width: 767.98px) {
    .section-nav-cards {
        z-index: 1020; /* just above content, below offcanvas */
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
        --bs-bg-opacity: 1;
        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
        padding-top: 0;
        top: auto !important;
        bottom: 0 !important;
        left: 0;
        right: 0;
        position: fixed;
        box-shadow: 0 -1.5rem 1rem rgba(0, 0, 0, 0.15);
    }

        .section-nav-cards > .px-4 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .section-nav-cards .row > * {
            margin-top: 0;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .section-nav-cards .nav-card {
            border-radius: 0 !important;
            border: none;
            border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
            border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
        }

        .section-nav-cards .card-body {
            padding: 0.8rem 0.6rem 0.5rem !important;
            min-height: 0 !important;
        }

        .section-nav-cards .nav-icon {
            width: 28px;
            height: 28px;
        }

        .section-nav-cards .label {
            font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
            font-size: 1rem;
            font-weight: 500;
        }
}

@media (max-width: 575.98px) {
    .section-nav-cards {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

        .section-nav-cards .card-body,
        .section-nav-cards.fixed-top .card-body {
            padding: 0.75rem 0.1rem 0.5rem !important;
        }

        .section-nav-cards .label,
        .section-nav-cards.fixed-top .label {
            font-size: 0.7rem;
            line-height: 1;
            margin-top: 2px;
        }
}

/* =========================
   Widgets Section — themed (ink + watercolor)
   Layout & structure unchanged
   ========================= */

/* Base Layout */
.section-widgets {
    /* Map widget tokens to brand theme (safe fallbacks included) */
    --widget-primary: var(--mh-teal, #0f7c82);
    --widget-light: var(--mh-plumeria, #f4d06f);
    --widget-dark: color-mix(in oklab, var(--mh-navy, #223347) 92%, black);
    --widget-radius: 1rem;
    --widget-shadow: 0 0.5rem 1.5rem color-mix(in oklab, var(--mh-ink, #111316) 10%, transparent), 0 1px 0 color-mix(in oklab, var(--mh-teal, #0f7c82) 8%, transparent);
    --widget-padding: 1.25rem;
    background: radial-gradient(1000px 400px at -10% -10%, color-mix(in oklab, var(--mh-sunset, #e4572e) 18%, white) 0%, transparent 60%), radial-gradient(800px 300px at 110% 10%, color-mix(in oklab, var(--mh-teal, #0f7c82) 18%, white) 0%, transparent 60%), linear-gradient(180deg, #fff, color-mix(in oklab, var(--mh-beige, #f3e4c7) 60%, white));
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    color: var(--mh-ink, #111316);
}

/* Pagination (small dots) */
.widgets-pagination {
    position: absolute;
    bottom: 5rem !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
}

    .widgets-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 4px !important;
        background: rgba(0, 0, 0, 0.25);
        opacity: 1;
    }

    .widgets-pagination .swiper-pagination-bullet-active {
        background: var(--mh-teal, #0f7c82);
    }

/* Widget Cards Base */
.widget-card {
    border: none;
    border-radius: var(--widget-radius);
    box-shadow: var(--widget-shadow);
    overflow: hidden;
    height: 100%;
    background-color: var(--widget-dark);
    color: #fff;
}

.widget-premium {
    position: relative;
}

/* ===== Time Widget (Lockface style) ===== */
.widget-time {
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 320px;
}

.lockface-body {
    padding: var(--widget-padding);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 38%, rgba(0, 0, 0, 0.7) 100%);
    height: 425px;
}

.lf-time {
    font-size: clamp(2.75rem, 2.2rem + 2vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.lf-date {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lf-city {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== Festival Widget ===== */
.festival-list {
    background: linear-gradient(45deg, color-mix(in oklab, var(--widget-dark) 95%, black), var(--widget-dark));
    color: #fff;
}

.fes-stack {
    /* item height + gap are used to compute the viewport height for 4 rows */
    --fes-item-h: 86px; /* matches .fes-card min-height */
    --fes-gap: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: var(--fes-gap);
    /* 4 items tall: 4*h + 3*gaps */
    max-height: calc(var(--fes-item-h) * 4 + var(--fes-gap) * 3);
    overflow: auto;
    padding-right: 0.25rem; /* a little room so scrollbar doesn't overlay text */
    scrollbar-gutter: stable both-edges; /* keeps layout steady on desktop */
}
    /* Nice, subtle scrollbar for desktop (auto-hides on Mac) */
    .fes-stack::-webkit-scrollbar {
        width: 8px;
    }

    .fes-stack::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.25);
        border-radius: 8px;
    }

    .fes-stack:hover::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.35);
    }

.fes-stack {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.festival-item {
    padding: 1rem;
    border-radius: 0.75rem;
    background: color-mix(in oklab, #ffffff 8%, transparent);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

    .festival-item:hover {
        transform: translateX(4px);
        background: color-mix(in oklab, #ffffff 12%, transparent);
    }

.festival-date {
    font-size: 0.875rem;
    opacity: 0.8;
}

.festival-title {
    font-size: 1rem;
    margin: 0.25rem 0;
    color: color-mix(in oklab, #ffffff 92%, var(--mh-beige, #f3e4c7));
}

/* ===== Weather Widget ===== */
.weather-pro {
    background: linear-gradient(200deg, color-mix(in oklab, var(--widget-primary) 95%, black), var(--widget-primary));
    color: #fff;
}

.weather-day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid color-mix(in oklab, #ffffff 15%, transparent);
}

    .weather-day:last-child {
        border-bottom: none;
    }

.weather-date {
    font-size: 0.875rem;
    opacity: 0.9;
    width: 4rem;
    padding-left: 1rem;
}

.weather-temp {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .widget-card {
        margin-bottom: 2rem;
    }
}

/* ===== Motion Safety ===== */
@media (prefers-reduced-motion: reduce) {
    .festival-item {
        transition: none;
    }
}

/* ===== Print ===== */
@media print {
    .section-widgets {
        background: none !important;
        padding: 1rem 0;
    }

    .widget-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        color: #000;
    }
}

/* =========================
   TikTok Section — themed (ink + watercolor)
   Layout & behavior unchanged
   ========================= */

/* Section canvas */
#tiktok-section {
    border-top: 1px solid color-mix(in oklab, var(--mh-ink, #111316) 8%, transparent);
}

/* Aspect ratio for embeds */
.tt-vertical {
    --bs-aspect-ratio: 177.7778%; /* 16/9 * 100% */
}

/* Player */
.tt-player {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

/* Click-to-play shell */
.ratio.tt-vertical {
    position: relative;
}

    .ratio.tt-vertical iframe.tt-player {
        pointer-events: none;
    }

    .ratio.tt-vertical.tt-activated iframe.tt-player {
        pointer-events: auto;
    }

/* Poster/overlay button */
.tt-click {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    /* soft ink vignette over the poster */
    background: radial-gradient(120% 120% at 50% 0%, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.45) 100%);
    background-size: cover;
    background-position: center;
    color: var(--mh-teal, #0f7c82); /* used by play triangle via currentColor */
    transition: transform 0.2s ease, filter 0.2s ease;
}

    .tt-click:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem var(--mh-ring, color-mix(in oklab, var(--mh-teal, #0f7c82) 55%, white));
        border-radius: 12px;
    }

    /* Play pill */
    .tt-click::before {
        content: "";
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

/* Play triangle adopts brand color */
.tt-play-tri {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 22px solid currentColor; /* var(--mh-teal) */
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    transform: translate(5px, 0);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

/* Hover/active micro-interactions */
.tt-click:hover::before {
    transform: scale(1.04);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.tt-click:active::before {
    transform: scale(0.98);
}

/* When activated, remove overlay for responsiveness */
.ratio.tt-vertical.tt-activated .tt-click {
    display: none;
}

/* Rainbow text (brand palette) */
.rainbow-text {
    --rainbow: linear-gradient( 90deg, var(--mh-coral, #e95f5c) 0%, var(--mh-sakura, #f4a7bf) 18%, var(--mh-plumeria, #f4d06f) 36%, var(--mh-teal, #0f7c82) 54%, color-mix(in oklab, var(--mh-teal, #0f7c82) 60%, var(--mh-navy, #223347)) 72%, var(--mh-sunset, #e4572e) 90%, var(--mh-coral, #e95f5c) 100% );
    background: var(--rainbow);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.rainbow-animated {
    background-size: 200% 100%;
    animation: rainbow-shift 8s linear infinite;
}

@keyframes rainbow-shift {
    to {
        background-position: 200% 0;
    }
}

/* High-contrast fallback */
@media (forced-colors: active) {
    .rainbow-text {
        color: CanvasText;
        background: none;
        text-shadow: none;
    }
}

/* =========================
   Widget Swiper Customization
   ========================= */
@media (max-width: 991.98px) {
    .widgets-slider .widget-card {
        min-height: 500px !important;
    }
}

@media (min-width: 992px) {
    .widgets-slider {
        padding: 0;
    }

        .widgets-slider .swiper-wrapper {
            flex-wrap: wrap;
            gap: 16px;
            justify-content: space-between;
        }

            .widgets-slider .swiper-wrapper[style] {
                height: auto !important;
            }

        .widgets-slider .swiper-slide {
            width: calc(33.333333% - 30px) !important; /* matches your layout */
            margin-right: 0 !important;
            align-self: stretch;
        }

        .widgets-slider .swiper-pagination {
            display: none;
        }
}

/* =========================
   Swiper Customization
   ========================= */
.tiktok-item {
    padding: 0 15px;
}

#tiktok-section .swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
}

/* Pagination (small dots) */
.tiktok-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
}

    .tiktok-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 4px !important;
        background: rgba(0, 0, 0, 0.25);
        opacity: 1;
    }

    .tiktok-pagination .swiper-pagination-bullet-active {
        background: var(--mh-teal, #0f7c82);
    }

/* Grid-on-tablet (unchanged layout, themed only) */
@media (min-width: 1200px) {
    #tiktok-section .swiper {
        padding: 0;
    }

    #tiktok-section .swiper-wrapper {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    #tiktok-section .swiper-slide {
        width: calc(25% - 23px) !important; /* matches your layout */
        margin-right: 0 !important;
    }

    #tiktok-section .swiper-pagination {
        display: none;
    }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
    .tt-click,
    .tt-click::before,
    .rainbow-animated {
        transition: none;
        animation: none;
    }
}

/* =========================
   人気記事（Popular）— themed (ink + watercolor)
   Layout & structure unchanged
   ========================= */

/* Section canvas (photo + soft wash) */
.section-popular {
    position: relative;
    background-image: radial-gradient(85% 55% at 100% 0%, color-mix(in oklab, var(--mh-teal, #0f7c82) 10%, transparent) 0%, transparent 70%), url("https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-News.jpg");
    background-position: right top, center;
    background-repeat: no-repeat, no-repeat;
    background-size: 120% 80%, cover;
    background-color: #fff; /* crisp edge for adjacent sections */
}

    /* Soft washi veil over imagery for readability */
    .section-popular::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.6));
        /* ultra-light paper grain for a premium tactile feel */
        -webkit-mask-image: none;
        mask-image: none;
        pointer-events: none;
    }

/* List */
.popular-list {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* Item */
.popular-item {
    border-bottom: 1px solid color-mix(in oklab, var(--mh-ink, #111316) 10%, transparent);
    transition: transform 0.2s ease;
}

    .popular-item:last-child {
        border-bottom: none;
    }

/* Link row */
.pop-link {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    text-decoration: none;
    color: color-mix(in oklab, var(--mh-ink, #111316) 92%, var(--mh-navy, #223347));
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 10px;
}

    .pop-link:hover {
        color: var(--mh-teal, #0f7c82);
        background-color: color-mix(in oklab, var(--mh-teal, #0f7c82) 6%, transparent);
    }

    .pop-link:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 0.25rem var(--mh-ring, color-mix(in oklab, var(--mh-teal, #0f7c82) 55%, white));
    }

/* Rank badge */
.rank {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 800;
    background: color-mix(in oklab, var(--mh-teal, #0f7c82) 12%, white);
    color: var(--mh-teal, #0f7c82);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.pop-link:hover .rank {
    background: color-mix(in oklab, var(--mh-teal, #0f7c82) 20%, white);
}

/* Title */
.title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    padding: 4px 0;
    color: currentColor;
}

/* Banner (right column) */
.fs-banner {
    background-color: color-mix(in oklab, var(--mh-beige, #f3e4c7) 22%, white);
    border: 1px solid color-mix(in oklab, var(--mh-ink, #111316) 8%, transparent);
    border-radius: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0.5rem 1.25rem color-mix(in oklab, var(--mh-ink, #111316) 10%, transparent);
}

    .fs-banner:hover {
        transform: translateY(-2px);
        box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, 0.14);
    }

/* Responsive */
@media (max-width: 991.98px) {
    .popular-item .title {
        font-size: 0.9375rem;
    }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
    .popular-item,
    .pop-link,
    .rank,
    .fs-banner {
        transition: none;
    }
}

#youtube-section {
    background: radial-gradient(1000px 400px at -10% -10%, color-mix(in oklab, var(--mh-sunset, #e4572e) 18%, white) 0%, transparent 60%), radial-gradient(800px 300px at 110% 10%, color-mix(in oklab, var(--mh-teal, #0f7c82) 18%, white) 0%, transparent 60%), linear-gradient(180deg, #fff, color-mix(in oklab, var(--mh-beige, #f3e4c7) 60%, white));
}

/* =========================================================
         Reusable Category Hero Slider
         - items are defined in HTML via .mh-cat-card
========================================================= */

.mh-cat-hero {
    position: relative;
    width: 100%;
    background: radial-gradient(circle at top, rgba(255, 180, 142, 0.35), rgba(238, 245, 241, 0.9)), var(--mh-beige, #faf4ec);
    background-size: cover;
    background-position: center;
    padding-bottom: 2rem;
}

    /* variant tones (can be changed via JS) */
    .mh-cat-hero[data-tone="teal"] {
        background-image: linear-gradient(145deg, rgba(207, 238, 239, 0.7), rgba(254, 233, 216, 0.9));
    }

    .mh-cat-hero[data-tone="sunset"] {
        background-image: linear-gradient(145deg, rgba(255, 186, 154, 0.4), rgba(248, 244, 237, 0.95));
    }

    .mh-cat-hero[data-tone="navy"] {
        background-image: linear-gradient(145deg, rgba(14, 42, 66, 0.15), rgba(241, 248, 249, 0.95));
    }

    .mh-cat-hero[data-tone="beige"] {
        background-image: linear-gradient(145deg, rgba(248, 244, 237, 1), rgba(207, 238, 239, 0.35));
    }

    .mh-cat-hero[data-tone="teal"] {
        background-image: linear-gradient(145deg, rgba(207, 238, 239, 0.7), rgba(254, 233, 216, 0.9)), url(https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-Eat.png);
    }

    .mh-cat-hero .mh-cat-heading {
        text-align: left;
        margin-bottom: 1.25rem;
        padding: 0 1.5rem;
    }

@media (min-width: 768px) {
    .mh-cat-hero .mh-cat-heading {
        text-align: center;
        padding: 0;
    }
}

/* slider */
.mh-cat-slider.swiper {
    margin: 3rem 0;
    padding: 1rem 0;
}

    .mh-cat-slider.swiper > ul {
        padding: 0;
    }

.mh-cat-slide {
    list-style: none;
}

.mh-cat-slider.swiper-slide {
    transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease, height 0.35s 0.5s ease;
}

    .mh-cat-slider .swiper-slide:not(.swiper-slide-active) {
        transform: scale(0.8);
        opacity: 0.88;
        filter: saturate(0.9);
    }

.mh-cat-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
}

.mh-cat-card {
    position: relative;
    display: block;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
    text-decoration: none;
}

.mh-cat-card-thumb {
    border-radius: 1.25rem;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

    .mh-cat-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(1.08);
        transition: transform 260ms ease;
    }

.mh-cat-card-body {
    border-radius: 0.9rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.25rem 2rem;
    z-index: 1;
    position: relative;
    margin: -5rem 1rem 0;
    min-height: 175px;
}

.mh-cat-card-meta {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
}

.mh-cat-chip {
    background: rgba(10, 139, 151, 0.15);
    border: 1px solid rgba(10, 139, 151, 0.2);
    color: var(--mh-teal, #0a8b97);
    border-radius: 999px;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    letter-spacing: 0.04em;
}

/* sunset chip variant */
.mh-cat-hero[data-tone="sunset"] .mh-cat-chip {
    background: rgba(244, 146, 108, 0.12);
    border-color: rgba(244, 146, 108, 0.25);
    color: var(--mh-sunset, #f4926c);
}

.mh-cat-card-title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 900;
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.35rem);
    line-height: 1.3;
    color: var(--mh-ink, #23313a);
    margin: 0.375rem 0 0;
}

.mh-cat-card-place {
    font-size: 0.85rem;
    color: rgba(35, 49, 58, 0.5);
}

.mh-cat-card:hover {
    transform: translateY(-3px);
}

    .mh-cat-card:hover .mh-cat-card-thumb img {
        transform: scale(1.05);
    }

/* nav */
.mh-cat-prev,
.mh-cat-next {
    position: absolute;
    top: calc(50% + 0.75rem);
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(10, 139, 151, 0.06);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    transition: background 150ms ease;
}

    .mh-cat-prev svg,
    .mh-cat-next svg {
        width: 20px;
        height: 20px;
        color: var(--mh-teal, #0a8b97);
    }

    .mh-cat-prev:hover,
    .mh-cat-next:hover {
        background: rgba(255, 255, 255, 1);
    }

.mh-cat-prev {
    left: 1rem;
}

.mh-cat-next {
    right: 1rem;
}

/* pagination */
.mh-cat-pagination {
    position: absolute;
    left: 0;
    bottom: 3.5rem !important;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0;
}

    .mh-cat-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(0, 0, 0, 0.25);
        opacity: 1;
    }

    .mh-cat-pagination .swiper-pagination-bullet-active {
        background: var(--mh-teal, #0a8b97);
    }

/* responsive */
@media (max-width: 991.98px) {
    .mh-cat-card-body {
        min-height: 200px;
    }
}

@media (max-width: 767.98px) {
    .mh-cat-slider.swiper {
        margin: 0;
        padding: 0;
    }

    .mh-cat-card,
    .mh-cat-card-thumb {
        border-radius: 0;
    }

        .mh-cat-card:hover {
            transform: none;
        }

    .mh-cat-card-body {
        margin: -2.25rem 2rem 0;
        padding: 0.85rem 1rem;
        transition: transform 200ms ease;
    }

    .mh-cat-card:hover .mh-cat-card-body {
        transform: translateY(-3px);
    }

    .mh-cat-prev,
    .mh-cat-next {
        width: 40px;
        height: 40px;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
        top: auto;
        bottom: 1rem;
        z-index: 1010;
    }

        .mh-cat-prev svg,
        .mh-cat-next svg {
            transform: scale(1.5);
        }

    .mh-cat-hero {
        padding-bottom: 4rem;
    }

    .mh-cat-pagination {
        bottom: 1.5rem !important;
    }

    .mh-cat-card-title {
        font-size: 1rem;
    }

        .mh-cat-card-title + * {
            font-size: 0.85rem;
        }
}

@media (min-width: 768px) {
    .mh-cat-prev {
        left: 9%;
    }

    .mh-cat-next {
        right: 9%;
    }

        .mh-cat-prev svg,
        .mh-cat-next svg {
            transform: scale(2.1);
        }
}

@media (min-width: 1200px) {
    .mh-cat-prev {
        left: 23%;
    }

    .mh-cat-next {
        right: 23%;
    }
}

.mh-articles {
    position: relative;
    padding: 2.25rem 0 3.25rem;
    background: radial-gradient(1000px 360px at 6% -10%, color-mix(in oklab, var(--mh-sakura) 24%, white) 0%, transparent 60%), radial-gradient(900px 320px at 105% 0%, color-mix(in oklab, var(--mh-teal) 18%, white) 0%, transparent 60%), linear-gradient(180deg, #fff, color-mix(in oklab, var(--mh-beige) 62%, white));
}

/* Section header */
.mh-title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
    font-size: clamp(1.35rem, 3vw, 2rem);
    color: var(--mh-ink);
    line-height: 1.15;
}

.mh-sub {
    max-width: 42rem;
    color: var(--ink-60);
    font-size: 0.97rem;
}

/* Keyword chips (static — no JS) */
.mh-keywords {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--wash-bd);
    border-radius: 1rem;
    padding: 0.85rem;
    box-shadow: 0 1.25rem 2.25rem -1rem rgba(0, 0, 0, 0.08);
}

.mh-chip {
    display: inline-block;
    margin: 0.25rem 0.35rem 0.25rem 0;
    padding: 0.42rem 0.8rem;
    line-height: 1;
    border-radius: 999px;
    background: var(--chip-bg);
    border: 1px solid var(--chip-bd);
    color: var(--mh-teal);
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.18s ease, filter 0.18s ease;
}

    .mh-chip:hover {
        transform: translateY(-1px);
        filter: saturate(110%);
    }

    .mh-chip.is-active {
        background: var(--mh-teal);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 0.9rem 1.8rem -0.9rem color-mix(in oklab, var(--mh-teal) 40%, transparent);
    }

/* Result meta (static text for layout) */
.mh-result-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink-60);
    font-size: 0.9rem;
    margin: 0.8rem 0 0;
}

/* Cards */
.mh-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--wash-bd);
    box-shadow: 0 1.1rem 2.2rem -1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s;
}

    .mh-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 1.45rem 2.8rem -1rem rgba(0, 0, 0, 0.16);
    }

.mh-thumb {
    aspect-ratio: 16/10;
    background: #f7faf9;
    overflow: hidden;
}

    .mh-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(1.06);
    }

.mh-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--wash-bd);
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    font-size: 0.78rem;
    color: var(--mh-ink);
    backdrop-filter: saturate(1.1);
}

.mh-body {
    padding: 0.9rem 0.95rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mh-title-sm {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.02rem;
    line-height: 1.3;
    margin: 0;
    color: var(--mh-ink);
}

.mh-excerpt {
    margin: 0;
    color: var(--ink-60);
    font-size: 0.95rem;
}

.mh-taglist {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.mh-tag {
    font-size: 0.72rem;
    border: 1px solid color-mix(in oklab, var(--mh-teal) 22%, white);
    color: var(--mh-teal);
    background: color-mix(in oklab, var(--mh-teal) 10%, white);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

/* Decorative section divider */
.mh-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, #0000, color-mix(in oklab, var(--mh-teal) 18%, white), #0000);
    margin: 2rem 0 0;
}

@media (max-width: 991.98px) {
    .mh-filter-label {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

        .mh-filter-label.mh-border {
            border-top: 1px solid var(--wash-bd);
            padding-top: 1rem;
            margin-top: 0.5rem;
        }
}

@media (max-width: 575.98px) {
    .mh-articles {
        padding-bottom: 3.75rem;
    }
}

.mh-pager-wrap {
    padding: 3rem 0 1.6rem;
}

.mh-pager-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

/* Right: number buttons */
.mh-pager-nav {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

.mh-page-btn {
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.65rem;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--mh-teal) 22%, white);
    background: #fff;
    color: var(--mh-ink-70);
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
    box-shadow: 0 0.7rem 1.4rem -1rem rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

    .mh-page-btn:hover {
        transform: translateY(-1px);
        border-color: var(--mh-teal-strong);
        box-shadow: 0 1rem 2rem -1.1rem rgba(0, 0, 0, 0.22);
    }

    /* current page */
    .mh-page-btn.is-current {
        background: var(--mh-teal-strong);
        color: #fff;
        border-color: var(--mh-teal-strong);
        box-shadow: 0 1.1rem 2.3rem -1.1rem color-mix(in oklab, var(--mh-teal) 55%, transparent);
        font-weight: 700;
    }

    /* prev / next */
    .mh-page-btn.is-arrow {
        padding: 0 0.85rem;
        border-style: dashed;
        font-size: 0.84rem;
    }

        .mh-page-btn.is-arrow span {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }

@media (max-width: 575.98px) {
    .mh-pager-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mh-pager-nav {
        flex-wrap: wrap;
    }
}

/* Shell / base spacing under nav cards */
.mh-article-shell {
    background: radial-gradient(1200px 340px at 8% -5%, var(--mh-sakura-soft) 0, transparent 60%), radial-gradient(1100px 320px at 95% -10%, color-mix(in oklab, var(--mh-teal) 18%, white) 0, transparent 60%), linear-gradient(180deg, #fff, var(--mh-beige-soft));
    padding: 2.5rem 0 3rem;
}

@media (max-width: 575.98px) {
    .mh-article-shell {
        padding-top: 2rem;
    }
}

/* Breadcrumb */
.mh-article-breadcrumb {
    font-size: 0.82rem;
    color: var(--mh-ink-50);
    margin-bottom: 2rem;
}

    .mh-article-breadcrumb a {
        color: var(--mh-ink-50);
        text-decoration: none;
    }

        .mh-article-breadcrumb a:hover {
            text-decoration: underline;
        }

/* Hero */
.mh-article-hero {
    margin-top: 0.75rem;
}

.mh-article-hero-title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.1vw, 2.35rem);
    line-height: 1.2;
    color: var(--mh-ink);
    margin-top: 0.7rem;
    margin-bottom: 0.5rem;
}

.mh-article-hero-lead {
    font-size: 0.98rem;
    color: var(--mh-ink-70);
    max-width: 70rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.mh-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--mh-ink-50);
}

    .mh-article-meta span {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }

    .mh-article-meta svg {
        width: 14px;
        height: 14px;
    }

/* Hero image */
.mh-article-hero-media {
    margin-top: 1.5rem;
}

.mh-article-hero-figure {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 0% 0%, color-mix(in oklab, var(--mh-sakura) 22%, transparent) 0, transparent 55%), radial-gradient(circle at 100% 100%, color-mix(in oklab, var(--mh-teal) 18%, transparent) 0, transparent 55%);
}

    .mh-article-hero-figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(1.04);
    }

@media (max-width: 767.98px) {
    .mh-article-hero-media {
        margin-top: 0;
    }

    .mh-article-hero-figure {
        border-radius: 0;
    }
}

/* 3ポイント */
.mh-article-points {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1.1rem;
    border: 1px solid color-mix(in oklab, var(--mh-beige) 50%, white);
    box-shadow: 0 1.2rem 2.2rem -1.1rem rgba(0, 0, 0, 0.12);
    padding: 1rem 1.2rem 1.1rem;
}

.mh-article-points-title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.96rem;
    color: var(--mh-ink);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

    .mh-article-points-title span.badge {
        background-color: var(--mh-teal-soft);
        color: #fff;
        border-radius: 999px;
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

.mh-article-pointlist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--mh-ink-70);
}

    .mh-article-pointlist li + li {
        margin-top: 0.35rem;
    }

.mh-article-pointlabel {
    font-weight: 700;
    margin-right: 0.25rem;
}

/* Layout: main + aside */
.mh-article-main {
    margin-top: 2.3rem;
}

.mh-article-body {
    font-size: 0.98rem;
    line-height: 1.9;
    color: var(--mh-ink-70);
}

    .mh-article-body h2 {
        font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
        font-weight: 700;
        font-size: 1.18rem;
        margin-top: 1.8rem;
        margin-bottom: 0.7rem;
        color: var(--mh-ink);
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .mh-article-body h3 {
        font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
        font-weight: 700;
        font-size: 1rem;
        margin-top: 1.4rem;
        margin-bottom: 0.5rem;
        color: var(--mh-ink);
    }

    .mh-article-body p {
        margin-bottom: 0.9rem;
    }

    .mh-article-body figure {
        margin: 1.3rem 0;
    }

        .mh-article-body figure img {
            border-radius: 1rem;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

    .mh-article-body figcaption {
        font-size: 0.78rem;
        color: var(--mh-ink-50);
        margin-top: 0.3rem;
    }

/* Tip / point box inside body */
.mh-article-tip {
    margin: 1.5rem 0;
    padding: 0.75rem 0.9rem;
    border-radius: 0.9rem;
    background: color-mix(in oklab, var(--mh-teal) 8%, white);
    border: 1px dashed color-mix(in oklab, var(--mh-teal) 35%, white);
    font-size: 0.9rem;
}

.mh-article-tip-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--mh-teal-strong);
    margin-bottom: 0.25rem;
}

/* Info / access card */
.mh-article-info-card {
    margin-top: 2.1rem;
    background-color: #fff;
    border-radius: 1.1rem;
    border: 1px solid color-mix(in oklab, var(--mh-teal) 18%, white);
    box-shadow: 0 1.2rem 2.2rem -1.1rem rgba(0, 0, 0, 0.12);
    padding: 1.1rem 1.2rem 1.2rem;
}

.mh-article-info-title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--mh-ink);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

    .mh-article-info-title span.badge {
        font-size: 0.7rem;
        border-radius: 999px;
        background-color: var(--mh-teal-soft);
        color: #fff;
    }

.mh-article-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}

    .mh-article-info-table th,
    .mh-article-info-table td {
        padding: 0.35rem 0;
        vertical-align: top;
    }

    .mh-article-info-table th {
        width: 5rem;
        font-weight: 700;
        color: var(--mh-ink-70);
    }

    .mh-article-info-table td {
        color: var(--mh-ink-70);
    }

    .mh-article-info-table a {
        color: var(--mh-teal);
        text-decoration: none;
    }

        .mh-article-info-table a:hover {
            text-decoration: underline;
        }

.mh-article-map {
    margin-top: 0.75rem;
    border-radius: 0.9rem;
    overflow: hidden;
    background-color: color-mix(in oklab, var(--mh-teal) 10%, white);
}

/* Aside */
.mh-article-aside {
    position: relative;
}

.mh-aside-card {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 1rem;
    border: 1px solid color-mix(in oklab, var(--mh-teal) 14%, white);
    padding: 0.9rem 0.95rem;
    box-shadow: 0 1.1rem 2.1rem -1.1rem rgba(0, 0, 0, 0.16);
    font-size: 0.86rem;
    color: var(--mh-ink-70);
}

    .mh-aside-card + .mh-aside-card {
        margin-top: 1rem;
    }

.mh-aside-title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--mh-ink);
    margin-bottom: 0.4rem;
}

.mh-aside-points {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .mh-aside-points li + li {
        margin-top: 0.3rem;
    }

.mh-aside-label {
    font-size: 0.75rem;
    color: var(--mh-ink-50);
    margin-top: 0.3rem;
}

.mh-aside-logo {
    display: block;
    width: 80%;
    max-width: 420px;
    margin: 0 auto;
}

.mh-aside-related-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .mh-aside-related-list li + li {
        margin-top: 0.35rem;
    }

    .mh-aside-related-list a {
        font-size: 0.86rem;
        color: var(--mh-ink-70);
        text-decoration: none;
    }

        .mh-aside-related-list a:hover {
            text-decoration: underline;
        }

@media (min-width: 992px) {
    .mh-aside-sticky {
        position: sticky;
        top: 10.5rem;
    }
}

/* Tags & share */
.mh-article-tags-share {
    margin-top: 2.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid color-mix(in oklab, var(--mh-ink) 12%, white);
}

.mh-taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding-left: 0;
    list-style: none;
}

    .mh-taglist li a {
        display: inline-flex;
        align-items: center;
        padding: 0.26rem 0.7rem;
        border-radius: 999px;
        border: 1px solid color-mix(in oklab, var(--mh-teal) 22%, white);
        background-color: color-mix(in oklab, var(--mh-teal) 9%, white);
        color: var(--mh-teal);
        text-decoration: none;
        font-size: 0.78rem;
    }

.mh-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-end;
}

.mh-share-btn {
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    font-size: 0.78rem;
    border: 1px solid color-mix(in oklab, var(--mh-ink) 15%, white);
    background-color: #fff;
    color: var(--mh-ink-70);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.mh-article-related {
    padding: 3rem 0 3.5rem;
}

/* Swiper container */
.mh-article-related-swiper.swiper {
    padding: 0 1.2rem 2.4rem;
}

/* Cards (can reuse from previous design) */
.mh-related-card {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 0.9rem;
    overflow: hidden;
    text-decoration: none;
    color: var(--mh-ink);
    display: block;
    border: 1px solid color-mix(in oklab, var(--mh-teal) 14%, white);
    box-shadow: 0 0.1rem 0.2rem -0.1rem rgba(0, 0, 0, 0.18);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    height: 100%;
}

    .mh-related-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0.5rem 0.8rem -0.2rem rgba(0, 0, 0, 0.22);
    }

.mh-related-thumb {
    aspect-ratio: 16 / 10;
    background-color: #f5f7f6;
}

    .mh-related-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.mh-related-body {
    padding: 0.7rem 0.8rem 0.9rem;
    font-size: 0.88rem;
    min-height: 100px;
}

.mh-related-meta {
    font-size: 0.75rem;
    color: color-mix(in oklab, var(--mh-ink) 50%, white);
    margin-bottom: 0.2rem;
}

.mh-related-title {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--mh-ink);
}

/* Prev / next buttons */
.mh-article-related-prev,
.mh-article-related-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--mh-teal) 16%, white);
    background: rgba(255, 255, 255, 0.96);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
}

    .mh-article-related-prev svg,
    .mh-article-related-next svg {
        width: 20px;
        height: 20px;
        color: var(--mh-teal);
    }

.mh-article-related-prev {
    left: 0;
}

.mh-article-related-next {
    right: 0;
}

@media (max-width: 991.98px) {
    .mh-article-related-prev,
    .mh-article-related-next {
        display: none;
    }
}

/* Pagination dots */
.mh-article-related-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

    .mh-article-related-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.7);
        opacity: 1;
        border: 1px solid color-mix(in oklab, var(--mh-teal) 18%, white);
    }

    .mh-article-related-pagination .swiper-pagination-bullet-active {
        background: var(--mh-teal);
    }

/* Pagination (small dots) */
.news-pagination {
    position: absolute;
    bottom: 3.5rem !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
}

    .news-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 4px !important;
        background: rgba(0, 0, 0, 0.25);
        opacity: 1;
    }

    .news-pagination .swiper-pagination-bullet-active {
        background: var(--mh-teal, #0f7c82);
    }

@media (max-width: 991.98px) {
    .mh-articles {
        padding: 2.25rem 0 4rem;
    }

    .news-pagination {
        bottom: 4.25rem !important;
    }
}

@media (min-width: 992px) {
    .news-slider {
        padding: 0;
    }

        .news-slider .swiper-wrapper {
            flex-wrap: wrap;
            gap: 16px;
            justify-content: space-between;
        }

            .news-slider .swiper-wrapper[style] {
                height: auto !important;
            }

        .news-slider .swiper-slide {
            width: calc(33.333333% - 16px) !important; /* matches your layout */
            margin-right: 0 !important;
            align-self: stretch;
        }

    .news-pagination {
        display: none;
    }
}


/* Layout Fixes - 01/08/2026 */

.mh-cat-card {
    height: 100%;
}

.mh-thumb {
    aspect-ratio: 16 / 9;
}

.mh-article-main a {
    word-break: break-all;
}

.mh-article-body .img-fluid:not(.alignright),
.mh-article-body .img-fluid:not(.alignleft) {
    width: 100%;
    border-radius: 1rem;
}

.mh-article-hero a,
.mh-article-body a,
.mh-storeinfo a,
a.store-link {
    color: var(--mh-teal);
}

.mh-article-body h3,
.mh-article-body h4 {
    font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
    color: var(--mh-ink);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mh-article-body h3 {
    font-size: 1.5rem;
}

.mh-article-body h4 {
    font-size: 1.3rem;
}

.mh-article-body .instagram-media {
    max-width: 100% !important;
}

.mh-article-shell .container-xxl {
    max-width: 1140px;
}

.embed-responsive {
    position: relative;
    width: 100%;
}

    .embed-responsive::before {
        display: block;
        padding-top: var(--bs-aspect-ratio);
        content: "";
    }

.embed-responsive-16by9 {
    --bs-aspect-ratio: 56.25%;
}

.embed-responsive > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mh-article-body iframe[src*="youtube.com"],
.mh-article-body iframe[src*="youtu.be"] {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

.mh-cat-hero {
    padding-bottom: 3rem;
}

.mh-cat-slider.swiper {
    margin: 3rem 0 1rem;
}

.mh-aside-points li {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
}

@media (min-width: 992px) {
    .mh-aside-sticky {
        position: static;
        top: auto;
    }
}

.mh-filterbar-clear {
    font-size: 0.85rem;
    padding: 3px 15px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--mh-ink);
    border: 1px solid transparent;
    transition: transform 0.18s ease, filter 0.18s ease, background-color 0.18s ease, color 0.18 ease;
}

    .mh-filterbar-clear:hover,
    .mh-filterbar-clear:focus {
        color: var(--mh-teal);
        transform: translateY(-1px);
        filter: saturate(110%);
        background: var(--chip-bg);
        border: 1px solid var(--chip-bd);
    }

    .mh-filterbar-clear span {
        display: inline-grid;
        place-items: center;
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background-color: rgba(0, 0, 0, 0.05);
        line-height: 1;
    }

.mh-cat-hero[data-category="eat"] {
    background-image: linear-gradient(145deg, rgba(207, 238, 239, 0.7), rgba(254, 233, 216, 0.9)), url(https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-Eat.png);
}

.mh-cat-hero[data-category="shop"] {
    background-image: linear-gradient(145deg, rgba(255, 186, 154, 0.4), rgba(248, 244, 237, 0.95)), url(https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-Shop.jpg);
}

.mh-cat-hero[data-category="stay"] {
    background-image: linear-gradient(145deg, rgba(14, 42, 66, 0.15), rgba(241, 248, 249, 0.95)), url(https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-Stay.jpg);
}

.mh-cat-hero[data-category="play"] {
    background-image: linear-gradient(145deg, rgba(248, 244, 237, 1), rgba(207, 238, 239, 0.35)), url(https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-Play.jpg);
}

.mh-cat-hero[data-category="basics"] {
    background-image: linear-gradient(145deg, rgba(14, 42, 66, 0.15), rgba(241, 248, 249, 0.95)), url(https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-Hero.jpg);
}

.mh-cat-hero[data-category="news"] {
    background-image: linear-gradient(145deg, rgba(207, 238, 239, 0.7), rgba(254, 233, 216, 0.9)), url(https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-Hero.jpg);
}

/* Updates - 01/12/2026 */

@media (min-width: 1400px) {
    .mh-article-shell .container-xxl {
        max-width: 1320px;
    }
}

.mh-navy {
    background-image: linear-gradient(145deg, rgba(207, 238, 239, 0.7), rgba(254, 233, 216, 0.9)), url(../img/bkgrd-editorial.jpg);
}

a.text-link {
    color: var(--mh-teal);
}

#faqAccordion {
    border-radius: 0;
}

    #faqAccordion .accordion-item {
        border-radius: 1rem;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    #faqAccordion .accordion-button {
        border-radius: 0;
    }

        #faqAccordion .accordion-button:not(.collapsed) {
            background-color: var(--mh-teal-soft);
        }

    #faqAccordion .accordion-button {
        font-weight: 700;
    }

/* Updates - 01/19/2026 */

.mh-aside-sticky > .mh-aside-card {
    margin-top: 1rem;
}

.mh-aside-related-list {
    padding-left: 1.5rem;
    padding-top: .25rem;
}

    .mh-aside-related-list li {
        list-style-type: square;
        margin-bottom: .5rem;
    }

        .mh-aside-related-list li a {
            color: var(--mh-ink-70);
            text-decoration: underline;
        }

            .mh-aside-related-list li a:hover,
            .mh-aside-related-list li a:focus {
                color: var(--mh-teal);
            }

.weather-day {
    padding: .7rem 0;
}

    .weather-day .weather-icon {
        height: 24px;
    }

        .weather-day .weather-icon img {
            max-height: 100%;
            width: auto;
        }

    .weather-day.hero .weather-icon {
        width: 55px;
        height: auto;
    }

.mh-article-body .bt-orange,
.mh-article-body .bt-samp33 {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
}

.mh-article-body .bt-orange {
    background: var(--mh-sunset);
}

.mh-article-body .bt-samp33 {
    background: var(--mh-teal);
}

.mh-article-body .bt-orange:hover,
.mh-article-body .bt-orange:focus {
    opacity: 0.9;
}

:root {
    --mh-anchor-offset: 75px;
}

@media (min-width: 768px) {
    :root {
        --mh-anchor-offset: 160px;
    }
}

html {
    scroll-padding-top: var(--mh-anchor-offset);
    scroll-behavior: smooth;
}

.mh-article-body .img-fluid[src*="logo"] {
    width: auto !important;
    max-width: 100%;
}

/* Updates - 01/26/2026 */

.mh-cat-hero[data-category="basic"] {
    background-image: linear-gradient(145deg, rgba(14, 42, 66, 0.15), rgba(241, 248, 249, 0.95)), url(https://myhawaii.blob.core.windows.net/media/myhawaii-media/templates/bkgrd-Hero.jpg);
}

.tag-pr:not(.fs-banner) {
    position: relative;
}

.tag-pr::after {
    content: "PR";
    position: absolute;
    top: .5rem;
    right: .5rem;
    padding: 0.25em 0.5em;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 1rem;
    display: block;
    background-color: rgba(255, 255, 255, .5);
    line-height: 1;
    color: rgba(0, 0, 0, .5);
}

.editorial-section .section-nav-cards + h1 {
    font-weight: 700;
    transform: translateY(1rem);
    --rainbow: linear-gradient(90deg, var(--mh-coral, #e95f5c) 0%, var(--mh-sakura, #f4a7bf) 18%, var(--mh-plumeria, #f4d06f) 36%, var(--mh-teal, #0f7c82) 54%, color-mix(in oklab, var(--mh-teal, #0f7c82) 60%, var(--mh-navy, #223347)) 72%, var(--mh-sunset, #e4572e) 90%, var(--mh-coral, #e95f5c) 100%);
    background: var(--rainbow);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
    background-size: 50%;
    animation: rainbow-shift 8s linear infinite;
}

.editorial-slider .editorial-panel,
.mh-cat-slider .mh-cat-card-body {
    min-height: 300px;
    padding-bottom: 50px;
}

.editorial-slider h3.editorial-title,
.mh-cat-slider h3.mh-cat-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.editorial-slider p.mh-excerpt,
.mh-cat-slider p.text-secondary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .editorial-section .section-nav-cards + h1 {
        transform: translateY(0);
    }

    .editorial-slider p.mh-excerpt,
    .mh-cat-slider p.text-secondary {
        -webkit-line-clamp: 6;
    }
}

@media (max-width: 575.98px) {
    .editorial-slider .editorial-panel,
    .mh-cat-slider .mh-cat-card-body {
        min-height: 260px;
    }

    .editorial-slider p.mh-excerpt,
    .mh-cat-slider p.text-secondary {
        -webkit-line-clamp: 4;
    }
}

/* Home Widget Updates - 01/27/2026 */

.news-next, .news-prev,
.widgets-next, .widgets-prev,
.tiktok-next, .tiktok-prev {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    color: var(--mh-teal, #0f7c82);
    box-shadow: 0 10px 28px -12px rgba(0, 0, 0, 0.28);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    z-index: 1;
    display: none;
}

.news-next {
    right: .25rem;
    transform: translateY(-100%);
}

.news-prev {
    left: .25rem;
    transform: translateY(-100%);
}

.widgets-next {
    right: .25rem;
    transform: translateY(-100%);
}

.widgets-prev {
    left: .25rem;
    transform: translateY(-100%);
}

.tiktok-next {
    right: -1.25rem;
}

.tiktok-prev {
    left: -1.25rem;
}

@media (max-width: 991.98px) {
    .news-next, .news-prev,
    .widgets-next, .widgets-prev,
    .tiktok-next, .tiktok-prev {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .widgets-slider {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .news-next, .news-prev,
    .widgets-next, .widgets-prev,
    .tiktok-next, .tiktok-prev {
        width: 40px;
        height: 40px;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
    }
}

@media (max-width: 575.98px) {
    .section-widgets,
    #tiktok-section {
        overflow: hidden;
    }

    .widgets-slider,
    .tiktok-slider {
        overflow: visible;
    }
}

/* Home Latest News  - 01/27/2026 */

.editorial-section + .mh-articles .mh-body {
    min-height: 235px;
}

.editorial-section + .mh-articles .mh-title-sm {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.editorial-section + .mh-articles p.mh-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

/* Hero Section Fixes - 01/29/2026 */

.mh-cat-slider .swiper-slide:not(.swiper-slide-active) .mh-cat-card-body {
    opacity: 0;
}

.mh-cat-prev, .mh-cat-next {
    top: 50%;
    transform: translateY(-25%);
}

@media (min-width: 1600px) {
    .editorial-section,
    .mh-cat-hero {
        overflow-x: hidden;
    }

    .editorial-slider,
    .mh-cat-slider {
        max-width: 1600px;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: visible;
    }
}

@media (min-width: 2180px) {
    .editorial-slider .swiper-slide.swiper-slide-prev,
    .mh-cat-hero .swiper-slide.swiper-slide-prev {
        transform: scale(0.8) translateX(-3rem);
    }

    .editorial-slider .swiper-slide.swiper-slide-next,
    .mh-cat-hero .swiper-slide.swiper-slide-next {
        transform: scale(0.8) translateX(3rem);
    }

    .editorial-prev,
    .mh-cat-prev {
        left: 24%;
    }

    .editorial-next,
    .mh-cat-next {
        right: 24%;
    }

    .editorial-slider .swiper-slide .editorial-panel,
    .mh-cat-slider .swiper-slide .mh-cat-card-body {
        opacity: 1 !important;
    }
}

/* Back to Top - 02/02/2026 */

.mh-backtotop {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1030;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: .55rem .8rem;
    border-radius: 999px;
    border: 1px solid rgba(14, 42, 66, .18);
    background: rgba(255, 255, 255, .85);
    color: color-mix(in oklab, var(--mh-ink) 45%, white);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.mh-backtotop svg {
    opacity: .75;
    transform: scale(.9);
}

.mh-backtotop.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mh-backtotop:hover {
    background: rgba(255, 255, 255, .95);
}

.mh-backtotop:focus-visible {
    outline: 2px solid var(--mh-teal);
    outline-offset: 2px;
}

.mh-backtotop__label {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .02em;
}

/* FAQs Mobile - 02/04/2026 */

#faqAccordionMobile {
    border-radius: 0;
}

#faqAccordionMobile .accordion-item {
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

#faqAccordionMobile .accordion-button {
    border-radius: 0;
}

#faqAccordionMobile .accordion-button:not(.collapsed) {
    background-color: var(--mh-teal-soft);
}

#faqAccordionMobile .accordion-button {
    font-weight: 700;
}

/* Fixes - 02/10/2026 */

.editorial-slider .swiper-slide {
    list-style-type: none !important;
}

@media (min-width: 768px) {
    .editorial-section,
    .mh-cat-hero {
        min-height: 230px;
    }
}