/* 
   ABOUT PAGE — SRAEDS
    */

body { background: var(--col-light); }

/* Page intro strip */
.about-page-header {
    background: var(--col-steel);
    padding: 48px 10%;
    color: var(--col-white);
    position: relative;
    overflow: hidden;
}

.about-page-header::before {
    content: 'ABOUT';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 130px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    letter-spacing: 8px;
    user-select: none;
    pointer-events: none;
}

.about-text {
    max-width: 1100px;
    margin: 40px auto;
    background: var(--col-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 60px 8%;
    overflow: hidden;
}

/* ---- Page H1 ---- */
.about-text h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--col-steel);
    margin-bottom: 36px;
    padding-bottom: 20px;
    position: relative;
}

.about-text h1::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px; height: 5px;
    background: var(--col-amber);
    border-radius: 3px;
}

/* ---- H2 section headers ---- */
.about-text h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--col-steel);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--col-amber);
    border-radius: 2px;
}

/* ---- H4 sub-headers ---- */
.about-text h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--col-steel-3);
    margin: 32px 0 14px;
}

/* ---- Paragraphs ---- */
.about-text p {
    color: var(--col-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 820px;
}

/* ---- Lists ---- */
.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-text li {
    color: var(--col-muted);
    font-size: 16px;
    padding: 10px 0 10px 24px;
    position: relative;
    border-bottom: 1px solid var(--col-border);
    line-height: 1.65;
}

.about-text li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--col-amber);
    font-size: 12px;
    top: 12px;
}

.about-text li:last-child { border-bottom: none; }

.about-text li strong {
    color: var(--col-steel);
    font-weight: 600;
}

/* ---- Divider ---- */
.about-text hr {
    border: none;
    border-top: 2px solid var(--col-border);
    margin: 48px 0;
}

/* ---- Compliance logos ---- */
.about-imgs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 0 8px;
}

.about-imgs {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    padding: 16px 20px;
    background: var(--col-light);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.about-imgs:hover {
    filter: grayscale(0%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--col-amber);
}

/* 
   RESPONSIVE
    */

@media (max-width: 768px) {
    .about-text {
        margin: 20px 12px;
        padding: 40px 6%;
        border-radius: var(--radius-md);
    }

    .about-text h1 { font-size: 38px; }
    .about-text h2 { font-size: 24px; }

    .about-imgs-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-text h1 { font-size: 30px; }
    .about-imgs { height: 70px; }
}