﻿/* =========================
   TWO SPIRIT HERO
========================= */

.TwoSpirit-hero {
    background: linear-gradient(135deg, #1e5f98 0%, #2c3e50 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    /* Title scaling */
    .TwoSpirit-hero h1 {
        font-size: clamp(1.8rem, 4vw, 3rem);
        line-height: 1.2;
    }

    /* subtitle scaling */
    .TwoSpirit-hero p.lead {
        font-size: clamp(1rem, 1.6vw, 1.3rem);
    }

/* sash decoration */
.hero-sash {
    position: absolute;
    right: -40px;
    top: 50%;
    max-width: 100%;
    max-height: 400px;
    transform: translateY(-50%) rotate(0deg);
    width: auto;
    opacity: 0.15;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Adds a subtle glow effect */
}

/**************************************************************************/

hr.style-about {
    overflow: visible; /* For IE */
    padding: 0;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    text-align: center;
    width: 100%;
}

    hr.style-about:after {
        content: "Two-Spirit and LGBTQIA+ citizens ";
        font-family: 'Lato-Bold';
        font-size: calc(16px + (42 - 16) * ((100vw - 300px) / (1600 - 300)));
        display: inline-block;
        position: relative;
        top: -0.7em;
        padding: 0 0.25em;
        background-color: #c3cfe5;
    }

.TwoSpirit-style {
    margin: 0 auto;
    width: 80%;
    text-align: center;
    padding: 25px;
}

.TwoSpirit-body {
    text-align: left;
    font-family: 'Lato-Regular', sans-serif;
    font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1600 - 300)));
}

ol.dot-list {
    list-style: none; /* Remove default numbering */
    padding-left: 0;
}

    ol.dot-list li {
        position: relative;
        padding-left: 25px; /* Space for the dot */
        margin-bottom: 15px; /* Space between list items */
    }

        ol.dot-list li::before {
            content: "•"; /* Dot character */
            position: absolute;
            left: 0;
            color: #2c3e50;
            font-size: 20px;
            line-height: 1;
        }

@media (max-width: 500px) {
    .TwoSpirit-style {
        padding: 15px;
    }
}
