/* ============================================================
   STAR ALUMINIUM — BLOG STYLES
   blog hub + single post + all related components
   ============================================================ */

/* ── Reading Progress Bar (single post only) ───────────── */
.sa-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e01f27, #b01520);
    z-index: 9999;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ── Blog Hero Variant ─────────────────────────────────── */
.sa-hero--blog {
    background-size: cover;
    background-position: center 35%;
    background-image:
        linear-gradient(180deg, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.25) 100%),
        url('../images/product-modular-access-platforms.webp');
}

/* ============================================================
   FEATURED POST (hub top)
   ============================================================ */
.sa-blog-featured {
    background: #fff;
    padding: 56px 0 24px;
}
.sa-blog-featured-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.sa-blog-featured-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #e7e7e4;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.sa-blog-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -16px rgba(28,69,134,0.28);
    border-color: #d8d8d4;
}
.sa-blog-featured-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
}
.sa-blog-featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.sa-blog-featured-card:hover .sa-blog-featured-bg { transform: scale(1.04); }
.sa-blog-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e01f27;
    color: #fff;
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 6px 12px 6px 14px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
    z-index: 2;
}
.sa-blog-featured-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sa-blog-featured-category {
    display: inline-block;
    font-family: 'Axiforma', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e01f27;
    margin-bottom: 14px;
}
.sa-blog-featured-title {
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.15;
    color: #1c4586;
    letter-spacing: -0.015em;
    margin: 0 0 16px;
}
.sa-blog-featured-card:hover .sa-blog-featured-title {
    color: #e01f27;
    transition: color 0.25s ease;
}
.sa-blog-featured-excerpt {
    font-family: 'Axiforma', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sa-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Axiforma', sans-serif;
    font-size: 12px;
    color: #777;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.sa-blog-meta-dot { color: #d8d8d4; }
.sa-blog-meta-author { font-weight: 700; color: #1c4586; }
.sa-blog-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e01f27;
    transition: gap 0.3s ease;
}
.sa-blog-featured-card:hover .sa-blog-featured-cta { gap: 14px; }
.sa-blog-featured-cta svg { transition: transform 0.3s ease; }
.sa-blog-featured-card:hover .sa-blog-featured-cta svg { transform: translateX(3px); }

@media (max-width: 900px) {
    .sa-blog-featured-card { grid-template-columns: 1fr; }
    .sa-blog-featured-body { padding: 28px 24px; }
    .sa-blog-featured-inner { padding: 0 24px; }
}

/* ============================================================
   CATEGORY FILTER (pill row)
   ============================================================ */
.sa-blog-filter {
    background: #fff;
    padding: 24px 0 28px;
    border-bottom: 1px solid #e7e7e4;
    position: sticky;
    top: 0;
    z-index: 10;
}
.sa-blog-filter-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.sa-blog-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sa-blog-filter-row::-webkit-scrollbar { display: none; }
.sa-blog-filter-pill {
    font-family: 'Axiforma', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1c4586;
    text-decoration: none !important;
    padding: 9px 18px;
    border: 1.5px solid #d8d8d4;
    background: #fff;
    border-radius: 999px;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.sa-blog-filter-pill:hover {
    border-color: #1c4586;
    background: #1c4586;
    color: #fff;
}
.sa-blog-filter-pill.is-active {
    border-color: #e01f27;
    background: #e01f27;
    color: #fff;
}

@media (max-width: 900px) {
    .sa-blog-filter-inner { padding: 0 24px; }
    .sa-blog-filter-row { flex-wrap: nowrap; }
}

/* ============================================================
   POST GRID (hub main)
   ============================================================ */
.sa-blog-grid-section {
    background: #f5f5f3;
    padding: 56px 0 72px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.sa-blog-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sa-blog-card {
    background: #fff;
    border: 1px solid #e7e7e4;
    text-decoration: none !important;
    color: inherit;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
}
.sa-blog-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.35s ease, border-color 0.35s ease;
}
.sa-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -14px rgba(28,69,134,0.25);
    border-color: #d8d8d4;
}
.sa-blog-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}
.sa-blog-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.sa-blog-card:hover .sa-blog-card-bg { transform: scale(1.05); }
.sa-blog-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.sa-blog-card-category {
    display: inline-block;
    font-family: 'Axiforma', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #e01f27;
    margin-bottom: 10px;
}
.sa-blog-card-title {
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
    color: #1c4586;
    margin: 0 0 10px;
    letter-spacing: -0.005em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
    position: relative;
}
.sa-blog-card-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e01f27;
    transition: width 0.4s cubic-bezier(.2,.7,.2,1);
}
.sa-blog-card:hover .sa-blog-card-title::after { width: 40px; }
.sa-blog-card-excerpt {
    font-family: 'Axiforma', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sa-blog-card .sa-blog-meta {
    margin-bottom: 0;
    font-size: 11px;
}

@media (max-width: 1024px) {
    .sa-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
    .sa-blog-grid { grid-template-columns: 1fr; padding: 0 24px; }
    .sa-blog-grid-section { padding: 40px 0 56px; }
}

/* ── Empty state ───────────────────────────────────────── */
.sa-blog-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}
.sa-blog-empty h2 {
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #1c4586;
    margin: 0 0 14px;
}
.sa-blog-empty p {
    font-family: 'Axiforma', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.sa-blog-pagination {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.sa-blog-pagination a,
.sa-blog-pagination span {
    font-family: 'Axiforma', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1c4586;
    text-decoration: none !important;
    padding: 10px 16px;
    border: 1.5px solid #d8d8d4;
    background: #fff;
    border-radius: 4px;
    transition: all 0.25s ease;
    min-width: 42px;
    text-align: center;
}
.sa-blog-pagination a:hover {
    border-color: #1c4586;
    background: #1c4586;
    color: #fff;
}
.sa-blog-pagination .current {
    border-color: #1c4586;
    background: #1c4586;
    color: #fff;
}
.sa-blog-pagination .dots {
    border: none;
    background: transparent;
    color: #999;
}

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.sa-blog-newsletter {
    background: #1c4586;
    color: #fff;
    padding: 56px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}
.sa-blog-newsletter::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, rgba(224,31,39,0.22), rgba(224,31,39,0));
    transform: rotate(45deg);
    pointer-events: none;
}
.sa-blog-newsletter-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sa-blog-newsletter-eyebrow {
    display: inline-block;
    font-family: 'Axiforma', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e01f27;
    margin-bottom: 14px;
}
.sa-blog-newsletter h2 {
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.015em;
}
.sa-blog-newsletter p {
    font-family: 'Axiforma', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    margin: 0;
    max-width: 380px;
}
.sa-blog-newsletter-form {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.sa-blog-newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.24);
    border-radius: 4px;
    padding: 13px 18px;
    font-family: 'Axiforma', sans-serif;
    font-size: 14px;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.sa-blog-newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.sa-blog-newsletter-input:focus {
    outline: none;
    border-color: #e01f27;
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}
/* Browser autofill override (Chrome/Edge override yellow bg + dark text) */
.sa-blog-newsletter-input:-webkit-autofill,
.sa-blog-newsletter-input:-webkit-autofill:hover,
.sa-blog-newsletter-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px rgba(28,69,134,0.95) inset;
    caret-color: #fff;
    transition: background-color 9999s ease-out;
}
.sa-blog-newsletter-btn {
    background: #e01f27;
    color: #fff !important;
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    padding: 13px 26px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.sa-blog-newsletter-btn:hover { background: #b01520; transform: translateY(-2px); }
.sa-blog-newsletter-status {
    font-family: 'Axiforma', sans-serif;
    font-size: 13px;
    color: #fff;
    margin-top: 10px;
    min-height: 18px;
}
.sa-blog-newsletter-status.is-success { color: #7ee787; }
.sa-blog-newsletter-status.is-error { color: #ff8b8b; }

@media (max-width: 900px) {
    .sa-blog-newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
    .sa-blog-newsletter-form { flex-direction: column; }
}

/* ============================================================
   SINGLE POST — Hero
   ============================================================ */
.sa-post-hero {
    background: #fff;
    padding: 36px 0 0;
}
.sa-post-hero-inner {
    max-width: 1080px;
    margin: 0 auto 28px;
    padding: 0 40px;
}
.sa-post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Axiforma', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1c4586;
    text-decoration: none !important;
    margin-bottom: 28px;
    transition: color 0.25s ease, gap 0.25s ease;
}
.sa-post-back:hover { color: #e01f27; gap: 12px; }
.sa-post-category {
    display: inline-block;
    font-family: 'Axiforma', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e01f27;
    border: 1.5px solid #e01f27;
    padding: 6px 14px;
    margin-bottom: 22px;
}
.sa-post-title {
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.08;
    color: #1c4586;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    max-width: 920px;
}
.sa-post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Axiforma', sans-serif;
    font-size: 13px;
    color: #555;
    flex-wrap: wrap;
}
.sa-post-meta-author { font-weight: 800; color: #1c4586; }
.sa-post-share-quick {
    display: flex;
    gap: 6px;
    margin-left: auto;
}
.sa-post-share-quick a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #d8d8d4;
    border-radius: 4px;
    color: #1c4586;
    transition: all 0.25s ease;
}
.sa-post-share-quick a:hover {
    border-color: #e01f27;
    background: #e01f27;
    color: #fff;
}
.sa-post-hero-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    aspect-ratio: 21 / 9;
    background-size: cover;
    background-position: center;
    background-color: #111;
    margin-bottom: 56px;
}

@media (max-width: 900px) {
    .sa-post-hero-inner { padding: 0 24px; }
    .sa-post-hero-image { aspect-ratio: 16 / 10; margin-bottom: 36px; }
    .sa-post-share-quick { margin-left: 0; width: 100%; margin-top: 8px; }
}

/* ============================================================
   SINGLE POST — Body + TOC
   ============================================================ */
.sa-post-body-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 60px;
    margin-bottom: 64px;
}
.sa-post-content {
    grid-column: 2 / 3;
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Axiforma', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a2a;
}
.sa-post-content > p { margin: 0 0 24px; }
.sa-post-content h2 {
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    color: #1c4586;
    margin: 48px 0 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e01f27;
    display: inline-block;
    letter-spacing: -0.01em;
}
.sa-post-content h3 {
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.25;
    color: #1c4586;
    margin: 36px 0 16px;
    letter-spacing: -0.005em;
}
.sa-post-content ul, .sa-post-content ol {
    padding-left: 24px;
    margin: 0 0 24px;
}
.sa-post-content li { margin-bottom: 8px; }
.sa-post-content ul li::marker { color: #e01f27; }
.sa-post-content a {
    color: #1c4586;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}
.sa-post-content a:hover { color: #e01f27; }
.sa-post-content blockquote {
    border-left: 4px solid #e01f27;
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    font-family: 'Axiforma', sans-serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: #1c4586;
}
.sa-post-content blockquote p:last-child { margin: 0; }
.sa-post-content pre, .sa-post-content code {
    font-family: 'JetBrains Mono', Consolas, 'Courier New', monospace;
    font-size: 14px;
    background: #f5f5f3;
    border-left: 3px solid #e01f27;
    padding: 4px 8px;
    border-radius: 2px;
}
.sa-post-content pre {
    padding: 16px 20px;
    overflow-x: auto;
    margin: 24px 0;
}
.sa-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 32px 0 8px;
}
.sa-post-content figure { margin: 32px 0; }
.sa-post-content figcaption {
    font-family: 'Axiforma', sans-serif;
    font-size: 13px;
    font-style: italic;
    color: #777;
    text-align: center;
    margin-top: 8px;
}

/* ── Sticky TOC (left aside) ───────────────────────────── */
.sa-post-toc {
    grid-column: 1 / 2;
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: 8px;
}
.sa-post-toc-title {
    font-family: 'Axiforma', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e01f27;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e01f27;
}
.sa-post-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sa-post-toc-list li { margin-bottom: 12px; }
.sa-post-toc-list a {
    font-family: 'Axiforma', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
    text-decoration: none !important;
    display: block;
    padding: 6px 0 6px 12px;
    border-left: 2px solid #e7e7e4;
    transition: all 0.2s ease;
}
.sa-post-toc-list a:hover {
    color: #1c4586;
    border-left-color: #1c4586;
}
.sa-post-toc-list a.is-active {
    color: #e01f27;
    border-left-color: #e01f27;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .sa-post-body-wrap {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 24px;
    }
    .sa-post-toc { display: none; }
    .sa-post-content { grid-column: 1; }
}

/* ============================================================
   SINGLE POST — Share + Author + Related
   ============================================================ */
.sa-post-footer-wrap {
    max-width: 720px;
    margin: 0 auto 64px;
    padding: 0 40px;
}
.sa-post-share {
    border-top: 1px solid #e7e7e4;
    border-bottom: 1px solid #e7e7e4;
    padding: 22px 0;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sa-post-share-label {
    font-family: 'Axiforma', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #1c4586;
}
.sa-post-share-buttons {
    display: flex;
    gap: 8px;
}
.sa-post-share-buttons a, .sa-post-share-buttons button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #d8d8d4;
    background: #fff;
    border-radius: 4px;
    color: #1c4586;
    cursor: pointer;
    transition: all 0.25s ease;
}
.sa-post-share-buttons a:hover, .sa-post-share-buttons button:hover {
    border-color: #e01f27;
    background: #e01f27;
    color: #fff;
}

.sa-post-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: #f5f5f3;
    border: 1px solid #e7e7e4;
    border-radius: 4px;
}
.sa-post-author-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: #1c4586;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Axiforma', sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.04em;
}
.sa-post-author-body {
    font-family: 'Axiforma', sans-serif;
}
.sa-post-author-name {
    font-weight: 800;
    font-size: 14px;
    color: #1c4586;
    margin: 0 0 4px;
}
.sa-post-author-bio {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Toast confirmation (copy link) */
.sa-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1c4586;
    color: #fff;
    padding: 12px 22px;
    border-radius: 4px;
    font-family: 'Axiforma', sans-serif;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 32px -10px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9998;
}
.sa-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Related Posts (single bottom) ─────────────────────── */
.sa-post-related {
    background: #fff;
    padding: 56px 0;
    border-top: 1px solid #e7e7e4;
}
.sa-post-related-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.sa-post-related-title {
    font-family: 'Axiforma', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.2vw, 30px);
    color: #1c4586;
    margin: 0 0 32px;
    letter-spacing: -0.01em;
}

@media (max-width: 900px) {
    .sa-post-footer-wrap { padding: 0 24px; }
    .sa-post-related-inner { padding: 0 24px; }
}
