/* Bili Blog – streaming browse + article */

body.blog-page {
    overflow: auto;
    min-height: 100%;
    height: auto;
    background: #000;
}

body.blog-page--stream {
    overflow-x: hidden;
}

.blog-nav {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(217, 210, 130, 0.15);
}

.blog-nav--stream {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
    border-bottom: none;
    padding: 1.35rem clamp(1rem, 4vw, 2.5rem);
}

.blog-nav__logo {
    display: block;
}

.blog-nav__logo img {
    height: 32px;
    width: auto;
    display: block;
}

.blog-nav__link {
    color: rgba(245, 245, 245, 0.9);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
}

.blog-nav__link:hover,
.blog-nav__link--active {
    color: #D9D282;
}

.blog-nav__link--active {
    font-weight: 700;
}

/* ----- Stream layout ----- */

.blog-stream {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}

.blog-empty-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
}

.blog-empty-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #f5f5f5;
    margin: 0 0 0.75rem;
}

.blog-empty-hero p {
    color: rgba(245, 245, 245, 0.65);
    margin: 0;
    max-width: 28rem;
}

/* Hero – cover right, fade left, copy left */

.blog-hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: end;
    overflow: hidden;
    isolation: isolate;
}

.blog-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0a0a0a;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.04);
    animation: blogHeroIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.blog-hero--no-cover .blog-hero__media {
    background: #050505;
    overflow: hidden;
}

.blog-hero--no-cover .blog-hero__media .blog-ph--hero {
    position: absolute;
    inset: 0;
}

/* ----- Cover placeholders (no image) ----- */

.blog-ph {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 70% at 78% 28%, var(--ph-glow, rgba(217, 210, 130, 0.28)), transparent 55%),
        radial-gradient(ellipse 55% 50% at 18% 80%, var(--ph-accent, rgba(120, 140, 180, 0.14)), transparent 50%),
        linear-gradient(145deg, var(--ph-a, #1a1812) 0%, var(--ph-b, #070707) 48%, var(--ph-c, #12100c) 100%);
}

.blog-ph__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.75;
    pointer-events: none;
    animation: blogPhFloat 12s ease-in-out infinite;
}

.blog-ph__orb--a {
    width: 55%;
    height: 70%;
    top: -18%;
    right: -8%;
    background: var(--ph-glow, rgba(217, 210, 130, 0.4));
}

.blog-ph__orb--b {
    width: 42%;
    height: 48%;
    bottom: -12%;
    left: -10%;
    background: var(--ph-accent, rgba(90, 110, 160, 0.35));
    animation-delay: -4s;
}

.blog-ph__orb--c {
    width: 28%;
    height: 32%;
    top: 38%;
    left: 42%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(20px);
    animation-delay: -7s;
}

.blog-ph__grain {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 3px);
    mix-blend-mode: overlay;
}

.blog-ph__ring {
    position: absolute;
    top: 50%;
    left: 58%;
    width: min(48vw, 380px);
    height: min(48vw, 380px);
    transform: translate(-30%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(217, 210, 130, 0.22);
    box-shadow:
        inset 0 0 60px rgba(217, 210, 130, 0.06),
        0 0 80px rgba(217, 210, 130, 0.08);
    pointer-events: none;
}

.blog-ph__initial {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-20%, -58%);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(5rem, 14vw, 9rem);
    line-height: 1;
    color: rgba(245, 245, 245, 0.1);
    letter-spacing: -0.04em;
    user-select: none;
    text-shadow: 0 0 40px rgba(217, 210, 130, 0.12);
}

.blog-ph__title,
.blog-ph__watermark {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.25;
    color: rgba(247, 247, 242, 0.92);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.blog-ph__watermark {
    left: auto;
    right: 8%;
    bottom: auto;
    top: 50%;
    width: min(46%, 22rem);
    transform: translateY(-42%);
    font-size: clamp(1.5rem, 3.2vw, 2.6rem);
    -webkit-line-clamp: 4;
    text-align: right;
    color: rgba(247, 247, 242, 0.88);
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.blog-ph--hero .blog-ph__initial {
    left: 62%;
    font-size: clamp(8rem, 22vw, 16rem);
    color: rgba(245, 245, 245, 0.07);
}

.blog-ph--article .blog-ph__initial {
    left: 50%;
    transform: translate(-50%, -62%);
    font-size: clamp(6rem, 18vw, 11rem);
}

.blog-ph--article .blog-ph__watermark {
    left: 1.5rem;
    right: 1.5rem;
    top: auto;
    bottom: 1.5rem;
    width: auto;
    transform: none;
    text-align: left;
    font-size: clamp(1.25rem, 3vw, 1.85rem);
    -webkit-line-clamp: 2;
}

.blog-article__cover--ph {
    margin: 0;
    position: relative;
}

.blog-article__cover--ph .blog-ph {
    position: absolute;
    inset: 0;
}

/* Category-tinted placeholders */
[data-cat="saving"] {
    --ph-a: #142820;
    --ph-b: #060806;
    --ph-c: #1a2e24;
    --ph-glow: rgba(160, 200, 150, 0.32);
    --ph-accent: rgba(217, 210, 130, 0.22);
}
[data-cat="budgeting"] {
    --ph-a: #161c28;
    --ph-b: #06070a;
    --ph-c: #1a2030;
    --ph-glow: rgba(140, 170, 220, 0.3);
    --ph-accent: rgba(217, 210, 130, 0.18);
}
[data-cat="investing"] {
    --ph-a: #1c1628;
    --ph-b: #07060a;
    --ph-c: #241a30;
    --ph-glow: rgba(180, 150, 220, 0.3);
    --ph-accent: rgba(217, 210, 130, 0.2);
}
[data-cat="money_mindset"] {
    --ph-a: #221a12;
    --ph-b: #080705;
    --ph-c: #2a2014;
    --ph-glow: rgba(217, 210, 130, 0.38);
    --ph-accent: rgba(200, 120, 80, 0.18);
}
[data-cat="money_motivation"] {
    --ph-a: #241618;
    --ph-b: #080506;
    --ph-c: #2c1a1e;
    --ph-glow: rgba(220, 160, 150, 0.3);
    --ph-accent: rgba(217, 210, 130, 0.22);
}
[data-cat="about_bili"] {
    --ph-a: #1e1c12;
    --ph-b: #070705;
    --ph-c: #2a2614;
    --ph-glow: rgba(217, 210, 130, 0.45);
    --ph-accent: rgba(255, 255, 255, 0.1);
}

@keyframes blogPhFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-3%, 4%) scale(1.06); }
}

.blog-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            #000 0%,
            rgba(0, 0, 0, 0.96) 18%,
            rgba(0, 0, 0, 0.78) 38%,
            rgba(0, 0, 0, 0.35) 58%,
            rgba(0, 0, 0, 0.12) 72%,
            transparent 88%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.55) 0%,
            transparent 28%,
            transparent 62%,
            rgba(0, 0, 0, 0.92) 100%);
}

.blog-hero__content {
    position: relative;
    z-index: 2;
    grid-column: 1;
    max-width: 36rem;
    padding: clamp(5.5rem, 12vh, 7rem) clamp(1.25rem, 5vw, 3.5rem) clamp(2.5rem, 6vh, 4rem);
    animation: blogHeroCopy 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.blog-hero__eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D9D282;
    margin: 0 0 1rem;
}

.blog-hero__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(2.15rem, 5.2vw, 3.6rem);
    line-height: 1.12;
    color: #f7f7f2;
    margin: 0 0 1rem;
    text-wrap: balance;
}

.blog-hero__desc {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.55;
    color: rgba(245, 245, 245, 0.78);
    margin: 0 0 1.75rem;
    max-width: 32rem;
}

.blog-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.45rem;
    border-radius: 999px;
    background: #D9D282;
    color: #111;
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 30px rgba(217, 210, 130, 0.22);
}

.blog-hero__cta:hover {
    background: #e5df9a;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(217, 210, 130, 0.3);
}

.blog-hero__cta:active {
    transform: translateY(0);
}

/* Category rows */

.blog-rows {
    position: relative;
    z-index: 2;
    margin-top: -1.5rem;
    padding: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 3vw, 2.75rem);
}

.blog-row {
    padding: 0 clamp(0.5rem, 2vw, 1.5rem);
}

.blog-row__head {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0 clamp(0.75rem, 2vw, 1.5rem) 0.85rem;
}

.blog-row__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 600;
    color: #f5f5f5;
    margin: 0;
}

.blog-row__count {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: rgba(245, 245, 245, 0.45);
    letter-spacing: 0.04em;
}

.blog-row__viewport {
    position: relative;
}

.blog-row__track {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.35rem clamp(0.75rem, 2vw, 1.5rem) 1.1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.blog-row__track::-webkit-scrollbar {
    display: none;
}

.blog-row__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(217, 210, 130, 0.35);
    background: rgba(0, 0, 0, 0.72);
    color: #D9D282;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.blog-row__nav:hover {
    background: rgba(20, 20, 20, 0.92);
    border-color: rgba(217, 210, 130, 0.65);
}

.blog-row__nav--prev {
    left: 0.35rem;
}

.blog-row__nav--next {
    right: 0.35rem;
}

.blog-row__nav[hidden] {
    display: none;
}

/* Tiles */

.blog-tile {
    flex: 0 0 auto;
    width: min(72vw, 280px);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-tile:hover {
    transform: translateY(-6px);
}

.blog-tile:hover .blog-tile__poster {
    border-color: rgba(217, 210, 130, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.blog-tile:hover .blog-tile__title {
    color: #D9D282;
}

.blog-tile--enter {
    animation: blogTileIn 0.45s ease both;
}

.blog-tile__poster {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(217, 210, 130, 0.16), transparent 50%),
        #151515;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-tile__poster--empty {
    background: #0a0a0a;
}

.blog-tile__poster--empty .blog-ph {
    position: absolute;
    inset: 0;
}

.blog-tile__poster--empty .blog-ph__initial {
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-size: clamp(3.5rem, 18vw, 5.5rem);
    color: rgba(245, 245, 245, 0.12);
}

.blog-tile__poster--empty .blog-ph__title {
    font-size: 0.95rem;
}

.blog-tile__poster-fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
    pointer-events: none;
}

.blog-tile__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    color: rgba(245, 245, 245, 0.5);
}

.blog-tile__category {
    color: #D9D282;
    text-transform: uppercase;
}

.blog-tile__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.25;
    color: #f5f5f5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.blog-tile__excerpt {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(245, 245, 245, 0.62);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-ai-disclaimer--stream {
    margin: 2.5rem clamp(1.25rem, 4vw, 3rem) 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(217, 210, 130, 0.15);
    text-align: center;
}

@keyframes blogHeroIn {
    from { opacity: 0; transform: scale(1.08); }
    to { opacity: 1; transform: scale(1.04); }
}

@keyframes blogHeroCopy {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blogTileIn {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ----- Classic / article layout ----- */

.blog-main {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.blog-main--post {
    max-width: 760px;
    padding-top: 5.5rem;
}

.blog-article {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(217, 210, 130, 0.15);
    border-radius: 16px;
    padding: 0 0 3rem;
    overflow: hidden;
}

.blog-article__cover {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0a0a;
}

.blog-article__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: blogHeroIn 1s ease both;
}

.blog-article__cover-fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(180deg, transparent, rgba(18, 18, 18, 0.95));
    pointer-events: none;
}

.blog-article__header {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem 0;
}

.blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}

.blog-article__category {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #D9D282;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: rgba(217, 210, 130, 0.12);
    border: 1px solid rgba(217, 210, 130, 0.25);
    transition: background 0.2s ease;
}

.blog-article__category:hover {
    background: rgba(217, 210, 130, 0.2);
}

.blog-article__date {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.55);
    letter-spacing: 0.5px;
}

.blog-article__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 600;
    color: #f5f5f5;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.blog-article__description {
    color: rgba(245, 245, 245, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.blog-article__body {
    color: rgba(245, 245, 245, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 0 2rem;
}

.blog-article__body p {
    margin: 0 0 1.25rem;
}

.blog-article__body p:last-child {
    margin-bottom: 0;
}

.blog-article__body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #f5f5f5;
    margin: 2rem 0 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(217, 210, 130, 0.25);
}

.blog-article__body h3 {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin: 1.5rem 0 0.75rem;
}

.blog-article__body ul,
.blog-article__body ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}

.blog-article__body li {
    margin-bottom: 0.5rem;
}

.blog-article__body strong {
    color: #f5f5f5;
}

.blog-article__body a {
    color: #D9D282;
    text-decoration: none;
}

.blog-article__body a:hover {
    text-decoration: underline;
}

.blog-article__disclaimer {
    margin: 2.5rem 2rem 0;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(217, 210, 130, 0.2);
}

.blog-article__disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.75);
    line-height: 1.6;
}

.blog-article__back {
    margin: 2rem 2rem 0;
}

.blog-article__back a {
    color: #D9D282;
    text-decoration: none;
    font-size: 0.95rem;
}

.blog-article__back a:hover {
    text-decoration: underline;
}

.blog-ai-disclaimer {
    margin-top: 3rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(217, 210, 130, 0.2);
}

.blog-ai-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.5;
}

.blog-footer__terms {
    margin-top: 0.75rem !important;
}

.blog-footer__terms a {
    color: #D9D282;
    text-decoration: none;
}

.blog-footer__terms a:hover {
    text-decoration: underline;
}

/* ----- Responsive ----- */

@media (max-width: 900px) {
    .blog-hero {
        min-height: min(88vh, 720px);
        grid-template-columns: 1fr;
        align-items: end;
    }

    .blog-hero__media {
        background-position: center top;
    }

    .blog-hero__scrim {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, 0.45) 0%,
                rgba(0, 0, 0, 0.2) 28%,
                rgba(0, 0, 0, 0.55) 55%,
                rgba(0, 0, 0, 0.92) 78%,
                #000 100%),
            linear-gradient(90deg,
                rgba(0, 0, 0, 0.55) 0%,
                rgba(0, 0, 0, 0.2) 45%,
                transparent 75%);
    }

    .blog-hero__content {
        max-width: none;
        padding-bottom: 2rem;
    }

    .blog-row__nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .blog-nav--stream {
        padding: 1rem 1rem;
    }

    .blog-hero__title {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
    }

    .blog-hero__desc {
        font-size: 0.98rem;
        margin-bottom: 1.35rem;
    }

    .blog-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .blog-tile {
        width: min(78vw, 260px);
    }

    .blog-main {
        padding: 2rem 1rem 3rem;
    }

    .blog-main--post {
        padding-top: 4.5rem;
    }

    .blog-article__header,
    .blog-article__body,
    .blog-article__disclaimer,
    .blog-article__back {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .blog-article__disclaimer,
    .blog-article__back {
        margin-left: 0;
        margin-right: 0;
    }

    .blog-article__title {
        font-size: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-hero__media,
    .blog-hero__content,
    .blog-tile--enter,
    .blog-article__cover img,
    .blog-tile,
    .blog-hero__cta,
    .blog-ph__orb {
        animation: none !important;
        transition: none !important;
    }

    .blog-row__track {
        scroll-behavior: auto;
    }
}
