﻿/* ===========================

   Layout wrapper

   =========================== */

.marketing-guide-wrapper {
    padding: 10px 80px 10px;
}

@media (max-width: 768px) {

    .marketing-guide-wrapper {
        padding: 10px 15px 10px;
    }
}

/* Section wrapper: bottom padding only */

.marketing-section {
    padding-bottom: 15px;
}

/* ===========================

   Typography: headers & body

   =========================== */

/* Big red section headers */

.marketing-guide-red-h {
    display: block;
    font-family: acumin-pro-condensed, sans-serif;
    color: #CE0019;
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    margin: 0.5rem 0;
}

/* Label text (e.g., "In Stock in Illinois")

   Renamed: media-guide-label -> marketing-guide-label

   Keep the old selector as a temporary alias so nothing explodes. */

.media-guide-label,
.marketing-guide-label {
    font-family: acumin-pro, sans-serif;
    color: #CE0019;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

/* Step headers (e.g., "Step 3 of 5") */

.marketing-guide-header {
    background-color: #fff;
    color: #595959;
    font-size: 32px;
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 500;
    text-align: justify;
    line-height: 1.3;
    display: block;
    margin: 0.5rem 0;
}

/* Body copy */

.marketing-guide-body {
    font-family: acumin-pro, sans-serif;
    font-size: 17px;
    font-weight: 100;
    color: #626262;
    line-height: 26px;
    margin: 0.5rem 0;
}

    .marketing-guide-body strong {
        font-weight: 700;
    }

/* ===========================

   Links (unified behavior)

   =========================== */

.marketing-guide-wrapper a,
.marketing-guide-list a,
.marketing-guide-columns a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

    .marketing-guide-wrapper a:hover,
    .marketing-guide-list a:hover,
    .marketing-guide-columns a:hover {
        color: #CE0019;
        text-decoration: none;
    }

/* CKEditor-friendly utility for standalone links */

a.marketing-link,
.marketing-link a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

    a.marketing-link:hover,
    .marketing-link a:hover {
        color: #CE0019;
        text-decoration: none;
    }

/* ===========================

   Lists

   =========================== */

/* Bulleted lists */

.marketing-guide-list {
    font-family: acumin-pro, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: #626262;
    margin: 0.75rem 0 1rem;
    padding-left: 1.25rem;
    list-style: disc;
}

    .marketing-guide-list li {
        margin: 0.35rem 0;
    }

        .marketing-guide-list li::marker {
            color: #8a8a8a;
        }

/* Table-style bullets with tighter indent */

.marketing-guide-list-table {
    font-family: acumin-pro, sans-serif;
    font-size: 17px;
    line-height: 1.4;
    color: #626262;
    list-style: disc;
    padding-left: 1.5rem;
}

/* Ordered steps */

.marketing-guide-steps {
    font-family: acumin-pro, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #595959;
    margin: 0.5rem 0 1rem;
    padding-left: 1.5rem;
    list-style: decimal;
}

    .marketing-guide-steps li {
        margin: 0.35rem 0;
    }

/* Links inside lists and columns */

.marketing-guide-list a,
.marketing-guide-columns a {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    transition: color .2s ease;
}

    .marketing-guide-list a:hover,
    .marketing-guide-columns a:hover {
        color: #CE0019;
    }

/* Responsive list sizing */

@media (max-width: 480px) {

    .marketing-guide-list {
        padding-left: 1rem;
    }

        .marketing-guide-list a,
        .marketing-guide-columns a {
            font-size: 14px;
        }

    .marketing-guide-steps {
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1259px) {

    .marketing-guide-list a,
    .marketing-guide-columns a {
        font-size: 15px;
    }

    .marketing-guide-steps {
        font-size: 16px;
    }
}

@media (min-width: 1260px) {

    .marketing-guide-list a,
    .marketing-guide-columns a {
        font-size: 16px;
    }

    .marketing-guide-steps {
        font-size: 17px;
    }
}

/* ===========================

   Utilities

   =========================== */

.no-bullets,
.marketing-guide-list.no-bullets {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.indented {
    padding-left: 2rem !important;
}

.indented-lg {
    padding-left: 4rem !important;
}

.no-indent {
    padding-left: 0 !important;
}

@media (max-width: 640px) {

    .indented-lg {
        padding-left: 1.25rem !important;
    }
}

/* Make tiny screenshots not stretch into a blurry mess */

.mg-narrow {
    max-width: 320px;
    margin: 0 auto;
}

.marketing-guide-image-narrow {
    display: block;
    width: 100%;
    height: auto;
    max-width: 420px;
    margin: 1.5rem auto;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===========================

   Columns (optional section)

   =========================== */

.marketing-guide-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

    .marketing-guide-columns li {
        margin: 0.25rem 0;
        font-family: acumin-pro, sans-serif;
        font-size: 15px;
        line-height: 1.4;
    }

/* ===========================

   Images

   =========================== */

.image_resized,
.marketing-guide-image,
.marketing-guide-hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

    .marketing-guide-image.padded {
        padding: 20px 40px;
    }

/* ===========================

   Breadcrumb

   =========================== */

.marketing-breadcrumb {
    font-family: acumin-pro, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0.25rem 0 0 0.25rem;
    color: #626262;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

    .marketing-breadcrumb a {
        font-weight: 400;
        font-size: 13px;
        color: #000;
        text-decoration: none;
        transition: color .2s ease;
    }

        .marketing-breadcrumb a:hover {
            color: #CE0019;
        }

    .marketing-breadcrumb .separator {
        color: #999;
        margin: 0 4px;
    }


/* Auth visibility - hidden by default, shown via inline injection */
.authed-only,
.unauthed-only {
    display: none !important;
}

/* ===========================

   End of file

   =========================== */
