﻿
/* ===== Wingskyline Governance Page ===== */

.wk-gov-hero {
    background: linear-gradient(120deg, #f8fafc 0%, #ffffff 55%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

.wk-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    background: rgba(17,24,39,0.06);
    color: #111827;
}

.wk-h1 {
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.6px;
    line-height: 1.12;
    margin: 0;
}

.wk-lead {
    font-size: 1.08rem;
    color: #4b5563;
    line-height: 1.82;
    max-width: 920px;
}

.wk-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wk-chip {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 10px 22px rgba(17,24,39,0.04);
}

.wk-section {
    background: #fff;
    padding: 80px 0;
}

    .wk-section.wk-alt {
        background: #f9fafb;
    }

.wk-section-head {
    max-width: 980px;
    margin-bottom: 30px;
}

.wk-h2 {
    font-weight: 900;
    color: #111827;
    margin: 0;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.3px;
}

.wk-h5 {
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.4;
}

.wk-sub {
    margin-top: 12px;
    color: #6b7280;
    line-height: 1.82;
    font-size: 1rem;
    max-width: 920px;
}

.wk-sub2 {
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.97rem;
}

.wk-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .wk-card:hover {
        transform: translateY(-4px);
        border-color: #e5e7eb;
        box-shadow: 0 18px 40px rgba(17,24,39,0.08);
    }

/* ===== Governance Icon Style ===== */

.wk-gov-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all .25s ease;
    margin-bottom: 16px;
}

.wk-card:hover .wk-gov-icon {
    transform: translateY(-3px);
}

.wk-hero-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

.wk-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #374151;
    line-height: 1.8;
}

.wk-media {
    background: #f9fafb;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.wk-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.wk-media-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 8px;
    line-height: 1.6;
}

.wk-gov-cta {
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.wk-cta-inner {
    background: linear-gradient(120deg, #f8fafc 0%, #ffffff 55%, #f3f4f6 100%);
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wk-cta-title {
    font-weight: 900;
    margin: 0 0 6px;
    color: #111827;
}

.wk-cta-sub {
    color: #6b7280;
    line-height: 1.7;
    max-width: 850px;
}


/* =====================================
   GOVERNANCE IMAGE PANEL
   ===================================== */

.wk-hero-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
    padding: 10px;
    transition: all .25s ease;
}

    /* subtle glow background */
    .wk-hero-media::before {
        content: "";
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at center, rgba(37,99,235,0.08), transparent 60%);
        z-index: 0;
    }

.wk-governance-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    z-index: 1;
}

.wk-hero-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(17,24,39,0.10);
}

@media (max-width: 991.98px) {
    .wk-section {
        padding: 60px 0;
    }

    .wk-h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .wk-h2 {
        font-size: clamp(22px, 6vw, 28px);
    }
}