/* Box-shadows: from https: //getcssscan.com/css-box-shadow-examples*/

html,
body {
    overflow-x: hidden;
}

.HOME-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(250, 248, 245, 0.96);
    box-shadow: 0 1px 0 rgba(32, 34, 44, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.HOME-nav-shell {
    width: min(100%, 1760px);
    margin: 0 auto;
    padding: 28px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.HOME-nav-brand {
    color: #171717;
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}
.HOME-nav-brand:hover {
    color: #1f3fbf;
    text-decoration: none;
}
.HOME-nav-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.HOME-nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.HOME-nav-link {
    position: relative;
    padding: 6px 10px !important;
    color: #6b6f7a !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 160ms ease;
}
.HOME-nav-link:hover,
.HOME-nav-link:focus {
    color: #1b1d24 !important;
}
.HOME-nav-link-active {
    color: #2a4fd0 !important;
}
.HOME-nav-link-active::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: #2a4fd0;
}
.HOME-nav-dropdown {
    margin-top: 14px;
    padding: 10px;
    min-width: 180px;
    border: 1px solid rgba(123, 131, 154, 0.18);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(18, 25, 38, 0.12);
}
.HOME-nav-dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    color: #313543;
}
.HOME-nav-dropdown-item:hover {
    background: #f3f5fb;
    color: #2a4fd0;
}
.HOME-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.HOME-nav-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 6px 14px;
    min-width: 190px;
    border-radius: 16px;
    background: #f3f0ec;
}
.HOME-nav-search-icon {
    color: #8f95a3;
    font-size: 13px;
    line-height: 1;
}
.HOME-nav-search-input {
    width: 110px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #414655;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    outline: none;
}
.HOME-nav-search-input::placeholder {
    color: #7f8594;
}
.HOME-nav-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(135, 185, 255, 0.85);
    border-radius: 8px;
    background: transparent;
    color: #2a4fd0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}
.HOME-nav-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 28px;
    border-radius: 10px;
    background: #2a4fd0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.HOME-nav-subscribe:hover {
    background: #1f42ba;
    color: #ffffff;
    text-decoration: none;
}
.HOME-nav-toggler {
    border: 0;
    padding: 0;
}
.HOME-nav-toggler:focus {
    outline: none;
    box-shadow: none;
}
.HOME-special-font, .ALL-special-font {
    font-family: 'La Belle Aurore', cursive;
}
/* HOME */
.HOME-title {
    font-size: 4em;
    padding-top: 25px;
}
.HOME-sub-title {
    font-size: 1.5em;
    color: rgb(68, 68, 68);
    margin-left: 5px;
}
@media screen and (min-width: 600px) {
    .HOME-title {
        font-size: 10em;
    }
    .HOME-sub-title {
        font-size: 2.5em;
    }
}
/* Picture_01 from: https: //pixabay.com/photos/people-woman-travel-adventure-trek-2591874/ */
.HOME-img-main{
    --home-fluid-pointer-x: 50%;
    --home-fluid-pointer-y: 42%;
    --home-fluid-sheen-x: 50%;
    --home-fluid-sheen-y: 42%;
    --home-fluid-drift-x: 0px;
    --home-fluid-drift-y: 0px;
    --home-fluid-stretch-x: 1;
    --home-fluid-stretch-y: 1;
    position: relative;
    height: 94vh;
    background-image: url("../home/main_pic.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
}
.HOME-img-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(248, 246, 241, 0.44) 0%, rgba(248, 246, 241, 0.12) 14%, rgba(248, 246, 241, 0) 28%),
        linear-gradient(135deg, rgba(8, 18, 40, 0.16), rgba(8, 18, 40, 0.03) 36%, rgba(255, 255, 255, 0.04) 76%);
    pointer-events: none;
    z-index: 0;
}
.HOME-fluid-glass-defs {
    position: absolute;
    width: 0;
    height: 0;
}
.HOME-fluid-panel {
    --home-fluid-ca: 0.06;
    --home-fluid-thickness: 10;
    --home-fluid-anisotropy: 0.3;
    position: absolute;
    left: var(--home-fluid-pointer-x);
    top: var(--home-fluid-pointer-y);
    width: min(18vw, 220px);
    height: min(18vw, 220px);
    min-width: 160px;
    min-height: 160px;
    border-radius: 50%;
    border: calc(1px + var(--home-fluid-thickness) * 0.1px) solid rgba(255, 255, 255, 0.42);
    background-color: rgba(245, 248, 252, 0.12);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.48),
        inset 0 -12px 28px rgba(60, 78, 104, 0.08),
        0 14px 36px rgba(90, 104, 128, 0.16),
        calc(-16px * var(--home-fluid-ca)) 0 calc(20px * var(--home-fluid-ca)) rgba(255, 118, 118, 0.36),
        calc(16px * var(--home-fluid-ca)) 0 calc(20px * var(--home-fluid-ca)) rgba(92, 230, 255, 0.34);
    backdrop-filter: blur(3px) saturate(118%) brightness(1.03);
    -webkit-backdrop-filter: blur(3px) saturate(118%) brightness(1.03);
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.94);
    transition: opacity 160ms ease, transform 180ms ease, box-shadow 180ms ease;
    will-change: transform, opacity;
}
.HOME-fluid-panel.is-active {
    opacity: 1;
}
.HOME-fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
    filter: url(#home-fluid-glass-distort);
}
.HOME-fluid-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--home-fluid-sheen-x) var(--home-fluid-sheen-y), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.10) 18%, rgba(255, 255, 255, 0.04) 34%, transparent 54%),
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 18%, rgba(255, 255, 255, 0.01) 36%, transparent 54%);
    opacity: 0.88;
    mix-blend-mode: screen;
}
.HOME-fluid-panel::after {
    content: "";
    position: absolute;
    inset: calc(-2px - var(--home-fluid-thickness) * 0.45px);
    border-radius: inherit;
    border: calc(2px + var(--home-fluid-thickness) * 0.55px) solid rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.32),
        inset 0 -10px 16px rgba(120, 132, 154, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.14),
        calc(-20px * var(--home-fluid-ca)) 0 calc(24px * var(--home-fluid-ca)) rgba(255, 102, 102, 0.42),
        calc(20px * var(--home-fluid-ca)) 0 calc(24px * var(--home-fluid-ca)) rgba(92, 218, 255, 0.38);
    opacity: 0.95;
}
.HOME-fluid-panel > .HOME-fluid-inner-rim {
    position: absolute;
    inset: calc(6px + var(--home-fluid-thickness) * 0.15px);
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.12);
}
.HOME-fluid-panel > .HOME-fluid-transition {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0.02) calc(62% + var(--home-fluid-thickness) * 0.2%), rgba(210, 224, 255, 0.08) calc(72% + var(--home-fluid-thickness) * 0.25%), rgba(255, 255, 255, 0.24) calc(84% + var(--home-fluid-thickness) * 0.18%), rgba(255, 255, 255, 0.36) 100%);
    mix-blend-mode: screen;
    opacity: 0.92;
}
.HOME-fluid-panel > .HOME-fluid-caustic {
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background:
        conic-gradient(
            from 130deg,
            rgba(94, 233, 255, 0.28),
            rgba(255, 255, 255, 0.02) 20%,
            rgba(93, 111, 255, 0.24) 38%,
            rgba(255, 129, 116, 0.32) 56%,
            rgba(255, 255, 255, 0.02) 74%,
            rgba(135, 255, 255, 0.18) 88%,
            rgba(94, 233, 255, 0.28)
        );
    mix-blend-mode: screen;
    opacity: calc(0.08 + var(--home-fluid-ca) * 4.2);
    filter: blur(calc(10px + var(--home-fluid-ca) * 80px));
    transform: scale(calc(1 + var(--home-fluid-anisotropy) * 0.18), calc(1 + var(--home-fluid-anisotropy) * 0.08));
}
.HOME-img-main > *:not(.HOME-fluid-panel) {
    position: relative;
    z-index: 2;
}
.HOME-article-preview {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 54px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 900ms ease, visibility 0s linear 900ms;
}
body.HOME-article-preview-open {
    overflow: hidden;
}
.HOME-article-preview.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.HOME-article-preview-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 13, 18, 0.38);
    backdrop-filter: blur(10px) saturate(112%);
    -webkit-backdrop-filter: blur(10px) saturate(112%);
}
.HOME-article-preview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(900px, 100%);
    max-height: min(78vh, 820px);
    overflow: hidden;
    color: #26362f;
    background:
        linear-gradient(145deg, rgba(253, 248, 238, 0.97), rgba(231, 238, 225, 0.95) 54%, rgba(238, 229, 213, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    box-shadow:
        0 30px 86px rgba(3, 8, 13, 0.36),
        0 8px 24px rgba(84, 69, 48, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    opacity: 0.9;
    transform: translateY(28px) scale(0.98);
    transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.HOME-article-preview.is-visible .HOME-article-preview-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.HOME-article-preview-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #6f846f, #d3a15f 46%, #5f7484);
}
.HOME-article-preview-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(80, 91, 76, 0.24);
    border-radius: 50%;
    color: #26362f;
    background: rgba(255, 252, 244, 0.72);
    box-shadow: 0 12px 24px rgba(55, 45, 31, 0.14);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.HOME-article-preview-close:hover,
.HOME-article-preview-close:focus-visible {
    background: rgba(255, 255, 250, 0.94);
    box-shadow: 0 16px 30px rgba(55, 45, 31, 0.22);
    transform: translateY(-1px);
    outline: none;
}
.HOME-article-preview-header {
    padding: 34px clamp(24px, 5vw, 56px) 22px;
    border-bottom: 1px solid rgba(82, 96, 77, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 253, 247, 0.72), rgba(255, 253, 247, 0.18));
}
.HOME-article-preview-kicker {
    margin: 0 0 10px;
    color: #6f846f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.HOME-article-preview-title {
    max-width: calc(100% - 58px);
    margin: 0;
    color: #23352f;
    font-size: clamp(1.55rem, 2.8vw, 2.45rem);
    line-height: 1.2;
    font-weight: 800;
}
.HOME-article-preview-body {
    padding: 26px clamp(24px, 5vw, 56px) 42px;
    overflow: auto;
    background: rgba(255, 252, 245, 0.28);
    outline: none;
}
.HOME-article-preview-content {
    min-height: 220px;
}
.HOME-article-preview-reveal {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
    transition:
        opacity 520ms ease,
        transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 520ms ease;
}
.HOME-article-preview-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.HOME-article-preview-status {
    margin: 0;
    color: #52604e !important;
    font-weight: 700;
}
.HOME-article-preview-status--error {
    color: #8a3e2f !important;
}
.HOME-article-preview-body.ALL-detail-markdown h1,
.HOME-article-preview-body.ALL-detail-markdown h2,
.HOME-article-preview-body.ALL-detail-markdown h3,
.HOME-article-preview-body.ALL-detail-markdown h4,
.HOME-article-preview-body.ALL-detail-markdown h5,
.HOME-article-preview-body.ALL-detail-markdown h6 {
    color: #253a32 !important;
    border-color: rgba(111, 132, 111, 0.2);
}
.HOME-article-preview-body.ALL-detail-markdown p,
.HOME-article-preview-body.ALL-detail-markdown ul,
.HOME-article-preview-body.ALL-detail-markdown ol,
.HOME-article-preview-body.ALL-detail-markdown blockquote,
.HOME-article-preview-body.ALL-detail-markdown table {
    color: #34463d !important;
}
.HOME-article-preview-body.ALL-detail-markdown a {
    color: #446d73;
    font-weight: 700;
}
.HOME-article-preview-body.ALL-detail-markdown a:hover {
    color: #2f5960;
}
.HOME-article-preview-body.ALL-detail-markdown strong {
    color: #1f2e28 !important;
}
.HOME-article-preview-body.ALL-detail-markdown em {
    color: #65715c !important;
}
.HOME-article-preview-body.ALL-detail-markdown code:not(pre code) {
    background: rgba(94, 111, 94, 0.16);
    color: #526b64 !important;
}
.HOME-article-preview-body.ALL-detail-markdown pre {
    background: rgba(15, 22, 27, 0.94) !important;
    border-color: rgba(255, 255, 255, 0.1);
}
.HOME-article-preview-body.ALL-detail-markdown blockquote {
    border-left-color: rgba(111, 132, 111, 0.62);
    background: rgba(111, 132, 111, 0.13);
    color: #3b4f45 !important;
}
.HOME-article-preview-body.ALL-detail-markdown table {
    background: rgba(255, 255, 250, 0.58);
}
.HOME-article-preview-body.ALL-detail-markdown th {
    color: #26362f;
    background: rgba(111, 132, 111, 0.18);
}
.HOME-article-preview-body.ALL-detail-markdown td {
    color: #34463d;
}
.HOME-fluid-controls-wrap {
    padding: 22px 4vw 10px;
}
.HOME-fluid-controls {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: min(100%, 1360px);
    margin: 0 auto;
}
.HOME-fluid-control {
    padding: 14px 16px 16px;
    border: 1px solid rgba(178, 194, 220, 0.34);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(239, 244, 251, 0.9));
    box-shadow: 0 12px 28px rgba(30, 44, 62, 0.08);
}
.HOME-fluid-control-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #344766;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.HOME-fluid-control-value {
    color: #2a4fd0;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
}
.HOME-fluid-control-range {
    width: 100%;
    accent-color: #2a4fd0;
}

@media (hover: hover) {
    .HOME-theme-btn:hover {
        border-radius: 5%;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        cursor: pointer;
    }
}
.HOME-round-img{
    border-radius: 10%;
    min-height: 200px;
    max-height: 200px;
}
.HOME-card-marquee {
    --home-card-width: 13rem;
    --home-card-gap: 24px;
    --home-card-viewport: calc(52rem + 72px);
    --home-card-scroll-distance: calc(52rem + 96px);
    --home-card-duration: 28s;
    --home-card-fade: 36px;
    --home-card-fade-bg: #ffffff;
    --home-arrow-width: 40px;
    --home-arrow-height: 102px;
    --home-arrow-offset: 5vw;
    --home-arrow-shift-y: -12px;
    overflow: hidden;
    position: relative;
}
.HOME-card-viewport {
    overflow: hidden;
    width: min(100%, var(--home-card-viewport));
    margin: 0 auto;
    position: relative;
}
.HOME-card-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: var(--home-card-gap);
    padding: 0 0 8px 0;
    animation: home-card-scroll var(--home-card-duration) linear infinite;
}
.HOME-card-item {
    flex: 0 0 auto;
}
.HOME-card-item .card {
    width: var(--home-card-width);
}
.HOME-card-arrow {
    position: absolute;
    top: calc(50% + var(--home-arrow-shift-y));
    transform: translateY(-50%);
    width: var(--home-arrow-width);
    height: var(--home-arrow-height);
    border-radius: 999px;
    border: 1px solid rgba(160, 180, 210, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(223, 231, 244, 0.92));
    color: #3c5175;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    padding: 0;
    box-shadow:
        0 10px 26px rgba(26, 34, 48, 0.16),
        0 0 22px rgba(160, 200, 255, 0.38),
        inset 0 1px 1px rgba(255, 255, 255, 0.92),
        inset 0 -6px 14px rgba(36, 48, 72, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.HOME-card-arrow::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    pointer-events: none;
}
.HOME-card-arrow-left {
    left: max(6px, calc(50% - (min(100%, var(--home-card-viewport)) / 2) - 10px - var(--home-arrow-offset)));
}
.HOME-card-arrow-right {
    right: max(6px, calc(50% - (min(100%, var(--home-card-viewport)) / 2) - 10px - var(--home-arrow-offset)));
}
@media (hover: hover) {
    .HOME-card-arrow:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow:
            0 12px 30px rgba(26, 34, 48, 0.2),
            0 0 24px rgba(140, 190, 255, 0.45),
            inset 0 1px 1px rgba(255, 255, 255, 0.95),
            inset 0 -8px 18px rgba(36, 48, 72, 0.2);
        border-color: rgba(130, 170, 230, 0.7);
    }
}

.HOME-blog-fade {
    opacity: 0;
    transition: opacity 3s ease;
}
.HOME-blog-fade.is-visible {
    opacity: 1;
}
.HOME-blog-glow {
    --home-blog-glow-x: 50%;
    --home-blog-glow-y: 50%;
    --home-blog-glow-alpha: 0;
    position: relative;
    display: block;
    border-radius: 20px;
    isolation: isolate;
}
.HOME-blog-glow::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 26px;
    background:
        radial-gradient(
            circle at var(--home-blog-glow-x) var(--home-blog-glow-y),
            rgba(120, 196, 255, calc(var(--home-blog-glow-alpha) * 0.95)) 0%,
            rgba(120, 196, 255, calc(var(--home-blog-glow-alpha) * 0.46)) 18%,
            rgba(120, 196, 255, calc(var(--home-blog-glow-alpha) * 0.14)) 34%,
            transparent 58%
        );
    filter: blur(18px);
    opacity: calc(var(--home-blog-glow-alpha) * 1.1);
    pointer-events: none;
    z-index: -2;
    transition: opacity 140ms ease;
}
.HOME-blog-glow::after {
    content: "";
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: 21px;
    background:
        radial-gradient(
            circle at var(--home-blog-glow-x) var(--home-blog-glow-y),
            rgba(196, 231, 255, calc(var(--home-blog-glow-alpha) * 0.98)) 0%,
            rgba(120, 196, 255, calc(var(--home-blog-glow-alpha) * 0.72)) 20%,
            rgba(120, 196, 255, calc(var(--home-blog-glow-alpha) * 0.18)) 40%,
            rgba(255, 255, 255, 0.16) 62%,
            rgba(255, 255, 255, 0.05) 100%
        );
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: calc(0.12 + var(--home-blog-glow-alpha));
    pointer-events: none;
    z-index: 2;
    transition: opacity 140ms ease;
}
.HOME-blog-glow-panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.97));
    transition: box-shadow 180ms ease, transform 180ms ease;
}

@media screen and (max-width: 991.98px) {
    .HOME-nav-shell {
        padding: 18px 20px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .HOME-nav-brand {
        font-size: 1.7rem;
    }
    .HOME-nav-collapse {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding-top: 18px;
    }
    .HOME-nav-links {
        align-items: flex-start;
        gap: 8px;
    }
    .HOME-nav-link-active::after {
        left: 10px;
        right: auto;
        width: 44px;
    }
    .HOME-nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .HOME-nav-search {
        width: 100%;
    }
    .HOME-nav-search-input {
        width: 100%;
    }
    .HOME-nav-search-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #2a4fd0;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    .HOME-nav-subscribe {
        width: 100%;
    }
    .HOME-fluid-panel {
        width: min(24vw, 180px);
        height: min(24vw, 180px);
        min-width: 140px;
        min-height: 140px;
    }
    .HOME-fluid-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media screen and (max-width: 600px) {
    .HOME-fluid-panel {
        display: none;
    }
    .HOME-article-preview {
        align-items: flex-end;
        padding: 12px;
    }
    .HOME-article-preview-card {
        max-height: 88vh;
        border-radius: 24px 24px 12px 12px;
    }
    .HOME-article-preview-header {
        padding: 30px 22px 18px;
    }
    .HOME-article-preview-title {
        max-width: calc(100% - 54px);
        font-size: 1.42rem;
    }
    .HOME-article-preview-body {
        padding: 22px 22px 32px;
    }
    .HOME-article-preview-close {
        top: 14px;
        right: 14px;
    }
    .HOME-fluid-controls {
        grid-template-columns: 1fr;
    }
    .HOME-fluid-controls-wrap {
        padding-top: 16px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .HOME-article-preview-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}
@media (hover: hover) {
    .HOME-card-viewport:hover .HOME-card-track {
        animation-play-state: paused;
    }
}
@media (prefers-reduced-motion: reduce) {
    .HOME-card-track {
        animation: none;
    }
}
@supports ((mask-image: linear-gradient(#000, #000)) or (-webkit-mask-image: linear-gradient(#000, #000))) {
    .HOME-card-viewport {
        -webkit-mask-image: linear-gradient(
            90deg,
            transparent 0,
            #000 var(--home-card-fade),
            #000 calc(100% - var(--home-card-fade)),
            transparent 100%
        );
        mask-image: linear-gradient(
            90deg,
            transparent 0,
            #000 var(--home-card-fade),
            #000 calc(100% - var(--home-card-fade)),
            transparent 100%
        );
    }
}
@supports not ((mask-image: linear-gradient(#000, #000)) or (-webkit-mask-image: linear-gradient(#000, #000))) {
    .HOME-card-viewport::before,
    .HOME-card-viewport::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: var(--home-card-fade);
        pointer-events: none;
        z-index: 1;
    }
    .HOME-card-viewport::before {
        left: 0;
        background: linear-gradient(90deg, var(--home-card-fade-bg), rgba(255, 255, 255, 0));
    }
    .HOME-card-viewport::after {
        right: 0;
        background: linear-gradient(270deg, var(--home-card-fade-bg), rgba(255, 255, 255, 0));
    }
}
@keyframes home-card-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--home-card-scroll-distance)));
    }
}
.HOME-txt-background{
    background-color: rgba(255, 255, 255, 0.495);
}
.HOME-card{
    border:none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.HOME-card-footer{
    border:none;
    background-color: white;
}

/* ALL OTHER HTML FILES as well as HOME*/
.ALL-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    padding: 120px 8vw 56px;
    margin-bottom: 20px;
    background-image:
        linear-gradient(180deg, rgba(248, 245, 240, 0.98) 0%, rgba(248, 245, 240, 0.72) 16%, rgba(248, 245, 240, 0.18) 34%, rgba(248, 245, 240, 0) 54%),
        linear-gradient(0deg, rgba(20, 28, 38, 0.36), rgba(20, 28, 38, 0.08)),
        url("../home/main_pic.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.ALL-hero-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92));
    pointer-events: none;
}
.ALL-hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    color: #ffffff;
}
.ALL-hero-kicker {
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(235, 242, 255, 0.92);
}
.ALL-hero-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
.ALL-h1{
    margin: 30px;
    font-size: 3em;
}
@media screen and (min-width: 600px) {
    .ALL-h1 {
        font-size: 5em;
    }
}
@media screen and (max-width: 600px) {
    .ALL-hero {
        min-height: 240px;
        padding: 92px 24px 40px;
    }
}
.ALL-picture {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ALL-read-btn{
    width: 150px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    color: rgb(75, 75, 75);
}
.ALL-green-btn{
    width: 120px;
    background-color: #728c6996;
}
.ALL-green-btn-dark {
    width: 120px;
    background-color: #728c6996;
}
.ALL-mini-btn{
    color: white;
}
.ALL-no-hover{
    text-decoration: none !important;
    color: rgb(16, 16, 16);
}
.ALL-no-hover:hover {
    text-decoration: none !important;
}
@media (hover: hover) {
    .ALL-post-hover:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }
    .ALL-green-btn:hover, .ALL-green-btn-dark:hover{
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        font-weight: bold;
    }
    .ALL-mini-btn:hover {
        color: white;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }
}
.ALL-box-preview-shadow{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.ALL-msg-sent{
    color: #4b6046;
    font-weight: bold;
    font-size: 1.5em;
}
.ALL-login-link{
    color: rgb(150, 150, 150);
}
.ALL-login-link-link{
    color: rgb(150, 150, 150) !important;
    text-decoration: underline !important;
}
.All-error{
    color: #8E1600;
}

@media (min-width: 765px) {
    .All-acct-prof-pic{
        margin: 0.5rem 0 0.5rem 1rem;
    }
}

/* Form input type = file */
/* (because Bootstrap class not working) */

input[type=file]::file-selector-button {
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
input[type=file]::file-selector-button {
    background: #728c6946;
    margin: -3rem 1rem 0 -1rem;
    height: 50px;
    padding: 0 10px 0 10px;
    border-right: 1px solid #ced4da;
}

@media (hover: hover) {
    input[type=file]::file-selector-button:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }
}

/* add the bellow to author and comment section with JS in posts.html */
@media (max-width: 765px) {
    .All-flex-on-mobile {
        display: flex !important;
        flex-direction: column;
    }
}

/* SVG like and bookmark: posts.html */
.ALL-svg{
    height: 2em;
    width: 20px;
    cursor:pointer
}
.ALL-svg-parent{
    max-height: 2em;
    display:flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.ALL-no-m-p {
    margin: 0 !important;
    padding: 0 !important;
}

/* filter colour from: https: //codepen.io/sosuke/pen/Pjoqqp*/
.ALL-grey{
    color: #808080;
    filter: invert(55%) sepia(0%) saturate(0%) hue-rotate(24deg) brightness(91%) contrast(84%);
}

@media (hover: hover) {
    .ALL-svg:hover {
        filter: invert(34%) sepia(17%) saturate(706%) hue-rotate(63deg) brightness(92%) contrast(83%);
    }
}
.All-svg-clicked{
    filter: invert(65%) sepia(93%) saturate(578%) hue-rotate(2deg) brightness(91%) contrast(99%);
}
.All-display-none{
    display: none;
}

.ALL-svg-delete {
    height: 13px;
    width: 15px;
    cursor: pointer
}
@media (hover: hover) {
    .ALL-svg-delete:hover {
        filter: invert(12%) sepia(57%) saturate(5140%) hue-rotate(4deg) brightness(92%) contrast(101%);
    }
}

/* Global dark theme */
body {
    background:
        radial-gradient(circle at top, rgba(58, 76, 113, 0.16), transparent 24%),
        linear-gradient(180deg, #090b11 0%, #0c0f16 32%, #0a0d14 100%);
    color: #e7ebf5;
}
body,
body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body label,
body li,
body span,
body small {
    color: inherit;
}
a {
    color: #dfe7ff;
}
a:hover {
    color: #ffffff;
}
.HOME-nav {
    background: rgba(7, 10, 16, 0.82);
    box-shadow: 0 1px 0 rgba(136, 160, 208, 0.12);
}
.HOME-nav-brand {
    color: #f5f7ff;
}
.HOME-nav-brand:hover {
    color: #a8beff;
}
.HOME-nav-link {
    color: #9ca7c1 !important;
}
.HOME-nav-link:hover,
.HOME-nav-link:focus {
    color: #f2f5ff !important;
}
.HOME-nav-link-active {
    color: #d8e2ff !important;
}
.HOME-nav-link-active::after {
    background: linear-gradient(90deg, #8eb5ff, #dbb5ff);
}
.HOME-nav-dropdown {
    background: rgba(12, 17, 27, 0.98);
    border-color: rgba(122, 146, 188, 0.18);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.HOME-nav-dropdown-item {
    color: #dbe3fa;
}
.HOME-nav-dropdown-item:hover {
    background: rgba(75, 100, 148, 0.2);
    color: #ffffff;
}
.HOME-nav-search {
    background: rgba(18, 24, 37, 0.88);
    border: 1px solid rgba(122, 146, 188, 0.16);
}
.HOME-nav-search-icon,
.HOME-nav-search-input,
.HOME-nav-search-input::placeholder {
    color: #8f9bb8;
}
.HOME-nav-search-btn {
    border-color: rgba(143, 177, 255, 0.52);
    color: #d8e2ff;
}
.HOME-nav-subscribe,
.ALL-green-btn,
.ALL-green-btn-dark,
.HOME-card-arrow,
input[type=file]::file-selector-button {
    background:
        linear-gradient(135deg, rgba(84, 108, 156, 0.34), rgba(39, 50, 84, 0.58)) !important;
    color: #eef2ff !important;
    border-color: rgba(138, 164, 216, 0.36) !important;
}
.HOME-nav-subscribe:hover,
.ALL-green-btn:hover,
.ALL-green-btn-dark:hover {
    background:
        linear-gradient(135deg, rgba(96, 125, 186, 0.5), rgba(53, 66, 110, 0.72)) !important;
    color: #ffffff !important;
}
.HOME-card-arrow {
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.42),
        0 0 20px rgba(112, 160, 255, 0.14),
        inset 0 1px 1px rgba(255, 255, 255, 0.16),
        inset 0 -8px 16px rgba(18, 24, 38, 0.34);
}
.HOME-img-main::before,
.ALL-hero::before {
    background:
        radial-gradient(circle at 20% 18%, rgba(94, 110, 180, 0.18), transparent 20%),
        linear-gradient(180deg, rgba(4, 7, 12, 0.18), rgba(4, 7, 12, 0.34));
}
.HOME-card-viewport::before,
.HOME-card-viewport::after {
    --home-card-fade-bg: #090b11;
}
.HOME-blog-glow-panel,
.ALL-post-hover,
.HOME-card-item .card,
.HOME-fluid-control,
.card,
.album,
.form-control,
select,
textarea,
.alert,
pre,
code {
    background-color: rgba(15, 20, 31, 0.88) !important;
    color: #e6ebf6 !important;
    border-color: rgba(119, 140, 180, 0.16) !important;
}
.HOME-blog-glow-panel,
.ALL-post-hover,
.HOME-card-item .card,
.HOME-fluid-control,
.card,
.alert,
.album,
.HOME-fluid-controls-wrap {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}
.HOME-blog-glow-panel {
    background: linear-gradient(145deg, rgba(18, 23, 36, 0.94), rgba(10, 14, 24, 0.96)) !important;
}
.ALL-post-hover {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(17, 22, 35, 0.94), rgba(10, 13, 22, 0.98));
    border: 1px solid rgba(117, 138, 176, 0.14);
}
.ALL-no-hover,
.ALL-no-hover:hover,
.card-title,
.card-text,
.text-justify,
.text-center,
.text-muted,
.HOME-fluid-control-label,
.HOME-fluid-control-value {
    color: #dfe6f7 !important;
}
.text-muted {
    color: #8b97b6 !important;
}
.ALL-h1 {
    color: #f1f4ff !important;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}
.ALL-hero {
    background-image:
        linear-gradient(180deg, rgba(4, 7, 12, 0.82) 0%, rgba(4, 7, 12, 0.34) 18%, rgba(4, 7, 12, 0.08) 34%, rgba(4, 7, 12, 0) 54%),
        linear-gradient(0deg, rgba(5, 8, 14, 0.74), rgba(5, 8, 14, 0.12)),
        url("../home/main_pic.jpg");
}
.ALL-hero-overlay {
    background: linear-gradient(180deg, rgba(9, 11, 17, 0), rgba(9, 11, 17, 0.96));
}
.ALL-hero-kicker {
    color: rgba(155, 177, 222, 0.82);
}
.ALL-hero-title {
    color: #f5f7ff;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
}
.ALL-green-btn,
.ALL-green-btn-dark {
    width: auto;
    min-width: 120px;
}
.pagination .page-item + .page-item {
    margin-left: 16px;
}
.pagination .page-link,
.nav-link.btn.ALL-green-btn-dark,
.nav-link.btn.ALL-green-btn {
    border: 1px solid rgba(129, 152, 195, 0.24) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.HOME-footer {
    padding: 30px 0 42px;
    color: #7f8aa8;
}
.HOME-footer .text-dark,
.HOME-footer a,
.HOME-footer p {
    color: #8f9abc !important;
}
.HOME-footer a:hover {
    color: #eef2ff !important;
}
.container,
.container-fluid,
main {
    position: relative;
}
.form-control,
select,
textarea {
    border-radius: 14px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.form-control:focus,
select:focus,
textarea:focus {
    background-color: rgba(16, 22, 35, 0.96) !important;
    color: #f4f7ff !important;
    border-color: rgba(142, 172, 228, 0.48) !important;
    box-shadow: 0 0 0 0.2rem rgba(92, 118, 186, 0.18) !important;
}
.blog_markdown_data,
textarea.blog_markdown_data {
    width: 100%;
    min-height: 420px;
    padding: 18px;
    background: rgba(12, 16, 26, 0.96);
    color: #edf2ff;
    border: 1px solid rgba(119, 140, 180, 0.18);
    border-radius: 18px;
}
.album.py-5.bg-light {
    background: transparent !important;
}
.ck-editor,
.cke,
.cke_top,
.cke_bottom,
.cke_contents,
.cke_reset_all {
    background: #0d121c !important;
    color: #e6ebf6 !important;
}
.hljs,
pre code,
code.hljs {
    background: #0d121c !important;
    color: #e6ebf6 !important;
    border-radius: 16px;
}
blockquote {
    border-left-color: rgba(151, 176, 232, 0.42) !important;
    color: #bcc6df;
}
img,
.card-img,
.HOME-round-img {
    filter: saturate(0.92) contrast(1.04);
}
.HOME-fluid-controls-wrap {
    display: none;
}
.HOME-txt-background,
.HOME-card-footer {
    background: rgba(15, 20, 31, 0.82) !important;
    color: #e6ebf6 !important;
}
.ALL-detail-shell .row.no-gutters.col-12,
.ALL-detail-shell .col-12.text-justify,
.ALL-edit-shell .container,
.ALL-edit-shell .card.mb-2 {
    background: rgba(12, 16, 26, 0.72);
    border-radius: 22px;
}
.ALL-detail-shell .col-12.text-justify,
.ALL-edit-shell .container {
    padding: 26px 28px;
    border: 1px solid rgba(119, 140, 180, 0.16);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}
.ALL-detail-shell img.col-12 {
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}
.ALL-detail-markdown {
    line-height: 1.85;
    overflow-wrap: anywhere;
}
.ALL-detail-markdown > :first-child {
    margin-top: 0;
}
.ALL-detail-markdown > :last-child {
    margin-bottom: 0;
}
.ALL-detail-markdown h1,
.ALL-detail-markdown h2,
.ALL-detail-markdown h3,
.ALL-detail-markdown h4,
.ALL-detail-markdown h5,
.ALL-detail-markdown h6 {
    margin: 1.5rem 0 0.9rem;
    color: #f5f7ff !important;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.ALL-detail-markdown h1,
.ALL-detail-markdown h2 {
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(157, 193, 255, 0.14);
}
.ALL-detail-markdown p,
.ALL-detail-markdown ul,
.ALL-detail-markdown ol,
.ALL-detail-markdown blockquote,
.ALL-detail-markdown pre,
.ALL-detail-markdown table {
    margin-bottom: 1rem;
    color: #dce5fa;
}
.ALL-detail-markdown ul,
.ALL-detail-markdown ol {
    padding-left: 1.5rem;
}
.ALL-detail-markdown li + li {
    margin-top: 0.35rem;
}
.ALL-detail-markdown a {
    color: #9dc1ff;
}
.ALL-detail-markdown a:hover {
    color: #c3d8ff;
    text-decoration: none;
}
.ALL-detail-markdown strong {
    color: #f6f8ff;
    font-weight: 700;
}
.ALL-detail-markdown em {
    color: #d5def4;
}
.ALL-detail-markdown code:not(pre code) {
    padding: 0.18rem 0.45rem;
    border-radius: 8px;
    background: rgba(14, 20, 33, 0.92);
    color: #9dc1ff !important;
    font-size: 0.92em;
}
.ALL-detail-markdown pre {
    padding: 1rem 1.15rem;
    border-radius: 18px;
    overflow-x: auto;
    background: #0d121c !important;
    border: 1px solid rgba(129, 152, 195, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.ALL-detail-markdown pre code {
    padding: 0;
    background: transparent !important;
    color: inherit !important;
}
.ALL-detail-markdown blockquote {
    padding: 0.9rem 1rem;
    border-left: 4px solid rgba(157, 193, 255, 0.5);
    background: rgba(12, 18, 30, 0.78);
    border-radius: 0 14px 14px 0;
    color: #c4cee6;
}
.ALL-detail-markdown img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 0.4rem 0 0.8rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}
.ALL-detail-markdown iframe {
    max-width: 100%;
    border: 0;
    border-radius: 18px;
    margin: 0.4rem auto 1rem;
    display: block;
    background: #05070d;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}
.ALL-detail-markdown table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    background: rgba(11, 16, 27, 0.76);
    border-radius: 16px;
}
.ALL-detail-markdown th,
.ALL-detail-markdown td {
    padding: 0.75rem 0.9rem;
}
.ALL-detail-markdown th {
    color: #f5f7ff;
    background: rgba(18, 25, 40, 0.94);
}
.ALL-detail-markdown td {
    color: #d8e1f4;
}
.ALL-detail-markdown hr {
    margin: 1.5rem 0;
    border-color: rgba(255, 255, 255, 0.08);
}

.card-title{
    color: gray;
}


.card-img{
    width: 456px;
    height: 303px;
}

/* Dark refinement */
:root {
    --rb-bg-0: #05070d;
    --rb-bg-1: #090d15;
    --rb-bg-2: #101625;
    --rb-surface-0: rgba(10, 15, 24, 0.68);
    --rb-surface-1: rgba(13, 18, 29, 0.84);
    --rb-surface-2: rgba(18, 24, 38, 0.94);
    --rb-line: rgba(138, 157, 197, 0.16);
    --rb-line-strong: rgba(164, 184, 228, 0.28);
    --rb-text: #eef3ff;
    --rb-muted: #92a0bf;
    --rb-accent: #90a8ff;
    --rb-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

body {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at top center, rgba(91, 111, 181, 0.16), transparent 26%),
        radial-gradient(circle at 18% 14%, rgba(62, 93, 170, 0.12), transparent 22%),
        linear-gradient(180deg, var(--rb-bg-0) 0%, var(--rb-bg-1) 34%, #06080f 100%);
    color: var(--rb-text);
}
body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
body::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(102, 131, 233, 0.12), transparent 20%),
        radial-gradient(circle at 84% 12%, rgba(96, 214, 255, 0.08), transparent 18%),
        radial-gradient(circle at 50% 120%, rgba(122, 89, 224, 0.12), transparent 26%);
    filter: blur(12px);
}
body::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.28)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 0, rgba(255, 255, 255, 0.014) 1px, transparent 1px, transparent 120px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 120px);
    background-size: auto, 120px 120px, 120px 120px;
    mix-blend-mode: soft-light;
    opacity: 0.26;
}
body > * {
    position: relative;
    z-index: 1;
}

.HOME-nav {
    background: rgba(6, 9, 14, 0.7);
    border-bottom: 1px solid var(--rb-line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
}
.HOME-nav::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(182, 199, 255, 0.34), transparent);
}
.HOME-nav-search {
    background: linear-gradient(135deg, rgba(13, 18, 29, 0.88), rgba(10, 14, 22, 0.94));
    border: 1px solid var(--rb-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.HOME-nav-search-btn {
    background: linear-gradient(135deg, rgba(80, 102, 157, 0.28), rgba(28, 37, 61, 0.62));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.18);
}
.HOME-nav-subscribe,
.ALL-green-btn,
.ALL-green-btn-dark,
.HOME-card-arrow,
.HOME-nav-search-btn {
    border: 1px solid var(--rb-line-strong) !important;
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.HOME-img-main {
    background-color: var(--rb-bg-0);
    box-shadow: inset 0 -120px 140px rgba(0, 0, 0, 0.42);
}
.HOME-img-main::before {
    background:
        linear-gradient(180deg, rgba(4, 7, 12, 0.72) 0%, rgba(4, 7, 12, 0.28) 18%, rgba(4, 7, 12, 0.18) 36%, rgba(4, 7, 12, 0.62) 100%),
        radial-gradient(circle at 50% 100%, rgba(98, 115, 182, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(8, 18, 40, 0.36), rgba(8, 18, 40, 0.06) 36%, rgba(255, 255, 255, 0.04) 76%);
}
.HOME-img-main::after {
    content: "";
    position: absolute;
    inset: auto -8% -16% -8%;
    height: 38%;
    background: radial-gradient(circle at 50% 50%, rgba(122, 146, 235, 0.18), transparent 55%);
    filter: blur(64px);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.HOME-card-item .card {
    border: 1px solid var(--rb-line) !important;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(15, 20, 31, 0.96), rgba(8, 11, 18, 0.98)) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}
.HOME-card-item .card-body {
    min-height: 82px;
    background: linear-gradient(180deg, rgba(13, 18, 28, 0.94), rgba(9, 12, 20, 0.98));
}
.HOME-card-item .card-title,
.card-title {
    color: var(--rb-text) !important;
}
.HOME-round-img {
    min-height: 220px;
    max-height: 220px;
    border-radius: 0;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.9) contrast(1.08);
}
.HOME-card-arrow {
    background: linear-gradient(145deg, rgba(14, 19, 30, 0.92), rgba(8, 11, 18, 0.98)) !important;
    color: #eaf0ff;
}
.HOME-card-arrow::after {
    border-color: rgba(255, 255, 255, 0.12);
}

.ALL-hero {
    border-bottom: 1px solid rgba(126, 148, 196, 0.16);
    box-shadow: inset 0 -40px 80px rgba(0, 0, 0, 0.46);
}
.ALL-hero-content {
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(9, 13, 21, 0.34), rgba(9, 13, 21, 0.08));
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.ALL-post-card,
.HOME-blog-glow-panel,
.ALL-detail-shell .col-12.text-justify,
.ALL-edit-shell .container,
.ALL-edit-shell .card.mb-2 {
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
}
.ALL-post-card {
    width: min(57rem, calc(100% - 24px)) !important;
    margin: 0 auto;
    border: 1px solid var(--rb-line);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(17, 22, 35, 0.92), rgba(8, 11, 18, 0.98));
    box-shadow: var(--rb-shadow);
}
.ALL-post-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%);
    pointer-events: none;
}
.BLOG-category-card-section.mt-4 {
    margin-top: 4.5rem !important;
}
.BLOG-category-card-section .ALL-post-card {
    height: 332px;
    min-height: 332px;
    max-height: 332px;
    align-items: stretch;
    box-sizing: border-box;
}
.BLOG-category-card-section .ALL-post-card .card-img {
    height: 100%;
    min-height: 0;
}
.BLOG-category-card-section .ALL-post-card-img {
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}
.ALL-post-card .card-img,
#home-blog-cards .card-img {
    width: 100%;
    height: 100%;
    min-height: 303px;
}
.ALL-post-media {
    background: linear-gradient(180deg, rgba(12, 17, 28, 0.24), rgba(4, 6, 12, 0.58));
}
.ALL-post-card-img,
.home-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    border-radius: 0 !important;
    filter: brightness(0.84) saturate(0.88) contrast(1.08);
}
.ALL-post-copy {
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(14, 19, 30, 0.96), rgba(9, 12, 20, 0.98));
}
.ALL-post-copy .card-body,
#home-blog-cards .card-body {
    padding: 32px 34px;
}
#home-blog-cards .home-blog-copy {
    display: flex;
    align-items: stretch;
}
#home-blog-cards .home-blog-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: 303px;
}
.ALL-post-title,
.home-blog-title {
    color: #f5f7ff !important;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.ALL-post-intro,
.home-blog-intro {
    color: #b5c1d8 !important;
    line-height: 1.75;
}
#home-blog-cards .home-blog-intro {
    min-height: 0 !important;
    max-height: 132px !important;
    min-width: 0 !important;
    margin-bottom: 14px;
    overflow: hidden;
}
#home-blog-cards .home-blog-meta {
    margin-top: auto;
    margin-bottom: 8px;
    padding-top: 6px;
}
.ALL-post-meta .text-muted,
.home-blog-time,
.text-muted {
    color: #8191b0 !important;
}
.HOME-blog-glow-panel,
#home-blog-cards .ALL-post-hover {
    background: linear-gradient(145deg, rgba(16, 21, 34, 0.94), rgba(8, 11, 18, 0.98)) !important;
    border: 1px solid var(--rb-line) !important;
    overflow: hidden;
    box-shadow: var(--rb-shadow);
}

.HOME-footer {
    margin-top: 48px;
    border-top: 1px solid var(--rb-line);
    background: linear-gradient(180deg, rgba(7, 10, 16, 0), rgba(7, 10, 16, 0.84));
}

.form-control,
select,
textarea,
.blog_markdown_data {
    background: linear-gradient(180deg, rgba(13, 18, 29, 0.96), rgba(9, 12, 20, 0.98)) !important;
    border: 1px solid var(--rb-line) !important;
    color: var(--rb-text) !important;
}
label,
.form-label {
    color: #dce5fa !important;
}
pre,
table {
    border: 1px solid rgba(255, 255, 255, 0.06);
}
table th,
table td {
    border-color: var(--rb-line) !important;
}

.ALL-detail-image-card,
.ALL-detail-card {
    width: min(57rem, calc(100% - 24px));
    margin: 0 auto;
    border: 1px solid var(--rb-line);
    border-radius: 20px;
    background: rgba(255, 252, 245, 0.84);
    box-shadow: var(--rb-shadow);
    overflow: hidden;
}

.ALL-detail-image-card {
    padding: 0;
    line-height: 0;
}

.ALL-detail-main-img {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.ALL-detail-card {
    padding: 26px 28px;
}

.ALL-detail-intro-card p {
    margin: 0;
}

.ALL-detail-card .ALL-detail-markdown {
    margin: 0;
}

@media screen and (max-width: 575.98px) {
    .ALL-detail-image-card,
    .ALL-detail-card {
        width: calc(100% - 24px);
        border-radius: 18px;
    }

    .ALL-detail-card {
        padding: 20px 18px;
    }
}

@media screen and (max-width: 991.98px) {
    .ALL-post-card,
    #home-blog-cards .ALL-post-hover {
        width: calc(100% - 28px) !important;
        max-height: none !important;
    }
    .ALL-post-copy .card-body,
    #home-blog-cards .card-body {
        padding: 24px 22px;
    }
    .ALL-post-intro,
    .home-blog-intro {
        min-width: 0 !important;
    }
    .ALL-post-card .card-img,
    #home-blog-cards .card-img {
        min-height: 240px;
    }
    #home-blog-cards .home-blog-body {
        min-height: auto;
    }
    #home-blog-cards .home-blog-intro {
        max-height: none !important;
    }
}

@media screen and (max-width: 575.98px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    .container-fluid > .row,
    body > .row,
    .row.justify-content-center {
        margin-left: 0;
        margin-right: 0;
    }

    .HOME-nav {
        position: sticky;
    }

    .HOME-nav-shell {
        padding: 12px 14px 14px;
        gap: 10px;
        align-items: center;
    }

    .HOME-nav-brand {
        font-size: 1.48rem;
        letter-spacing: -0.02em;
    }

    .HOME-nav-toggler {
        display: none;
    }

    .HOME-nav-collapse {
        display: flex !important;
        flex-basis: 100%;
        width: 100%;
        padding: 12px;
        gap: 12px;
        border: 1px solid rgba(122, 146, 188, 0.18);
        border-radius: 20px;
        background: linear-gradient(145deg, rgba(13, 18, 29, 0.92), rgba(8, 11, 18, 0.96));
        box-shadow:
            0 16px 34px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .HOME-nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        gap: 8px;
        margin: 0;
    }

    .HOME-nav-links .nav-item {
        flex: 0 1 auto;
    }

    .HOME-nav-links .nav-item.dropdown {
        position: static;
        flex-basis: 100%;
    }

    .HOME-nav-link {
        min-height: 38px;
        padding: 8px 12px !important;
        display: inline-flex;
        align-items: center;
        border: 1px solid rgba(122, 146, 188, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        font-size: 0.92rem;
        line-height: 1;
        white-space: nowrap;
    }

    .HOME-nav-link-active::after {
        display: none;
    }

    .HOME-nav-dropdown {
        position: static !important;
        float: none;
        width: 100%;
        min-width: 0;
        margin: 8px 0 0;
        padding: 8px;
        transform: none !important;
        border-radius: 16px;
    }

    .HOME-nav-dropdown.show {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .HOME-nav-dropdown-item {
        min-width: 0;
        padding: 10px 8px;
        text-align: center;
        white-space: normal;
    }

    .HOME-nav-actions {
        width: 100%;
        margin: 0;
    }

    .HOME-nav-search {
        width: 100%;
        min-width: 0;
        padding: 8px;
        gap: 8px;
    }

    .HOME-nav-search-input {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        letter-spacing: 0.04em;
    }

    .HOME-nav-search-btn {
        flex: 0 0 auto;
        min-height: 34px;
        margin-left: 0;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 0.76rem;
    }

    .HOME-img-main {
        height: 84vh;
        min-height: 620px;
        background-position: center top;
    }

    .HOME-article-preview {
        padding: 10px;
    }

    .HOME-article-preview-card {
        max-height: 86vh;
        border-radius: 22px;
    }

    .HOME-card-marquee {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .HOME-card-viewport {
        width: 100%;
        overflow: hidden;
    }

    .HOME-card-item {
        width: min(56vw, 208px);
        min-width: min(56vw, 208px);
    }

    .HOME-round-img {
        min-height: 168px;
        max-height: 168px;
    }

    .ALL-h1 {
        margin: 18px 12px !important;
        font-size: clamp(2.1rem, 12vw, 3rem) !important;
        line-height: 1.12;
    }

    .ALL-hero {
        min-height: 250px;
        padding: 92px 14px 34px;
    }

    .ALL-hero-content {
        width: 100%;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .ALL-hero-title {
        font-size: clamp(2rem, 11vw, 3.1rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .ALL-post-card,
    #home-blog-cards .ALL-post-hover {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 22px !important;
    }

    .BLOG-category-card-section .ALL-post-card {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .ALL-post-card .card-img,
    #home-blog-cards .card-img,
    .BLOG-category-card-section .ALL-post-card .card-img {
        min-height: 190px;
        height: 190px;
    }

    .ALL-post-copy .card-body,
    #home-blog-cards .card-body {
        padding: 20px 18px;
    }

    .ALL-post-title,
    .home-blog-title {
        min-height: 0 !important;
        max-height: none !important;
        margin-top: 0 !important;
        font-size: 1.06rem;
        line-height: 1.35;
    }

    .ALL-post-intro,
    .home-blog-intro {
        min-width: 0 !important;
        min-height: 0 !important;
        max-height: none !important;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .ALL-post-meta {
        max-width: none !important;
    }

    .pagination {
        width: 100%;
        justify-content: center;
        gap: 12px;
        padding: 0 12px;
        margin: 0;
    }

    .pagination .page-item {
        width: auto !important;
        margin-left: 0 !important;
    }

    .pagination .ALL-green-btn-dark {
        width: min(148px, 42vw) !important;
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ALL-detail-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ALL-detail-shell h1 {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .ALL-detail-shell .row.no-gutters.col-12,
    .ALL-detail-shell .col-12.text-justify {
        width: 100%;
        max-width: 100% !important;
        padding: 20px 18px;
    }

    .ALL-detail-shell img.col-12 {
        width: 100%;
        max-width: 100% !important;
        padding-left: 0;
        padding-right: 0;
        border-radius: 18px;
    }

    .ALL-detail-markdown {
        font-size: 0.96rem;
        line-height: 1.78;
    }

    .ALL-detail-markdown pre,
    .ALL-detail-markdown table {
        max-width: 100%;
    }

    .HOME-footer {
        padding: 18px 14px;
    }

    .HOME-footer p {
        margin-bottom: 0;
    }
}

/* Final homepage theme overrides */
.HOME-page {
    --home-paper: #f6f1e8;
    --home-paper-strong: rgba(255, 252, 245, 0.88);
    --home-ink: #2f2a24;
    --home-sage: #60745d;
    --home-sage-dark: #405641;
    --home-line: rgba(133, 118, 96, 0.22);
    --home-shadow: 0 18px 44px rgba(62, 48, 32, 0.12);
    --home-motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    background: linear-gradient(180deg, #f7f2e9 0%, #f3eee5 44%, #f8f5ee 100%);
    color: var(--home-ink);
}

.HOME-page .HOME-nav,
.HOME-page .HOME-nav-collapse {
    background: rgba(250, 247, 240, 0.9);
    border-color: rgba(133, 118, 96, 0.16);
    box-shadow: 0 1px 0 rgba(93, 78, 56, 0.12);
}

.HOME-page .HOME-nav-brand,
.HOME-page .HOME-section-heading h2,
.HOME-page #home-blog-cards .home-blog-title {
    color: var(--home-ink) !important;
}

.HOME-page .HOME-nav-link {
    color: #6f665b !important;
}

.HOME-page .HOME-nav-brand:hover,
.HOME-page .HOME-nav-link-active,
.HOME-page .HOME-nav-link:hover,
.HOME-page .HOME-nav-link:focus {
    color: var(--home-sage-dark) !important;
}

.HOME-page .HOME-nav-link-active::after {
    background: var(--home-sage) !important;
}

.HOME-page .HOME-nav-search,
.HOME-page .HOME-nav-link {
    background: rgba(242, 235, 225, 0.76) !important;
    border-color: rgba(133, 118, 96, 0.16) !important;
}

.HOME-page .HOME-nav-search-input,
.HOME-page .HOME-nav-search-input::placeholder,
.HOME-page .HOME-nav-search-icon {
    color: #756a5d !important;
}

.HOME-page .HOME-nav-search-btn,
.HOME-page .ALL-green-btn,
.HOME-page .ALL-green-btn-dark,
.HOME-page .HOME-more-btn {
    border: 1px solid rgba(96, 116, 93, 0.28) !important;
    background: rgba(255, 252, 245, 0.72) !important;
    color: var(--home-sage-dark) !important;
    box-shadow:
        0 10px 24px rgba(62, 48, 32, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

.HOME-page .HOME-img-main {
    height: 88vh;
    min-height: 640px;
    box-shadow: inset 0 -110px 120px rgba(42, 32, 21, 0.32);
}

.HOME-page .HOME-img-main::before {
    background:
        linear-gradient(180deg, rgba(246, 241, 232, 0.34) 0%, rgba(246, 241, 232, 0.08) 24%, rgba(52, 40, 26, 0.2) 62%, rgba(38, 29, 20, 0.46) 100%),
        linear-gradient(135deg, rgba(34, 52, 44, 0.18), rgba(255, 252, 245, 0.02) 42%, rgba(100, 74, 42, 0.08) 100%);
}

.HOME-page .HOME-img-main::after {
    display: none;
}

.HOME-page .HOME-title {
    margin: 0;
    padding: 0;
    color: #fffaf1 !important;
    font-size: clamp(4.5rem, 12vw, 9.5rem);
    line-height: 0.94;
}

.HOME-hero-copy {
    position: absolute;
    left: clamp(340px, 28vw, 560px);
    bottom: clamp(68px, 13vh, 140px);
    z-index: 3;
    width: min(680px, calc(100% - 56px));
    color: #fffaf1;
    text-shadow: 0 2px 18px rgba(34, 26, 18, 0.5);
}

.HOME-hero-kicker,
.HOME-hero-subtitle,
.HOME-hero-hint {
    color: rgba(255, 250, 241, 0.88) !important;
}

.HOME-hero-kicker {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.HOME-hero-subtitle {
    width: min(520px, 100%);
    margin: 18px 0 0;
    font-size: clamp(1rem, 1.7vw, 1.26rem);
    line-height: 1.8;
}

.HOME-hero-hint {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 0;
    padding: 9px 14px 9px 16px;
    border: 1px solid rgba(255, 250, 241, 0.28);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.14);
    box-shadow: 0 12px 30px rgba(34, 26, 18, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    animation: home-hero-hint-pulse 3.8s ease-in-out infinite;
}

.HOME-hero-hint::after {
    content: "\203A";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.2);
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-1px);
}

@keyframes home-hero-hint-pulse {
    0%,
    100% {
        transform: translateY(0);
        background: rgba(255, 250, 241, 0.12);
    }
    50% {
        transform: translateY(-2px);
        background: rgba(255, 250, 241, 0.2);
    }
}

.HOME-section-heading {
    width: min(940px, calc(100% - 40px));
    margin: 0 auto 24px;
    padding-top: 12px;
}

.HOME-section-heading-latest {
    margin-top: 26px;
}

.HOME-section-kicker {
    margin: 0 0 8px;
    color: var(--home-sage) !important;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.HOME-section-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3.2vw, 2.55rem);
    line-height: 1.12;
    font-weight: 800;
}

.HOME-page .HOME-card-marquee {
    --home-card-duration: 36s;
    margin-top: 52px !important;
    padding: 36px 0 20px;
    background: linear-gradient(180deg, rgba(255, 252, 245, 0), rgba(238, 231, 219, 0.58) 52%, rgba(255, 252, 245, 0));
}

.HOME-reveal-ready [data-home-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 760ms ease,
        transform 760ms var(--home-motion-ease);
    will-change: opacity, transform;
}

.HOME-reveal-ready [data-home-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.HOME-page .HOME-card-item .card,
.HOME-page #home-blog-cards .ALL-post-hover,
.HOME-page .HOME-blog-glow-panel {
    border: 1px solid var(--home-line) !important;
    border-radius: 8px !important;
    overflow: hidden;
    background: var(--home-paper-strong) !important;
    box-shadow: var(--home-shadow) !important;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.HOME-page .HOME-card-item .card-body,
.HOME-page #home-blog-cards .home-blog-copy,
.HOME-page #home-blog-cards .home-blog-body {
    background: rgba(255, 252, 245, 0.76) !important;
}

.HOME-page .HOME-card-item .card-title {
    color: var(--home-ink) !important;
    font-weight: 800;
}

.HOME-page .HOME-round-img,
.HOME-page #home-blog-cards .home-blog-img,
.HOME-page #home-blog-cards .card-img {
    filter: brightness(0.98) saturate(0.94) contrast(1.02) !important;
}

@media (hover: hover) {
    .HOME-page .HOME-card-item .card:hover,
    .HOME-page #home-blog-cards .ALL-post-hover:hover {
        transform: translateY(-4px);
        border-color: rgba(96, 116, 93, 0.32) !important;
        box-shadow: 0 22px 52px rgba(62, 48, 32, 0.16) !important;
    }
}

.HOME-page .HOME-blog-glow::before {
    background:
        radial-gradient(
            circle at var(--home-blog-glow-x) var(--home-blog-glow-y),
            rgba(185, 130, 67, calc(var(--home-blog-glow-alpha) * 0.28)) 0%,
            rgba(96, 116, 93, calc(var(--home-blog-glow-alpha) * 0.22)) 32%,
            transparent 62%
        );
}

.HOME-page .HOME-blog-glow::after {
    background:
        radial-gradient(
            circle at var(--home-blog-glow-x) var(--home-blog-glow-y),
            rgba(255, 252, 245, calc(0.24 + var(--home-blog-glow-alpha) * 0.32)) 0%,
            rgba(185, 130, 67, calc(var(--home-blog-glow-alpha) * 0.2)) 34%,
            rgba(96, 116, 93, calc(var(--home-blog-glow-alpha) * 0.14)) 58%,
            rgba(255, 255, 255, 0.04) 100%
        );
}

.HOME-page #home-blog-cards .home-blog-title {
    font-size: 1.18rem;
}

.HOME-page #home-blog-cards .home-blog-intro {
    color: #5f554a !important;
}

.HOME-page #home-blog-cards .home-blog-time,
.HOME-page #home-blog-cards .text-muted {
    color: #887866 !important;
}

.HOME-page .HOME-card-arrow {
    border-color: rgba(133, 118, 96, 0.22) !important;
    background: rgba(255, 252, 245, 0.76) !important;
    color: var(--home-sage-dark) !important;
}

.HOME-page .HOME-more-btn {
    width: min(380px, calc(100% - 32px));
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.HOME-page .HOME-footer {
    margin-top: 56px;
    border-top: 1px solid var(--home-line);
    background: linear-gradient(180deg, rgba(255, 252, 245, 0), rgba(238, 231, 219, 0.72));
    color: #6f665b;
}

.HOME-page.HOME-quote-soft .QUOTE-sidebar:not(.is-dragging) {
    opacity: 0.58;
}

.HOME-page.HOME-quote-soft .QUOTE-sidebar:hover,
.HOME-page.HOME-quote-soft .QUOTE-sidebar:focus-within {
    opacity: 1;
}

@media screen and (max-width: 991.98px) {
    .HOME-page .HOME-img-main {
        height: 82vh;
        min-height: 560px;
    }

    .HOME-hero-copy {
        left: 24px;
        top: 112px;
        bottom: auto;
        width: calc(100% - 48px);
    }

    .HOME-page .HOME-title {
        font-size: clamp(4rem, 18vw, 7rem);
    }

    .HOME-page .HOME-card-marquee {
        --home-card-width: 190px;
        --home-card-gap: 18px;
        --home-card-duration: 40s;
    }

    .HOME-page .QUOTE-sidebar {
        width: min(300px, calc(100vw - 44px));
        opacity: 0.82;
    }

    .HOME-page.HOME-quote-soft .QUOTE-sidebar:not(:hover):not(:focus-within) {
        opacity: 0.42;
    }
}

@media screen and (max-width: 575.98px) {
    .HOME-page .HOME-img-main {
        min-height: 520px;
        height: 78vh;
    }

    .HOME-hero-copy {
        left: 18px;
        top: 92px;
        bottom: auto;
        width: calc(100% - 36px);
    }

    .HOME-hero-kicker {
        font-size: 0.72rem;
    }

    .HOME-hero-subtitle {
        width: min(340px, 100%);
        font-size: 0.92rem;
        line-height: 1.66;
    }

    .HOME-hero-hint {
        margin-top: 16px;
        padding: 8px 12px;
        font-size: 0.76rem;
        letter-spacing: 0.04em;
    }

    .HOME-section-heading {
        width: calc(100% - 28px);
    }

    .HOME-page .HOME-card-marquee {
        --home-card-width: 168px;
        --home-card-gap: 14px;
        --home-card-duration: 42s;
    }

    .HOME-page .HOME-card-item {
        width: var(--home-card-width);
        min-width: var(--home-card-width);
    }

    .HOME-page .HOME-round-img {
        min-height: 148px;
        max-height: 148px;
    }

    .HOME-page .QUOTE-sidebar {
        width: min(248px, calc(100vw - 48px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .HOME-reveal-ready [data-home-reveal],
    .HOME-hero-hint {
        animation: none;
        transition: none;
        transform: none;
    }
}

/* Global paper theme overrides */
:root {
    --rb-bg-0: #f7f2e9;
    --rb-bg-1: #f3eee5;
    --rb-bg-2: #ebe2d4;
    --rb-surface-0: rgba(255, 252, 245, 0.64);
    --rb-surface-1: rgba(255, 252, 245, 0.78);
    --rb-surface-2: rgba(255, 252, 245, 0.9);
    --rb-line: rgba(133, 118, 96, 0.22);
    --rb-line-strong: rgba(96, 116, 93, 0.28);
    --rb-text: #2f2a24;
    --rb-muted: #756a5d;
    --rb-accent: #60745d;
    --rb-shadow: 0 18px 44px rgba(62, 48, 32, 0.12);
}

body {
    background:
        radial-gradient(circle at 16% 8%, rgba(255, 252, 245, 0.72), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(202, 181, 145, 0.2), transparent 22%),
        linear-gradient(180deg, #f7f2e9 0%, #f3eee5 44%, #f8f5ee 100%);
    color: var(--rb-text);
}

body::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(96, 116, 93, 0.08), transparent 22%),
        radial-gradient(circle at 84% 12%, rgba(185, 130, 67, 0.08), transparent 20%);
    filter: blur(12px);
}

body::after {
    background:
        linear-gradient(180deg, rgba(255, 252, 245, 0.24), transparent 24%, transparent 78%, rgba(218, 206, 186, 0.22)),
        linear-gradient(90deg, rgba(116, 96, 70, 0.026) 0, rgba(116, 96, 70, 0.026) 1px, transparent 1px, transparent 120px),
        linear-gradient(0deg, rgba(116, 96, 70, 0.022) 0, rgba(116, 96, 70, 0.022) 1px, transparent 1px, transparent 120px);
    background-size: auto, 120px 120px, 120px 120px;
    mix-blend-mode: multiply;
    opacity: 0.18;
}

a {
    color: #405641;
}

a:hover {
    color: #2f472f;
}

.HOME-nav,
.HOME-nav-collapse {
    background: rgba(250, 247, 240, 0.9);
    border-color: rgba(133, 118, 96, 0.16);
    box-shadow: 0 1px 0 rgba(93, 78, 56, 0.12);
}

.HOME-nav::after {
    background: linear-gradient(90deg, transparent, rgba(133, 118, 96, 0.24), transparent);
}

.HOME-nav-brand,
.HOME-nav-link-active,
.HOME-nav-link:hover,
.HOME-nav-link:focus,
.ALL-h1,
.ALL-post-title,
.home-blog-title,
.card-title,
.ALL-detail-shell h1 {
    color: var(--rb-text) !important;
}

.HOME-nav-brand:hover {
    color: #405641 !important;
}

.HOME-nav-link {
    color: #6f665b !important;
}

.HOME-nav-link-active::after {
    background: #60745d;
}

.HOME-nav-dropdown {
    background: rgba(255, 252, 245, 0.96);
    border-color: rgba(133, 118, 96, 0.18);
    box-shadow: 0 18px 44px rgba(62, 48, 32, 0.14);
}

.HOME-nav-dropdown-item {
    color: #51483d;
}

.HOME-nav-dropdown-item:hover {
    background: rgba(96, 116, 93, 0.12);
    color: #2f472f;
}

.HOME-nav-search {
    background: rgba(242, 235, 225, 0.76);
    border: 1px solid rgba(133, 118, 96, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.HOME-nav-search-icon,
.HOME-nav-search-input,
.HOME-nav-search-input::placeholder {
    color: #756a5d;
}

.HOME-nav-search-btn,
.HOME-nav-subscribe,
.ALL-green-btn,
.ALL-green-btn-dark,
.HOME-card-arrow,
input[type=file]::file-selector-button {
    border: 1px solid rgba(96, 116, 93, 0.28) !important;
    background: rgba(255, 252, 245, 0.72) !important;
    color: #405641 !important;
    box-shadow:
        0 10px 24px rgba(62, 48, 32, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

.HOME-nav-search-btn:hover,
.HOME-nav-subscribe:hover,
.ALL-green-btn:hover,
.ALL-green-btn-dark:hover {
    border-color: rgba(96, 116, 93, 0.44) !important;
    background: rgba(255, 252, 245, 0.9) !important;
    color: #2f472f !important;
}

.ALL-hero {
    border-bottom: 1px solid rgba(133, 118, 96, 0.16);
    box-shadow: inset 0 -42px 86px rgba(62, 48, 32, 0.2);
}

.ALL-hero::before {
    background:
        linear-gradient(180deg, rgba(246, 241, 232, 0.24), rgba(62, 48, 32, 0.24)),
        radial-gradient(circle at 20% 18%, rgba(255, 252, 245, 0.24), transparent 24%);
}

.ALL-hero-content {
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 252, 245, 0.52);
    box-shadow: 0 20px 44px rgba(62, 48, 32, 0.12);
}

.ALL-hero-kicker {
    color: #60745d;
}

.ALL-hero-title {
    color: #fffaf1;
}

.ALL-post-card,
.HOME-blog-glow-panel,
.ALL-detail-shell .col-12.text-justify,
.ALL-detail-shell .row.no-gutters.col-12,
.ALL-edit-shell .container,
.ALL-edit-shell .card.mb-2,
.card,
.album,
.alert {
    border-color: var(--rb-line) !important;
    background: rgba(255, 252, 245, 0.82) !important;
    color: var(--rb-text) !important;
    box-shadow: var(--rb-shadow);
}

.ALL-post-card,
.HOME-blog-glow-panel {
    border-radius: 8px;
}

.ALL-post-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 34%);
}

.ALL-post-copy,
.ALL-post-copy .card-body,
#home-blog-cards .card-body,
#home-blog-cards .home-blog-copy,
#home-blog-cards .home-blog-body,
.HOME-card-item .card-body {
    background: rgba(255, 252, 245, 0.76) !important;
}

.ALL-post-media {
    background: rgba(220, 209, 191, 0.28);
}

.ALL-post-card-img,
.home-blog-img,
.HOME-round-img,
.card-img {
    filter: brightness(0.98) saturate(0.94) contrast(1.02) !important;
}

.ALL-post-intro,
.home-blog-intro,
.card-text,
.text-justify,
.text-center,
.ALL-detail-markdown,
.ALL-detail-markdown p,
.ALL-detail-markdown li {
    color: #5f554a !important;
}

.ALL-post-meta .text-muted,
.home-blog-time,
.text-muted {
    color: #887866 !important;
}

.ALL-no-hover,
.ALL-no-hover:hover {
    color: inherit !important;
}

.HOME-footer {
    border-top: 1px solid var(--rb-line);
    background: linear-gradient(180deg, rgba(255, 252, 245, 0), rgba(238, 231, 219, 0.72));
    color: #6f665b;
}

.form-control,
select,
textarea,
.blog_markdown_data {
    background: rgba(255, 252, 245, 0.86) !important;
    border: 1px solid var(--rb-line) !important;
    color: var(--rb-text) !important;
}

label,
.form-label {
    color: #51483d !important;
}

pre {
    border-color: rgba(133, 118, 96, 0.18);
    background: rgba(47, 42, 36, 0.92) !important;
}

code {
    color: #f8f0e4 !important;
}

code:not(pre code) {
    background: rgba(96, 116, 93, 0.12) !important;
    color: #405641 !important;
}

table {
    border-color: var(--rb-line) !important;
    background: rgba(255, 252, 245, 0.74);
}

table th,
table td {
    border-color: var(--rb-line) !important;
}

/* Detail page readability overrides */
.ALL-detail-shell h1 {
    color: #241f1a !important;
    text-shadow: 0 1px 0 rgba(255, 252, 245, 0.64);
}

.ALL-detail-shell .text-center {
    color: #4d4338 !important;
}

.ALL-detail-card {
    border-color: rgba(118, 98, 68, 0.26) !important;
    background: rgba(255, 252, 245, 0.96) !important;
    box-shadow: 0 18px 44px rgba(62, 48, 32, 0.14) !important;
}

.ALL-detail-intro-card,
.ALL-detail-intro-card p,
.ALL-detail-card,
.ALL-detail-card .ALL-detail-markdown,
.ALL-detail-card .ALL-detail-markdown p,
.ALL-detail-card .ALL-detail-markdown li,
.ALL-detail-card .ALL-detail-markdown ul,
.ALL-detail-card .ALL-detail-markdown ol {
    color: #2f2a24 !important;
}

.ALL-detail-card .ALL-detail-markdown h1,
.ALL-detail-card .ALL-detail-markdown h2,
.ALL-detail-card .ALL-detail-markdown h3,
.ALL-detail-card .ALL-detail-markdown h4,
.ALL-detail-card .ALL-detail-markdown h5,
.ALL-detail-card .ALL-detail-markdown h6 {
    color: #241f1a !important;
    border-bottom-color: rgba(96, 116, 93, 0.24) !important;
}

.ALL-detail-card .ALL-detail-markdown strong {
    color: #201b16 !important;
}

.ALL-detail-card .ALL-detail-markdown em {
    color: #594b3f !important;
}

.ALL-detail-card .ALL-detail-markdown a {
    color: #2f5d48 !important;
    text-decoration-color: rgba(47, 93, 72, 0.36);
}

.ALL-detail-card .ALL-detail-markdown a:hover {
    color: #203f31 !important;
    text-decoration-color: rgba(32, 63, 49, 0.6);
}

.ALL-detail-card .ALL-detail-markdown blockquote {
    border-left-color: rgba(96, 116, 93, 0.55) !important;
    background: rgba(96, 116, 93, 0.1) !important;
    color: #3b332b !important;
}

.ALL-detail-card .ALL-detail-markdown table {
    background: rgba(255, 252, 245, 0.92) !important;
}

.ALL-detail-card .ALL-detail-markdown th {
    background: rgba(96, 116, 93, 0.12) !important;
    color: #241f1a !important;
}

.ALL-detail-card .ALL-detail-markdown td {
    color: #2f2a24 !important;
}

.ALL-detail-card .ALL-detail-markdown hr {
    border-color: rgba(118, 98, 68, 0.22) !important;
}

.ALL-detail-card .ALL-detail-markdown code:not(pre code) {
    background: rgba(96, 116, 93, 0.12) !important;
    color: #2f5d48 !important;
}

.ALL-detail-card .ALL-detail-markdown pre {
    border-color: rgba(133, 118, 96, 0.18) !important;
    background: rgba(47, 42, 36, 0.94) !important;
    color: #f8f0e4 !important;
}

.ALL-detail-card .ALL-detail-markdown pre code,
.ALL-detail-card .ALL-detail-markdown .hljs {
    background: transparent !important;
    color: inherit !important;
}

.ALL-detail-card .ALL-detail-markdown .MathJax,
.ALL-detail-card .ALL-detail-markdown mjx-container {
    color: #2f2a24 !important;
}

/* Homepage refinement overrides */
.HOME-page .HOME-img-main {
    box-shadow: inset 0 -86px 112px rgba(42, 32, 21, 0.24);
}

.HOME-page .HOME-img-main::before {
    background:
        linear-gradient(180deg, rgba(246, 241, 232, 0.18) 0%, rgba(246, 241, 232, 0.05) 24%, rgba(52, 40, 26, 0.2) 66%, rgba(38, 29, 20, 0.38) 100%),
        linear-gradient(135deg, rgba(34, 52, 44, 0.12), rgba(255, 252, 245, 0.03) 44%, rgba(100, 74, 42, 0.06) 100%);
}

.HOME-page .HOME-hero-copy::before {
    content: "";
    position: absolute;
    inset: -28px -34px -22px;
    z-index: -1;
    border-radius: 999px;
    background: radial-gradient(ellipse at 42% 58%, rgba(35, 28, 20, 0.34), rgba(35, 28, 20, 0.16) 42%, transparent 74%);
    filter: blur(18px);
    pointer-events: none;
}

.HOME-page .HOME-hero-copy {
    top: clamp(170px, 25vh, 260px);
    bottom: auto;
}

.HOME-page .HOME-title {
    color: rgba(47, 42, 36, 0.9) !important;
    text-shadow:
        0 1px 0 rgba(255, 252, 245, 0.72),
        0 12px 36px rgba(255, 252, 245, 0.48);
}

.HOME-page .HOME-hero-kicker,
.HOME-page .HOME-hero-subtitle {
    color: rgba(47, 42, 36, 0.84) !important;
    text-shadow:
        0 1px 0 rgba(255, 252, 245, 0.72),
        0 10px 28px rgba(255, 252, 245, 0.46);
}

.HOME-page .HOME-fluid-panel {
    background-color: rgba(255, 252, 245, 0.1);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.36),
        inset 0 -12px 24px rgba(60, 78, 104, 0.06),
        0 12px 30px rgba(90, 104, 128, 0.12),
        calc(-14px * var(--home-fluid-ca)) 0 calc(18px * var(--home-fluid-ca)) rgba(255, 118, 118, 0.22),
        calc(14px * var(--home-fluid-ca)) 0 calc(18px * var(--home-fluid-ca)) rgba(92, 230, 255, 0.22);
}

.HOME-page .HOME-fluid-panel::before,
.HOME-page .HOME-fluid-panel::after,
.HOME-page .HOME-fluid-panel > .HOME-fluid-transition,
.HOME-page .HOME-fluid-panel > .HOME-fluid-caustic {
    opacity: 0.7;
}

.HOME-page .HOME-card-marquee {
    margin-top: 50px !important;
    padding: 42px 0 30px;
    border-top: 1px solid rgba(133, 118, 96, 0.13);
    border-bottom: 1px solid rgba(133, 118, 96, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 252, 245, 0), rgba(238, 231, 219, 0.58) 42%, rgba(255, 252, 245, 0.08) 100%);
}

.HOME-page .HOME-section-heading {
    position: relative;
}

.HOME-page .HOME-section-heading::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(96, 116, 93, 0.76), rgba(185, 130, 67, 0.2));
}

.HOME-page .HOME-card-item .card {
    width: var(--home-card-width) !important;
    min-height: 286px;
    border: none !important;
}

.HOME-page .HOME-card-copy {
    display: flex !important;
    min-height: 92px;
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
    padding: 18px 14px 16px;
    text-align: center;
}

.HOME-page .HOME-card-item .card-title {
    margin-bottom: 6px;
    font-size: 1.08rem;
    line-height: 1.2;
}

.HOME-page .HOME-card-caption {
    min-height: 2.8em;
    margin: 0;
    color: #756a5d;
    font-size: 0.82rem;
    line-height: 1.4;
}

.HOME-page .HOME-round-img {
    min-height: 188px;
    max-height: 188px;
    border-radius: 8px 8px 0 0 !important;
    object-fit: cover;
}

.HOME-page .HOME-card-item a:focus-visible .card,
.HOME-page .HOME-card-arrow:focus-visible {
    outline: 2px solid rgba(96, 116, 93, 0.56);
    outline-offset: 4px;
}

.HOME-page .HOME-card-arrow {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.HOME-page .HOME-card-arrow.is-active,
.HOME-page .HOME-card-arrow:hover,
.HOME-page .HOME-card-arrow:focus-visible {
    border-color: rgba(96, 116, 93, 0.46) !important;
    background: rgba(255, 252, 245, 0.92) !important;
    color: #2f472f !important;
}

.HOME-page .HOME-card-marquee.is-paused .HOME-card-track {
    animation-play-state: paused;
}

.HOME-page .HOME-card-marquee.is-paused .HOME-card-viewport {
    cursor: default;
}

.HOME-page .HOME-card-grid {
    overflow: visible;
}

.HOME-page .HOME-card-grid .HOME-card-viewport {
    width: 100%;
    overflow: visible;
}

.HOME-page .HOME-card-grid .HOME-card-track {
    display: grid;
    width: min(940px, calc(100% - 32px));
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, var(--home-card-width)));
    justify-content: center;
    gap: 18px;
    padding: 0;
    animation: none !important;
    transform: none !important;
}

.HOME-page .HOME-card-grid .HOME-card-item {
    width: 100%;
    min-width: 0;
}

.HOME-page .HOME-card-grid .HOME-card-item .card {
    width: 100% !important;
}

.HOME-latest-section {
    margin-top: 34px;
    padding: 28px 0 8px;
    border-top: 1px solid rgba(133, 118, 96, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 252, 245, 0.26), rgba(238, 231, 219, 0.28) 44%, rgba(255, 252, 245, 0));
}

.HOME-page .HOME-section-heading-latest {
    margin-top: 0;
}

.HOME-blog-card-section {
    margin-top: 22px !important;
    padding: 0;
}

.HOME-page #home-blog-cards {
    min-height: 1648px;
}

.HOME-page .HOME-blog-fade {
    transition: opacity 1.8s ease;
}

.HOME-page #home-blog-cards .HOME-blog-glow-panel,
.HOME-page #home-blog-cards .ALL-post-hover {
    width: min(57rem, calc(100% - 32px)) !important;
    min-height: 304px;
    max-height: none !important;
    border-radius: 8px !important;
}

.HOME-page #home-blog-cards .HOME-blog-media {
    display: flex;
    min-height: 304px;
    overflow: hidden;
}

.HOME-page #home-blog-cards .home-blog-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 304px;
    object-fit: cover;
}

.HOME-page #home-blog-cards .home-blog-body {
    min-height: 304px;
    padding: 30px 32px 24px;
}

.HOME-page #home-blog-cards .home-blog-title {
    display: -webkit-box;
    min-height: 3.05em !important;
    margin: 0 0 12px !important;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.18rem;
    line-height: 1.42;
}

.HOME-page #home-blog-cards .home-blog-intro {
    display: -webkit-box;
    min-height: 8.55em !important;
    max-height: none !important;
    min-width: 0 !important;
    margin: 0 0 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-height: 1.7;
}

.HOME-page #home-blog-cards .home-blog-meta {
    margin: auto 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(133, 118, 96, 0.16);
}

.HOME-blog-progress {
    width: min(57rem, calc(100% - 32px));
    height: 3px;
    margin: 8px auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(133, 118, 96, 0.16);
}

.HOME-blog-progress.is-static {
    display: none;
}

.HOME-blog-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(96, 116, 93, 0.74), rgba(185, 130, 67, 0.38));
    transform: scaleX(0);
    transform-origin: left center;
}

.HOME-blog-progress-bar.is-running {
    animation: home-blog-progress-fill linear forwards;
}

@keyframes home-blog-progress-fill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.HOME-more-row {
    margin-top: 26px;
}

.HOME-page .HOME-more-btn {
    letter-spacing: 0.02em;
}

.HOME-page.HOME-quote-soft .QUOTE-sidebar:not(.is-dragging) {
    opacity: 0.46;
    filter: saturate(0.92);
}

@media screen and (max-width: 991.98px) {
    .HOME-page .HOME-img-main {
        min-height: 540px;
    }

    .HOME-page .HOME-hero-copy {
        top: 112px;
        bottom: auto;
    }

    .HOME-page .HOME-card-marquee {
        padding-top: 34px;
        padding-bottom: 26px;
    }

    .HOME-page .HOME-card-copy {
        min-height: 88px;
        padding: 16px 12px 14px;
    }

    .HOME-page .HOME-card-grid .HOME-card-track {
        width: min(430px, calc(100% - 28px));
        grid-template-columns: repeat(2, minmax(0, var(--home-card-width)));
    }

    .HOME-page #home-blog-cards {
        min-height: 1560px;
    }

    .HOME-page #home-blog-cards .HOME-blog-glow-panel,
    .HOME-page #home-blog-cards .ALL-post-hover {
        width: calc(100% - 28px) !important;
    }

    .HOME-page #home-blog-cards .home-blog-body {
        padding: 24px 24px 20px;
    }
}

@media screen and (max-width: 767.98px) {
    .HOME-page #home-blog-cards {
        min-height: 2920px;
    }

    .HOME-page #home-blog-cards .HOME-blog-media,
    .HOME-page #home-blog-cards .home-blog-img {
        min-height: 216px;
        height: 216px;
    }

    .HOME-page #home-blog-cards .home-blog-body {
        min-height: 260px;
    }

    .HOME-page #home-blog-cards .home-blog-title {
        min-height: 0 !important;
    }
}

@media screen and (max-width: 575.98px) {
    .HOME-page .HOME-img-main {
        min-height: 486px;
        height: 74vh;
    }

    .HOME-page .HOME-title {
        font-size: clamp(3.4rem, 20vw, 5.4rem);
    }

    .HOME-hero-copy {
        top: 84px;
    }

    .HOME-page .HOME-card-marquee {
        --home-card-width: 164px;
        --home-card-gap: 14px;
        padding-top: 30px;
    }

    .HOME-page .HOME-round-img {
        min-height: 138px;
        max-height: 138px;
    }

    .HOME-page .HOME-card-item .card {
        min-height: 236px;
    }

    .HOME-page .HOME-card-grid .HOME-card-track {
        width: min(342px, calc(100% - 28px));
        grid-template-columns: repeat(2, minmax(0, var(--home-card-width)));
        gap: 12px;
    }

    .HOME-page .HOME-card-copy {
        min-height: 98px;
    }

    .HOME-page .HOME-card-caption {
        font-size: 0.76rem;
    }

    .HOME-page .HOME-card-arrow {
        --home-arrow-width: 34px;
        --home-arrow-height: 82px;
        font-size: 22px;
    }

    .HOME-latest-section {
        margin-top: 26px;
        padding-top: 24px;
    }

    .HOME-page #home-blog-cards {
        min-height: 2860px;
    }

    .HOME-page #home-blog-cards .home-blog-body {
        padding: 20px 18px 18px;
    }

    .HOME-page #home-blog-cards .home-blog-intro {
        min-height: 6.9em !important;
        -webkit-line-clamp: 4;
    }

    .HOME-page.HOME-quote-soft .QUOTE-sidebar:not(:hover):not(:focus-within) {
        opacity: 0.36;
    }
}

@media (prefers-reduced-motion: reduce) {
    .HOME-page .HOME-card-track,
    .HOME-page .HOME-card-marquee.is-reduced-motion .HOME-card-track {
        animation: none !important;
        transform: none !important;
    }

    .HOME-page .HOME-blog-progress-bar,
    .HOME-page .HOME-blog-progress-bar.is-running {
        animation: none !important;
        transform: scaleX(1);
    }

    .HOME-page .HOME-blog-fade,
    .HOME-page .HOME-card-arrow {
        transition: none !important;
    }
}

/* Latest writing alignment overrides */
.HOME-page #home-blog-cards .HOME-blog-fade {
    width: min(57rem, calc(100% - 32px));
    margin: 0 auto;
}

.HOME-page #home-blog-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.HOME-page #home-blog-cards .HOME-blog-card-section {
    width: 100%;
    margin: 22px 0 0 !important;
    padding: 0;
}

.HOME-page #home-blog-cards .home-blog-link {
    display: block;
    width: 100%;
}

.HOME-page #home-blog-cards .HOME-blog-glow-panel,
.HOME-page #home-blog-cards .ALL-post-hover {
    width: 100% !important;
    height: 304px !important;
    min-height: 304px !important;
    max-height: 304px !important;
    margin-right: 0;
    margin-left: 0;
}

.HOME-page #home-blog-cards .HOME-blog-media,
.HOME-page #home-blog-cards .home-blog-copy,
.HOME-page #home-blog-cards .home-blog-body {
    height: 304px !important;
    min-height: 304px !important;
    max-height: 304px !important;
}

.HOME-page #home-blog-cards .home-blog-img {
    display: block;
    width: 100%;
    height: 304px !important;
    min-height: 304px !important;
    max-height: 304px !important;
    object-fit: cover;
}

@media screen and (max-width: 991.98px) {
    .HOME-page #home-blog-cards .HOME-blog-fade {
        width: calc(100% - 28px);
    }
}

@media screen and (max-width: 767.98px) {
    .HOME-page #home-blog-cards .HOME-blog-glow-panel,
    .HOME-page #home-blog-cards .ALL-post-hover {
        height: 476px !important;
        min-height: 476px !important;
        max-height: 476px !important;
    }

    .HOME-page #home-blog-cards .HOME-blog-media,
    .HOME-page #home-blog-cards .home-blog-img {
        height: 216px !important;
        min-height: 216px !important;
        max-height: 216px !important;
    }

    .HOME-page #home-blog-cards .home-blog-copy,
    .HOME-page #home-blog-cards .home-blog-body {
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
    }
}

@media screen and (max-width: 575.98px) {
    .HOME-page #home-blog-cards .HOME-blog-fade {
        width: calc(100% - 24px);
    }
}

/* About entry SVG */
.HOME-nav-links .HOME-nav-link {
    width: 118px;
    min-width: 118px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.HOME-nav-links .dropdown-toggle.HOME-nav-link::after {
    flex: 0 0 auto;
    margin-left: 8px;
}

.HOME-about-link {
    width: 118px;
    min-width: 118px;
    min-height: 0;
    padding: 6px 10px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px !important;
    border: 0 !important;
    box-shadow: none !important;
    line-height: 1.5;
    vertical-align: top;
}

.HOME-about-svg {
    width: 25px;
    height: 25px;
    display: block;
    flex: 0 0 auto;
    overflow: visible;
    transform-origin: 50% 50%;
    transition:
        transform 180ms ease,
        filter 180ms ease;
}

.HOME-about-link:hover,
.HOME-about-link:focus-visible {
    background: rgba(255, 252, 245, 0.9) !important;
    box-shadow: none !important;
}

.HOME-about-link:hover .HOME-about-svg,
.HOME-about-link:focus-visible .HOME-about-svg {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.HOME-about-link:focus-visible {
    outline: 2px solid rgba(96, 116, 93, 0.48);
    outline-offset: 4px;
}

@media screen and (max-width: 991.98px) {
    .HOME-nav-links .HOME-nav-link {
        width: 104px;
        min-width: 104px;
    }

    .HOME-about-link {
        width: 104px;
        min-width: 104px;
        min-height: 38px;
        padding: 8px 12px !important;
        border: 1px solid rgba(133, 118, 96, 0.16) !important;
    }

    .HOME-about-svg {
        width: 20px;
        height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .HOME-about-svg {
        transition: none;
    }

    .HOME-about-link:hover .HOME-about-svg,
    .HOME-about-link:focus-visible .HOME-about-svg {
        transform: none;
    }
}
