/* ==========================================================
   INSIGHTS CATEGORY
========================================================== */

.insights-category {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
    padding: 90px 0;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.insights-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.insights-section-header > div {
    max-width: 700px;
}

.insights-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.55;
}

.insights-section-header h2 {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.insights-section-header p {
    max-width: 620px;
    margin: 16px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.65;
}


/* ==========================================================
   VIEW ALL
========================================================== */

.insights-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.insights-view-all span {
    transition: transform 180ms ease;
}

.insights-view-all:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   ARTICLE GRID
========================================================== */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* ==========================================================
   ARTICLE CARD
========================================================== */

.insight-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(127, 127, 127, 0.20);
    border-radius: 20px;
    background: rgba(127, 127, 127, 0.035);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(127, 127, 127, 0.38);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}


/* ==========================================================
   CARD IMAGE
========================================================== */

.insight-card-image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.insight-card-image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.insight-card:hover .insight-card-image-link img {
    transform: scale(1.035);
}


/* ==========================================================
   CARD CONTENT
========================================================== */

.insight-card-content {
    padding: 24px;
}


/* ==========================================================
   CARD META
========================================================== */

.insight-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.4;
}

.insight-card-category {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.insight-card-meta time {
    opacity: 0.5;
    white-space: nowrap;
}


/* ==========================================================
   CARD TITLE
========================================================== */

.insight-card-title {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.insight-card-title a {
    color: inherit;
    text-decoration: none;
}


/* ==========================================================
   CARD DESCRIPTION
========================================================== */

.insight-card-description {
    margin: 14px 0 22px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.65;
}


/* ==========================================================
   READ LINK
========================================================== */

.insight-card-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.insight-card-read span {
    transition: transform 180ms ease;
}

.insight-card-read:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 950px) {

    .insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 680px) {

    .insights-category {
        width: min(100% - 28px, 1200px);
        padding: 65px 0;
    }

    .insights-section-header {
        display: block;
        margin-bottom: 30px;
    }

    .insights-view-all {
        margin-top: 20px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .insight-card-content {
        padding: 20px;
    }

}