/* Deer Fight Gear — Blog pages · 2030 premium (#000 #FFF #E60000 #C9A227) */

.blog-page {
    overflow-x: hidden;
    background: #000000;
}

/* ── Listing hero ───────────────────────────────────── */

.blog-hero {
    position: relative;
    min-height: var(--page-hero-min-height);
    display: flex;
    align-items: flex-end;
    padding: var(--page-hero-padding-top) var(--page-hero-padding-x) var(--page-hero-padding-bottom);
    overflow: hidden;
    background: #000000;
}

.blog-hero__bg {
    position: absolute;
    inset: 0;
}

.blog-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: blogHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes blogHeroZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.1); }
}

.blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #000000 0%, #000000 40%, transparent 100%);
}

.blog-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.blog-hero__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid #C9A227;
    border-radius: 999px;
    color: #C9A227;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.blog-hero h1 {
    margin: 0 0 14px;
    max-width: 14ch;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #FFFFFF;
}

.blog-hero p {
    margin: 0 0 24px;
    max-width: 52ch;
    font-size: 1rem;
    line-height: 1.7;
    color: #B0B0B0;
}

.blog-hero__btn {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 28px;
    border: 2px solid #E60000;
    border-radius: 999px;
    background: #E60000;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.35s ease, transform 0.35s ease;
}

.blog-hero__btn:hover {
    transform: translateY(-3px);
    background: #000000;
    color: #FFFFFF;
}

/* ── Toolbar ────────────────────────────────────────── */

.blog-toolbar {
    padding: 24px 5vw;
    background: #000000;
    border-bottom: 1px solid #1A1A1A;
}

.blog-toolbar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1180px;
    margin: 0 auto;
}

.blog-toolbar input,
.blog-toolbar select {
    flex: 1;
    min-width: 180px;
    padding: 14px 18px;
    border: 1px solid #333333;
    border-radius: 12px;
    background: #0A0A0A;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.25s ease;
}

.blog-toolbar input:focus,
.blog-toolbar select:focus {
    outline: none;
    border-color: #C9A227;
}

.blog-toolbar button {
    padding: 14px 28px;
    border: 2px solid #E60000;
    border-radius: 999px;
    background: #E60000;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-toolbar button:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* ── Listing section ────────────────────────────────── */

.blog-listing {
    position: relative;
    padding: clamp(48px, 6vw, 72px) 5vw clamp(64px, 8vw, 96px);
    background: #000000;
}

.blog-listing::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(#111111 1px, transparent 1px),
        linear-gradient(90deg, #111111 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000000 0%, transparent 85%);
}

.blog-listing__head {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto 40px;
}

.blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #E60000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.blog-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #E60000;
}

.blog-listing__head h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #C9A227;
}

.blog-listing__head p {
    margin: 0;
    font-size: 0.92rem;
    color: #888888;
}

.blog-empty {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px;
    border: 1px dashed #333333;
    border-radius: 16px;
    text-align: center;
    color: #888888;
}

/* ── Blog cards ─────────────────────────────────────── */

.blog-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
}

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #1A1A1A;
    border-radius: 16px;
    overflow: hidden;
    background: #0A0A0A;
    transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.blog-card__hit {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 16px;
}

.blog-card.is-in:hover {
    border-color: #C9A227;
    transform: translateY(-6px);
    box-shadow: 0 24px 56px #050505;
}

.blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000000;
}

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

.blog-card.is-in:hover .blog-card__media img {
    transform: scale(1.06);
}

.blog-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, #000000 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.blog-card.is-in:hover .blog-card__overlay {
    opacity: 0.85;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 26px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card__cat {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #E60000;
}

.blog-card__meta time {
    font-size: 0.72rem;
    font-weight: 600;
    color: #666666;
}

.blog-card h2,
.blog-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.35;
    color: #FFFFFF;
    transition: color 0.25s ease;
}

.blog-card.is-in:hover h2,
.blog-card.is-in:hover h3 {
    color: #C9A227;
}

.blog-card__body > p {
    margin: 0 0 20px;
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #999999;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #C9A227;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-card__link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.blog-card__link:hover {
    color: #FFFFFF;
    gap: 12px;
}

.blog-card__link:hover svg {
    transform: translateX(3px);
}

/* ── Article detail hero ────────────────────────────── */

.blog-detail-hero {
    position: relative;
    min-height: clamp(520px, 70vh, 660px);
    display: flex;
    align-items: flex-end;
    padding: var(--page-hero-padding-top) var(--page-hero-padding-x) var(--page-hero-padding-bottom);
    overflow: hidden;
    background: #000000;
}

.blog-detail-hero__bg {
    position: absolute;
    inset: 0;
}

.blog-detail-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.blog-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #000000 0%, #000000 45%, transparent 100%);
}

.blog-detail-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.blog-detail-hero__back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    color: #C9A227;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-detail-hero__back:hover {
    color: #FFFFFF;
}

.blog-detail-hero__cat {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid #E60000;
    border-radius: 999px;
    color: #E60000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.blog-detail-hero h1 {
    margin: 0 0 14px;
    max-width: 18ch;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: #FFFFFF;
}

.blog-detail-hero__meta {
    margin: 0 0 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888888;
}

.blog-detail-hero__excerpt {
    margin: 0;
    max-width: 58ch;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #B0B0B0;
}

.blog-detail-hero .blog-reveal {
    opacity: 0;
    animation: blogHeroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

/* ── Article body ───────────────────────────────────── */

.blog-page--detail {
    background: #000000;
}

.blog-page--detail .article-pro {
    background: transparent;
}

.article-pro {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 56px) 5vw;
    color: #FFFFFF;
}

.article-pro__content {
    padding: clamp(36px, 5vw, 56px);
    border: 1px solid #1A1A1A;
    border-left: 4px solid #C9A227;
    border-radius: 16px;
    background: #0A0A0A;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #CCCCCC;
}

/* Article Typography — headings */
.article-pro__content h2 {
    margin: 2.2em 0 0.7em;
    padding-bottom: 10px;
    border-bottom: 1px solid #1E1E1E;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.article-pro__content h3 {
    margin: 1.6em 0 0.5em;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #C9A227;
    line-height: 1.3;
}

.article-pro__content h4 {
    margin: 1.2em 0 0.4em;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* First h2 doesn't need top margin */
.article-pro__content h2:first-child { margin-top: 0; }

/* Article Typography — body text */
.article-pro__content p {
    margin: 0 0 1.3em;
}

.article-pro__content strong {
    color: #FFFFFF;
    font-weight: 700;
}

.article-pro__content em {
    color: #C9A227;
    font-style: italic;
}

/* Article Typography — lists */
.article-pro__content ul,
.article-pro__content ol {
    margin: 0 0 1.5em 0;
    padding-left: 0;
    list-style: none;
}

.article-pro__content ul li,
.article-pro__content ol li {
    position: relative;
    padding: 6px 0 6px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #CCCCCC;
}

.article-pro__content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E60000;
}

.article-pro__content ol {
    counter-reset: article-counter;
}

.article-pro__content ol li {
    counter-increment: article-counter;
}

.article-pro__content ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #C9A227;
    color: #000000;
    font-size: 10px;
    font-weight: 800;
}

/* Nested list items */
.article-pro__content li strong {
    color: #FFFFFF;
}

/* Article Typography — images */
.article-pro__content img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 28px 0;
    border: 1px solid #1A1A1A;
}

/* Article Typography — blockquote */
.article-pro__content blockquote {
    margin: 1.8em 0;
    padding: 20px 24px;
    border-left: 4px solid #E60000;
    border-radius: 0 8px 8px 0;
    background: rgba(230, 0, 0, 0.06);
    color: #FFFFFF;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
}

/* Article Typography — reading progress */
.article-reading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #E60000, #C9A227);
    z-index: 99999;
    transition: width 0.1s linear;
}



.blog-related {
    position: relative;
    padding: clamp(48px, 6vw, 72px) 5vw clamp(64px, 8vw, 96px);
    background: #000000;
    border-top: 1px solid #1A1A1A;
}

.blog-related::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(#111111 1px, transparent 1px),
        linear-gradient(90deg, #111111 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0%, #000000 30%, transparent 100%);
}

.blog-related__head {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto 36px;
}

.blog-related__head h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: #C9A227;
}

.blog-grid--related {
    position: relative;
    z-index: 1;
}

/* ── Scroll reveal ──────────────────────────────────── */

.blog-page.js-ready .blog-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--blog-delay, 0ms);
}

.blog-page.js-ready .blog-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.blog-hero .blog-reveal {
    opacity: 0;
    animation: blogHeroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

@keyframes blogHeroIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 768px) {
    .blog-detail-hero {
        min-height: clamp(380px, 56vh, 480px);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-toolbar,
    .blog-toolbar__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-toolbar input,
    .blog-toolbar select,
    .blog-toolbar button {
        width: 100%;
        min-width: 0;
    }

    .blog-hero__overlay,
    .blog-detail-hero__overlay {
        background: linear-gradient(180deg, transparent 10%, #000000 88%);
    }

    .article-pro__content {
        padding: 22px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-page.js-ready .blog-reveal,
    .blog-hero .blog-reveal,
    .blog-detail-hero .blog-reveal,
    .blog-hero__bg img {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }

    .blog-card.is-in:hover,
    .blog-card.is-in:hover .blog-card__media img {
        transform: none;
    }
}

/* ── Article in-body CTA ─────────────────────────────── */

.blog-article-cta {
    padding: clamp(36px, 5vw, 56px) clamp(16px, 5vw, 48px);
    background: #050505;
    border-top: 1px solid #1A1A1A;
    border-bottom: 1px solid #1A1A1A;
}

.blog-article-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 40px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-top: 3px solid #C9A227;
    border-radius: 12px;
    background: #0A0A0A;
}

.blog-article-cta__text .blog-kicker {
    display: block;
    margin-bottom: 8px;
}

.blog-article-cta__text h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.blog-article-cta__text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #888888;
}

.blog-article-cta__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 210px;
}

.blog-article-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.blog-article-cta__btn--wa {
    background: #25D366;
    color: #FFFFFF;
    border: 1px solid #25D366;
}

.blog-article-cta__btn--wa:hover {
    background: #1EBE5B;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.blog-article-cta__btn--email {
    background: #E60000;
    color: #FFFFFF;
    border: 1px solid #E60000;
}

.blog-article-cta__btn--email:hover {
    background: #C40000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .blog-article-cta__inner {
        grid-template-columns: 1fr;
    }

    .blog-article-cta__btns {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 0;
    }

    .blog-article-cta__btn {
        flex: 1;
        min-width: 140px;
    }
}
