﻿/* =========================================================
   WINGSKYLINE INSIGHTS PAGE
   ========================================================= */

.wk-insights-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-insights-title {
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.6px;
    line-height: 1.12;
    margin: 0;
}

.wk-insights-subtitle {
    font-size: 1.08rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 900px;
}

.wk-insights-hero-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

    .wk-insights-hero-card ul {
        margin: 0;
        padding-left: 18px;
        color: #374151;
        line-height: 1.8;
    }

.wk-insights-section {
    background: #ffffff;
}

.wk-alt {
    background: #f9fafb;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

.wk-section-head {
    max-width: 980px;
}

.wk-section-title {
    font-weight: 900;
    color: #111827;
    margin: 0;
    font-size: clamp(24px, 2vw, 34px);
    letter-spacing: -0.4px;
}

.wk-section-subtitle {
    margin-top: 10px;
    color: #6b7280;
    line-height: 1.8;
    max-width: 920px;
}

.wk-callout {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
    color: #374151;
    line-height: 1.7;
}

.wk-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    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(-3px);
        box-shadow: 0 14px 34px rgba(17,24,39,0.08);
        border-color: #d1d5db;
    }

.wk-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 14px;
}

.wk-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.35;
}

.wk-card-text {
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

.wk-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

.wk-panel-title {
    font-size: 1.06rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
}

.wk-panel-text {
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

.wk-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 18px 0;
}

.wk-metric-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.wk-metric-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
}

.wk-metric-num {
    font-weight: 900;
    color: #111827;
    font-size: 1.05rem;
    line-height: 1.2;
    margin-bottom: 4px;
}

.wk-metric-label {
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.4;
}

.wk-insights-cta {
    background: #ffffff;
    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-subtitle {
    color: #6b7280;
    line-height: 1.7;
    max-width: 820px;
}

@media (max-width: 768px) {
    .wk-metric-box {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   INSIGHTS HERO MEDIA
   ========================================= */

.wk-insights-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);
    transition: all .25s ease;
}

    .wk-insights-media:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(17,24,39,0.10);
    }

    .wk-insights-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-insights-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.wk-insights-media-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(17,24,39,0.82);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    z-index: 2;
}