/* ================================================================
   INVESTOR-CHARTER.CSS
   Load via enqueue.php on investor charter page only.
   Uses base.css variables throughout.
================================================================ */

/* ----------------------------------------------------------------
   PAGE HERO
---------------------------------------------------------------- */
.ic-hero {
    position: relative;
    background: var(--color-blue);
    padding: 160px 20px 120px;
    overflow: hidden;
}

/* Diagonal stripe texture — matches hero slider */
.ic-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            -58deg,
            transparent,
            transparent 72px,
            rgba(255, 255, 255, 0.015) 72px,
            rgba(255, 255, 255, 0.015) 73px
    );
    pointer-events: none;
}

.ic-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 1.2rem;
}

.ic-hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-orange);
    flex-shrink: 0;
}

.ic-hero__title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1.5rem;
}

.ic-hero__title em {
    font-style: normal;
    color: var(--color-orange);
}

.ic-hero__sub {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: rgba(255, 255, 255, 0.72);
    max-width: 580px;
    line-height: 1.75;
    margin: 0;
}

/* Angled bottom slice — matches hero slider pattern */
.ic-hero__slice {
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 30%, 100% 100%);
    pointer-events: none;
}

/* ----------------------------------------------------------------
   BODY WRAPPER
---------------------------------------------------------------- */
.ic-body {
    padding: 80px 0 0;
}

/* ----------------------------------------------------------------
   SECTION COMMON
---------------------------------------------------------------- */
.ic-section {
    margin-bottom: 80px;
}

.ic-section__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--color-primary);
    margin: 0 0 0.6rem;
    position: relative;
    display: inline-block;
}

.ic-section__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-orange);
    margin-top: 10px;
}

.ic-section__sub {
    color: var(--color-muted);
    font-size: 1rem;
    margin: 16px 0 40px;
    max-width: 560px;
}

/* ----------------------------------------------------------------
   PDF GRID & CARDS
---------------------------------------------------------------- */
.ic-pdf-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ic-pdf-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ic-pdf-card:hover {
    border-color: var(--color-orange);
    box-shadow: 0 4px 20px rgba(233, 114, 56, 0.1);
}

.ic-pdf-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(233, 114, 56, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
}

.ic-pdf-card__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ic-pdf-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
}

.ic-pdf-card__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 20px;
    background: var(--color-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--color-blue);
    border-radius: 4px;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.ic-pdf-card__btn:hover {
    background: transparent;
    color: var(--color-blue);
}

.ic-pdf-card__btn--disabled {
    background: var(--color-bg-light);
    color: var(--color-muted);
    border-color: var(--color-border);
    cursor: default;
}

/* ----------------------------------------------------------------
   EMPTY STATE
---------------------------------------------------------------- */
.ic-empty {
    padding: 40px;
    background: var(--color-bg-light);
    border: 1px dashed var(--color-border);
    border-radius: 8px;
    color: var(--color-muted);
    font-size: 0.95rem;
    text-align: center;
}

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1279px) {
    .ic-hero {
        padding: 130px 0 100px;
    }
}

@media (max-width: 768px) {
    .ic-body {
        padding: 60px 20px 0;
    }

    .ic-section {
        margin-bottom: 56px;
    }

    .ic-hero {
        padding: 110px 20px 80px;
    }

    .ic-hero__slice {
        height: 48px;
    }

    .ic-pdf-card {
        flex-wrap: wrap;
        gap: 14px;
    }

    .ic-pdf-card__btn {
        width: 100%;
        justify-content: center;
    }
}