/* ============================================================
   BLOG — Hands Of Love Foundation
   Reference-aligned layout with smooth, modern motion
   Burgundy + gold palette
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

/* ---------- Page background ---------- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.blog-page {
    background: #FAF6F4;
    font-family: Arial, Helvetica, sans-serif;
    color: #1A0E12;
    -webkit-font-smoothing: antialiased;

    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


/* ============================================================
   HEADER + STORIES BAR
   3-column grid: 180px | 1fr | 260px
   ============================================================ */

.blog-header {
    flex-shrink: 0;
    background: #ffffff;
    border-bottom: 1px solid #EDE3E6;
    box-shadow: 0 1px 3px rgba(107, 30, 46, 0.04);
    z-index: 100;
    position: relative;
}

.blog-header-row,
.blog-stories-row {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    display: grid;
    grid-template-columns: 180px 1fr 260px;
    gap: 40px;
    align-items: center;
}

.blog-header-row {
    padding-top: 12px;
    padding-bottom: 6px;
    min-height: 68px;
}

/* ---------- Column 1: Logo ---------- */
.blog-header-logo {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
}

.blog-header-logo img {
    height: 44px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-header-logo:hover img {
    transform: scale(1.03);
}

/* ---------- Column 2: Nav icons ---------- */
.blog-header-icons {
    grid-column: 2;
    justify-self: center;
    width: 100%;
    max-width: 560px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-header-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #C5B0B6;
    font-size: 1.85rem;
    border-radius: 10px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.blog-header-icon:hover {
    color: #6B1E2E;
    background: #F5EEF0;
    transform: translateY(-2px);
}

.blog-header-icon.active {
    color: #6B1E2E;
}

/* ---------- Column 3: Search ---------- */
.blog-header-search {
    grid-column: 3;
    justify-self: stretch;
    position: relative;
    width: 100%;
    z-index: 200;
}

.blog-header-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8A6F78;
    font-size: 0.9rem;
    pointer-events: none;
}

.blog-header-search input {
    width: 100%;
    height: 44px;
    padding: 0 18px 0 42px;
    background: #F5EEF0;
    border: 1px solid transparent;
    border-radius: 22px;
    font-family: inherit;
    font-size: 0.88rem;
    color: #1A0E12;
    outline: none;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-header-search input::placeholder {
    color: #8A6F78;
}

.blog-header-search input:focus {
    background: #ffffff;
    border-color: #6B1E2E;
    box-shadow: 0 0 0 4px rgba(107, 30, 46, 0.10);
}


/* ============================================================
   STORIES BAR
   ============================================================ */
.blog-stories-bar {
    flex-shrink: 0;
    background: #ffffff;
    border-bottom: 1px solid #EDE3E6;
    z-index: 99;
}

.blog-stories-row {
    padding-top: 4px;
    padding-bottom: 16px;
}

.blog-stories-inner {
    grid-column: 2;
    justify-self: center;
    width: 100%;
    max-width: 560px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-stories-viewport {
    flex: 1;
    overflow: hidden;
    padding: 4px 0;

    -webkit-mask-image: linear-gradient(
        to right,
        black 0,
        black calc(100% - 28px),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        black 0,
        black calc(100% - 28px),
        transparent 100%
    );
}

.blog-stories-track {
    display: flex;
    gap: 8px;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.blog-story-card {
    position: relative;
    flex: 0 0 66px;
    height: 100px;
    padding: 0;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #EDE3E6;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease;
}

.blog-story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 30, 46, 0.14);
}

.blog-story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-story-card:hover img {
    transform: scale(1.08);
}

.blog-story-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 44px;
    background: linear-gradient(to top, rgba(53, 16, 24, 0.78), rgba(53, 16, 24, 0));
    pointer-events: none;
}

.blog-story-title {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.15;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.blog-stories-arrow {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #6B1E2E;
    border: 1px solid #EDE3E6;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.82rem;
    z-index: 3;
    transition: background 0.3s ease, color 0.3s ease,
                transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-stories-arrow:hover {
    background: #6B1E2E;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(107, 30, 46, 0.25);
}

.blog-stories-arrow[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* ---------- Column 3: Give Today ---------- */
.blog-give-cell {
    grid-column: 3;
    justify-self: stretch;
    width: 100%;
}

.blog-give-today {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 50px;
    padding: 0 24px;
    background: #C9A24B;
    color: #351018;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #B08B36;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(201, 162, 75, 0.20);
    transition: background 0.3s ease, transform 0.3s ease,
                box-shadow 0.3s ease;
}

.blog-give-today:hover {
    background: #E0C77A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 162, 75, 0.35);
}

.blog-give-today i {
    font-size: 1.1rem;
}


/* ============================================================
   MAIN THREE-COLUMN LAYOUT
   ============================================================ */
.blog-main {
    flex: 1;
    min-height: 0;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 32px 0;
    display: grid;
    grid-template-columns: 180px 1fr 260px;
    gap: 40px;
    align-items: stretch;
    overflow: hidden;
}


/* ============================================================
   LEFT SIDEBAR
   ============================================================ */
.blog-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 190px;
}

.blog-left-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-nav-group { display: flex; flex-direction: column; }

.blog-nav-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #E5D5D9;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #6B1E2E;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease, border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.blog-nav-btn:hover {
    background: #FAF0F2;
    border-color: #6B1E2E;
    box-shadow: 0 2px 8px rgba(107, 30, 46, 0.08);
}

.blog-nav-btn i {
    font-size: 0.62rem;
    color: #A88A92;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-nav-group.open .blog-nav-btn i {
    transform: rotate(180deg);
    color: #6B1E2E;
}

.blog-nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #E5D5D9;
    border-top: none;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-nav-group.open .blog-nav-submenu {
    max-height: 400px;
    padding: 6px 0;
}

.blog-nav-submenu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.76rem;
    color: #6B1E2E;
    text-decoration: none;
    transition: background 0.25s ease, padding-left 0.25s ease;
}

.blog-nav-submenu li a:hover {
    background: #F5EEF0;
    padding-left: 22px;
}

.blog-ask-btn {
    display: block;
    margin-top: 10px;
    padding: 14px 14px;
    background: #C9A24B;
    color: #351018;
    font-family: inherit;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: 1px solid #B08B36;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease,
                box-shadow 0.3s ease;
}

.blog-ask-btn:hover {
    background: #E0C77A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 162, 75, 0.30);
}


/* ============================================================
   CENTRAL FEED
   ============================================================ */
.blog-feed {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px;
    width: 100%;
    justify-self: center;

    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 12px 40px 4px;
    scroll-behavior: smooth;

    scrollbar-width: thin;
    scrollbar-color: #D5C4C9 transparent;
}

.blog-feed::-webkit-scrollbar {
    width: 8px;
}

.blog-feed::-webkit-scrollbar-track {
    background: transparent;
}

.blog-feed::-webkit-scrollbar-thumb {
    background: #D5C4C9;
    border-radius: 4px;
}

.blog-feed::-webkit-scrollbar-thumb:hover {
    background: #8A6F78;
}

.blog-post {
    background: #ffffff;
    border: 1px solid #EDE3E6;
    border-radius: 10px;
    padding: 14px 14px 0;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.blog-post:hover {
    box-shadow: 0 6px 20px rgba(107, 30, 46, 0.05);
}

.blog-post-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.blog-post-avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: #F5EEF0;
}

.blog-post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-meta { padding-top: 2px; }

.blog-post-author {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1A0E12;
    margin: 0 0 2px;
    line-height: 1.25;
}

.blog-post-status {
    font-weight: 400;
    font-size: 0.78rem;
    color: #8A6F78;
    margin-left: 4px;
}

.blog-post-date {
    font-size: 0.72rem;
    color: #A88A92;
    margin: 0;
}

.blog-post-text {
    margin-bottom: 12px;
}

.blog-post-summary p,
.blog-post-full p {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #1A0E12;
    margin: 0 0 8px;
    font-weight: 400;
}

.blog-post-more,
.blog-post-less {
    background: none;
    border: none;
    padding: 0;
    margin-left: 4px;
    font-family: inherit;
    font-size: 0.82rem;
    color: #8A6F78;
    cursor: pointer;
    transition: color 0.25s ease;
}

.blog-post-more:hover,
.blog-post-less:hover {
    color: #6B1E2E;
    text-decoration: underline;
}

.blog-post-image {
    margin: 0 -14px;
    background: #F5EEF0;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.02);
}

.blog-post-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #EDE3E6;
    margin-top: 14px;
}

.blog-post-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    color: #8A6F78;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.25s ease, color 0.25s ease,
                transform 0.25s ease;
}

.blog-post-action:hover {
    background: #F5EEF0;
    color: #6B1E2E;
    transform: translateY(-1px);
}

.blog-post-action.liked {
    color: #6B1E2E;
}

.blog-post-action.liked i {
    color: #6B1E2E;
}

.blog-post-action i { font-size: 0.9rem; }

.blog-post-comments {
    padding: 12px 0 14px;
    border-top: 1px solid #EDE3E6;
}

.blog-comment-input {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-comment-input input {
    flex: 1;
    height: 38px;
    padding: 0 14px;
    border: 1px solid #EDE3E6;
    border-radius: 20px;
    background: #F5EEF0;
    font-family: inherit;
    font-size: 0.84rem;
    color: #1A0E12;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease,
                box-shadow 0.3s ease;
}

.blog-comment-input input:focus {
    border-color: #6B1E2E;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(107, 30, 46, 0.08);
}

.blog-comment-input button {
    height: 38px;
    padding: 0 18px;
    background: #C9A24B;
    color: #351018;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid #B08B36;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.blog-comment-input button:hover {
    background: #E0C77A;
    transform: translateY(-1px);
}

.blog-comment-empty {
    margin: 12px 0 0;
    font-size: 0.78rem;
    color: #A88A92;
    text-align: center;
}


/* ============================================================
   FEED END
   ============================================================ */
.blog-feed-end {
    display: flex;
    justify-content: center;
    padding: 32px 0 8px;
}

.blog-back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: #C9A24B;
    color: #351018;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 1px solid #B08B36;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(201, 162, 75, 0.20);
    transition: background 0.3s ease, transform 0.3s ease,
                box-shadow 0.3s ease;
}

.blog-back-to-top:hover {
    background: #E0C77A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 75, 0.35);
}


/* ============================================================
   RIGHT SIDEBAR
   ============================================================ */
.blog-right {
    position: sticky;
    top: 190px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-side-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 1.9rem;
    font-weight: 700;
    color: #6B1E2E;
    line-height: 1.05;
    margin: 0;
    text-align: left;
}

.blog-side-sub {
    font-size: 0.84rem;
    color: #6B1E2E;
    text-align: left;
    margin: 0 0 6px;
    line-height: 1.4;
}

.blog-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-newsletter input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    background: transparent;
    border: 1px solid #6B1E2E;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.86rem;
    color: #1A0E12;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease,
                box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-newsletter input::placeholder { color: #8A6F78; }

.blog-newsletter input:hover {
    border-color: #4A1320;
}

.blog-newsletter input:focus {
    border-color: #6B1E2E;
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(107, 30, 46, 0.12),
        0 2px 8px rgba(107, 30, 46, 0.06);
    transform: translateY(-1px);
}

.blog-signup-btn {
    width: 100%;
    height: 48px;
    margin-top: 4px;
    background: #C9A24B;
    color: #351018;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid #B08B36;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease,
                box-shadow 0.3s ease;
}

.blog-signup-btn:hover {
    background: #E0C77A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 162, 75, 0.3);
}

.blog-social {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.blog-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.45rem;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-social-icon:hover { transform: scale(1.12) translateY(-2px); }

.blog-social-fb { color: #6B1E2E; }
.blog-social-ig { color: #8B2E42; }
.blog-social-yt { color: #8B2E42; }

.blog-side-copy {
    font-size: 0.62rem;
    line-height: 1.5;
    color: #A88A92;
    text-align: center;
    margin: 20px 0 0;
}


/* ============================================================
   STORY MODAL
   ============================================================ */
.story-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.story-modal[hidden] { display: none; }

.story-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 14, 18, 0.85);
    backdrop-filter: blur(3px);
    cursor: pointer;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.story-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 780px;
    max-height: 92vh;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(53, 16, 24, 0.5);
    animation: modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.story-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #EDE3E6;
}

.story-modal-title {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6B1E2E;
    margin: 0;
}

.story-modal-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #8A6F78;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.25s ease, color 0.25s ease,
                transform 0.35s ease;
}

.story-modal-close:hover {
    background: #F5EEF0;
    color: #6B1E2E;
    transform: rotate(90deg);
}

.story-modal-media {
    position: relative;
    flex: 1;
    min-height: 0;
    background: #1A0E12;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-modal-media img {
    width: 100%;
    height: auto;
    max-height: 68vh;
    object-fit: contain;
    display: block;
    animation: img-fade 0.4s ease;
}

@keyframes img-fade {
    from { opacity: 0; transform: scale(0.99); }
    to   { opacity: 1; transform: scale(1); }
}

.story-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #6B1E2E;
    border: none;
    border-radius: 50%;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 3;
}

.story-modal-arrow:hover {
    background: #C9A24B;
    transform: translateY(-50%) scale(1.08);
}

.story-modal-prev { left: 16px; }
.story-modal-next { right: 16px; }

.story-modal-arrow[disabled] { opacity: 0.35; cursor: not-allowed; }

.story-modal-foot {
    padding: 16px 22px 18px;
    border-top: 1px solid #EDE3E6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-modal-caption {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #1A0E12;
    margin: 0;
}

.story-modal-gallery {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6B1E2E;
    text-decoration: none;
    transition: color 0.25s ease;
}

.story-modal-gallery:hover { color: #4A1320; }
.story-modal-gallery i { transition: transform 0.3s ease; }
.story-modal-gallery:hover i { transform: translateX(5px); }

body.modal-open { overflow: hidden; }


/* ============================================================
   SHARE MENU
   ============================================================ */
.share-menu {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 14, 18, 0.55);
    animation: fade-in 0.25s ease;
}

.share-menu[hidden] { display: none; }

.share-menu-panel {
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 0;
    min-width: 240px;
    box-shadow: 0 20px 60px rgba(53, 16, 24, 0.4);
    animation: modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.share-menu-heading {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #A88A92;
    margin: 0;
    padding: 12px 22px 8px;
}

.share-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 22px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.88rem;
    color: #1A0E12;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.share-menu-item:hover {
    background: #F5EEF0;
    color: #6B1E2E;
}

.share-menu-item i {
    width: 18px;
    text-align: center;
    font-size: 1.05rem;
}


/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================================
   SEARCH SUGGESTIONS
   ============================================================ */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 380px;
    max-height: 420px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #EDE3E6;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(107, 30, 46, 0.14);
    padding: 6px 0;
    z-index: 500;
    animation: search-suggestions-in 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: #D5C4C9 transparent;
}

.search-suggestions::-webkit-scrollbar { width: 6px; }
.search-suggestions::-webkit-scrollbar-thumb {
    background: #D5C4C9;
    border-radius: 3px;
}

@keyframes search-suggestions-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.search-suggestion {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: inherit;
    text-decoration: none;
    color: inherit;
}

.search-suggestion:hover,
.search-suggestion.selected {
    background: #FAF0F2;
}

.search-suggestion-type {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #6B1E2E;
    background: rgba(107, 30, 46, 0.08);
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.search-suggestion-title {
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    color: #1A0E12;
    line-height: 1.3;
    margin: 0 0 4px;
    display: block;
}

.search-suggestion-title mark {
    background: #F5E9C8;
    color: #1A0E12;
    padding: 0 2px;
    border-radius: 2px;
}

.search-suggestion-snippet {
    font-size: 0.78rem;
    line-height: 1.45;
    color: #8A6F78;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-suggestion-snippet mark {
    background: #F5E9C8;
    color: #1A0E12;
    padding: 0 2px;
    border-radius: 2px;
}

.search-empty {
    padding: 16px 20px;
    font-size: 0.84rem;
    color: #A88A92;
    text-align: center;
}

.search-highlight {
    position: relative;
    animation: search-highlight-pulse 1.6s ease;
    border-radius: 10px;
}

@keyframes search-highlight-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.9); }
    40%  { box-shadow: 0 0 0 8px rgba(201, 162, 75, 0.35); }
    100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0); }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .blog-main { grid-template-columns: 160px 1fr 240px; gap: 28px; }
    .blog-header-icons { gap: 44px; }
}

@media (max-width: 900px) {
    .blog-header-row { grid-template-columns: 1fr 1fr; }
    .blog-header-icons { justify-self: end; }
    .blog-header-search { display: none; }
    .blog-stories-row { grid-template-columns: 1fr; }
    .blog-give-cell { justify-self: stretch; width: 100%; }

    .blog-main {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
        gap: 20px;
    }

    .blog-left, .blog-right { position: static; }

    .search-suggestions {
        width: min(90vw, 380px);
        right: auto;
        left: 0;
    }
}

@media (max-width: 640px) {
    .blog-header-row { padding: 10px 16px 6px; }
    .blog-header-icons { gap: 20px; }
    .blog-header-icon { font-size: 1.5rem; width: 44px; height: 44px; }
    .blog-stories-row, .blog-main { padding-left: 16px; padding-right: 16px; }
}