/* =========================================================
   TAG FARM UNIVERSAL BLOG ARTICLE STYLE
   Use this same stylesheet for all TAG Farm blogs
========================================================= */

:root{
    --tf-primary:#6B351F;
    --tf-dark:#241712;
    --tf-terracotta:#A95735;
    --tf-cream:#F7F3EC;
    --tf-warm:#FCFAF7;
    --tf-text:#302923;
    --tf-body:#4C443E;
    --tf-muted:#8B8178;
    --tf-gold:#B88A55;
    --tf-line:#E9DED4;
    --tf-soft:#F9F4EE;
    --tf-white:#FFFFFF;

    --tf-serif:"Cormorant Garamond","Times New Roman",serif;
    --tf-sans:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

    --tf-shadow:0 16px 42px rgba(36,23,18,.07);
}


/* =========================================================
   RESET
========================================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;

    background:var(--tf-cream);
    color:var(--tf-text);

    font-family:var(--tf-sans);
    font-size:16px;
    line-height:1.8;
}

img{
    display:block;
    max-width:100%;
}


/* =========================================================
   MAIN BLOG LAYOUT
========================================================= */

.blog-wrapper{
    width:min(1340px,calc(100% - 32px));

    margin:36px auto 72px;

    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;

    gap:28px;

    align-items:start;
}


/* =========================================================
   ARTICLE CONTAINER
========================================================= */

.blog-content{
    min-width:0;

    padding:38px 42px 46px;

    background:var(--tf-white);

    border:1px solid rgba(36,23,18,.08);
    border-radius:18px;

    box-shadow:var(--tf-shadow);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.blog-breadcrumbs{
    display:flex;
    flex-wrap:wrap;
    align-items:center;

    gap:7px;

    margin:0 0 20px;

    color:var(--tf-muted);

    font-size:12px;
    line-height:1.5;
}

.blog-breadcrumbs a{
    color:var(--tf-terracotta);

    font-weight:600;

    text-decoration:none;
}

.blog-breadcrumbs a:hover{
    color:var(--tf-primary);
    text-decoration:none;
}

.blog-breadcrumbs span[aria-hidden="true"]{
    color:#B8ADA5;
}

.blog-breadcrumbs span[aria-current="page"]{
    color:#71675F;
}


/* =========================================================
   BLOG HERO IMAGE
   FULL IMAGE — NO CROPPING
========================================================= */

.blog-hero{
    width:100%;

    margin:0 0 24px;

    overflow:hidden;

    border-radius:15px;

    background:#f3eee8;

    box-shadow:
        0 10px 26px rgba(36,23,18,.10);
}

.blog-hero img{
    display:block;

    width:100%;
    max-width:100%;

    /* IMPORTANT:
       Keep natural image ratio */
    height:auto;

    /* Prevent cropping */
    object-fit:contain;

    object-position:center;

    border-radius:15px;
}


/* =========================================================
   ARTICLE META
========================================================= */

.blog-meta{
    margin:0 0 10px !important;

    color:var(--tf-muted) !important;

    font-size:12px !important;

    letter-spacing:.015em;
}


/* =========================================================
   H1
========================================================= */

.blog-content h1{
    max-width:920px;

    margin:0 0 24px;

    color:var(--tf-dark);

    font-family:var(--tf-serif);

    font-size:clamp(35px,4.4vw,52px);

    font-weight:600;

    line-height:1.08;

    letter-spacing:-.025em;
}


/* =========================================================
   INTRO PARAGRAPH
========================================================= */

.blog-content .intro-lead{
    color:#403730;

    font-size:17px;

    line-height:1.82;
}


/* =========================================================
   BODY TYPOGRAPHY
========================================================= */

.blog-content p{
    margin:0 0 17px;

    color:var(--tf-body);
}


/* =========================================================
   H2
========================================================= */

.blog-content h2{
    position:relative;

    margin:44px 0 17px;

    padding-bottom:10px;

    color:var(--tf-primary);

    font-family:var(--tf-serif);

    font-size:clamp(28px,3vw,36px);

    font-weight:600;

    line-height:1.2;
}


/* Small gold editorial line */

.blog-content h2::after{
    content:"";

    display:block;

    width:54px;
    height:2px;

    margin-top:10px;

    background:var(--tf-gold);
}


/* =========================================================
   H3
========================================================= */

.blog-content h3{
    margin:30px 0 10px;

    color:#523326;

    font-family:var(--tf-serif);

    font-size:25px;

    font-weight:600;

    line-height:1.3;
}


/* =========================================================
   H4
========================================================= */

.blog-content h4{
    margin:24px 0 8px;

    color:#5E4436;

    font-size:17px;

    line-height:1.45;
}


/* =========================================================
   STRONG
========================================================= */

.blog-content strong{
    color:#392A23;
}


/* =========================================================
   LINKS
   NO UNDERLINE
========================================================= */

.blog-content a,
.blog-content a:visited{
    color:var(--tf-terracotta);

    font-weight:600;

    text-decoration:none;
}

.blog-content a:hover,
.blog-content a:focus{
    color:var(--tf-primary);

    text-decoration:none;
}


/* =========================================================
   LISTS
========================================================= */

.blog-content ul,
.blog-content ol{
    margin:14px 0 23px;

    padding-left:25px;
}

.blog-content li{
    margin-bottom:8px;

    padding-left:3px;

    color:var(--tf-body);
}

.blog-content li::marker{
    color:var(--tf-terracotta);
}

.blog-content ol li::marker{
    color:var(--tf-primary);

    font-weight:700;
}


/* =========================================================
   TOP 10 VENUE SECTIONS
========================================================= */

.venue-entry{
    padding:2px 0 21px;

    border-bottom:1px solid var(--tf-line);
}

.venue-entry:last-of-type{
    border-bottom:0;
}

.venue-meta{
    margin-top:11px !important;
}

.venue-meta li{
    margin-bottom:5px;
}


/* =========================================================
   EDITORIAL / INFORMATION NOTE
========================================================= */

.editorial-note,
.info-note{
    margin:25px 0 31px;

    padding:14px 17px;

    background:var(--tf-soft);

    border-left:3px solid var(--tf-gold);

    border-radius:0 8px 8px 0;

    color:#62564E;

    font-size:14px;

    line-height:1.72;
}

.editorial-note strong,
.info-note strong{
    color:var(--tf-primary);
}


/* =========================================================
   TABLE
========================================================= */

.table-responsive{
    width:100%;

    margin:22px 0 32px;

    overflow-x:auto;

    border:1px solid var(--tf-line);

    border-radius:10px;
}

.guide-table{
    width:100%;

    min-width:760px;

    border-collapse:collapse;

    background:var(--tf-white);
}

.guide-table th,
.guide-table td{
    padding:13px 14px;

    border-right:1px solid var(--tf-line);
    border-bottom:1px solid var(--tf-line);

    text-align:left;

    vertical-align:top;

    font-size:14px;

    line-height:1.55;
}

.guide-table th:last-child,
.guide-table td:last-child{
    border-right:0;
}

.guide-table tr:last-child td{
    border-bottom:0;
}

.guide-table th{
    background:#F5EDE5;

    color:var(--tf-primary);

    font-weight:700;
}

.guide-table tbody tr:nth-child(even){
    background:#FDFBF8;
}

.guide-table tbody tr:hover{
    background:#FAF4EE;
}


/* =========================================================
   FAQ
========================================================= */

.faq-item{
    padding:19px 0;

    border-bottom:1px solid var(--tf-line);
}

.faq-item:first-of-type{
    border-top:1px solid var(--tf-line);
}

.faq-item h3{
    margin:0 0 7px;

    color:#403028;

    font-family:var(--tf-sans);

    font-size:17px;

    font-weight:700;
}

.faq-item p{
    margin:0;
}


/* =========================================================
   RELATED GUIDES
========================================================= */

.related-guides{
    margin-top:36px;

    padding-top:24px;

    border-top:1px solid var(--tf-line);
}

.related-guides h2{
    margin-top:0;
}


/* =========================================================
   SIDEBAR
========================================================= */

.blog-sidebar{
    position:sticky;

    top:24px;

    align-self:start;

    padding:24px;

    background:var(--tf-warm);

    border:1px solid rgba(36,23,18,.11);

    border-radius:15px;

    box-shadow:
        0 10px 30px rgba(36,23,18,.06);
}

.blog-sidebar h2{
    margin:0 0 7px;

    color:var(--tf-dark);

    font-family:var(--tf-serif);

    font-size:25px;

    font-weight:600;

    line-height:1.2;
}

.blog-sidebar > p{
    margin:0 0 16px;

    color:#71665E;

    font-size:13px;

    line-height:1.65;
}


/* =========================================================
   ENQUIRY FORM
========================================================= */

.blog-enquiry-form{
    display:grid;

    gap:11px;
}

.blog-enquiry-form label{
    color:#584D46;

    font-size:12px;

    font-weight:700;
}

.blog-enquiry-form input,
.blog-enquiry-form textarea{
    width:100%;

    margin-top:5px;

    padding:10px 11px;

    background:var(--tf-white);

    border:1px solid #D9CEC5;

    border-radius:7px;

    color:var(--tf-text);

    font:inherit;

    font-size:13px;
}

.blog-enquiry-form textarea{
    min-height:80px;

    resize:vertical;
}

.blog-enquiry-form input:focus,
.blog-enquiry-form textarea:focus{
    outline:2px solid rgba(169,87,53,.12);

    border-color:var(--tf-terracotta);
}


/* =========================================================
   FORM BUTTON
========================================================= */

.blog-enquiry-form button{
    width:100%;

    padding:11px 14px;

    background:var(--tf-terracotta);

    border:0;

    border-radius:7px;

    color:#fff;

    cursor:pointer;

    font-family:var(--tf-sans);

    font-size:13px;

    font-weight:700;
}

.blog-enquiry-form button:hover{
    background:var(--tf-primary);
}


/* =========================================================
   FORM NOTE
========================================================= */

.form-note{
    margin:0 !important;

    color:var(--tf-muted) !important;

    font-size:10px !important;

    line-height:1.5 !important;
}


/* =========================================================
   BACK LINK
========================================================= */

.blog-back-link{
    display:inline-block;

    margin-top:17px;

    color:var(--tf-primary);

    font-size:12px;

    font-weight:700;

    text-decoration:none;
}

.blog-back-link:hover{
    text-decoration:none;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:920px){

    .blog-wrapper{
        grid-template-columns:1fr;

        width:min(100% - 24px,900px);

        margin-top:24px;
    }


    .blog-sidebar{
        position:static;
    }


    /* Keep full banner */
    .blog-hero img{
        width:100%;
        height:auto;

        object-fit:contain;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    body{
        font-size:15px;
    }


    .blog-content{
        padding:20px 18px 28px;

        border-radius:13px;
    }


    /*
    ---------------------------------------------------------
    IMPORTANT:
    No fixed image height on mobile
    Full banner remains visible
    ---------------------------------------------------------
    */

    .blog-hero{
        margin-bottom:20px;

        border-radius:11px;
    }

    .blog-hero img{
        width:100%;

        height:auto;

        object-fit:contain;

        object-position:center;

        border-radius:11px;
    }


    .blog-content h1{
        margin-bottom:20px;

        font-size:32px;
    }


    .blog-content h2{
        margin-top:36px;

        font-size:28px;
    }


    .blog-content h3{
        font-size:22px;
    }


    .blog-content .intro-lead{
        font-size:16px;
    }


    .editorial-note,
    .info-note{
        padding:13px 14px;
    }

}