/* ==========================================
   body.css — Clean, Grid-Safe (No Footer)
   ========================================== */

/* ------------------------------
   HERO MEDIA (FULL WIDTH)
   ------------------------------ */
.main-content img.hero-image,
.main-content video.hero-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* ------------------------------
   STANDARD CONTENT MEDIA
   ------------------------------ */
.main-content img:not(.hero-image) {
    width: 100%;
    max-width: clamp(300px, 50%, 800px);
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ------------------------------
   YOUTUBE — RESPONSIVE
   ------------------------------ */
.main-content .youtube-container {
    width: 100%;
    max-width: clamp(300px, 50%, 800px);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 0 auto;
}

.main-content .youtube-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ------------------------------
   CSS ACCORDION
   ------------------------------ */
.main-content .css-accordion {
    max-width: 800px;
    margin: 20px 0;
}

.main-content .css-accordion input[type="checkbox"] {
    display: none;
}

.main-content .css-accordion label {
    display: block;
    background: #2a3f5f;
    color: #fff;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
}

.main-content .css-accordion label::after {
    content: '\25BC';
    float: right;
    transition: transform 0.3s;
}

.main-content .css-accordion input[type="checkbox"]:checked + label::after {
    transform: rotate(180deg);
}

.main-content .css-accordion .content {
    max-height: 0;
    overflow: hidden;
    background: #f7f7f7;
    padding: 0 20px;
    border-radius: 0 0 5px 5px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.main-content .css-accordion input[type="checkbox"]:checked + label + .content {
    max-height: 500px;
    padding: 15px 20px;
}

/* ===============================
   SECTION-POP GRID (Scoped)
   =============================== */
.main-content section.section-pop > .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

/* Columns */
.main-content .section-pop .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.main-content .section-pop .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Section-pop images */
.main-content .section-pop img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* Text & lists inside section-pop */
.main-content .section-pop ul {
    list-style: disc !important;
    padding-left: 1.25rem;
    word-wrap: break-word;
}

/* Feral Lion styling */
.main-content .section-pop.lion {
    background-color: #f8f2e7;
    border-radius: 8px;
    padding: 1.5rem 2rem;
}

/* Vertical centering of last column */
.main-content .section-pop .col-lg-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Lists inside flex sections only */
.main-content .section-pop-flex ul {
    list-style: disc;
    padding-left: 1.25rem;
    word-wrap: break-word;
}

/* ------------------------------
   MAIN CONTENT LISTS
   ------------------------------ */
.main-content ul {
    margin-left: 50px;
    padding-left: 20px;
}
