/* ==================================================
   PYRO INSIGHTS
================================================== */

.pyro-insights {
    background: #fff;
    color: #111;
}

.insights-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ==================================================
   BREADCRUMB
================================================== */

.insights-breadcrumb {
    border-bottom: 1px solid #eee;
    background: #fff;
}

.insights-breadcrumb .insights-container {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 0;
    font-size: 13px;
    color: #888;
}

.insights-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.insights-breadcrumb a:hover {
    color: #e54b00;
}


/* ==================================================
   HERO
================================================== */

.insights-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        #f5f5f5 0%,
        #fff 65%,
        #f0f0f0 100%
    );
}

.insights-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(0, 0, 0, .035);
    border-radius: 50%;
}

.insights-hero .insights-container {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.insights-hero-content {
    max-width: 760px;
}

.insights-eyebrow {
    margin-bottom: 15px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;

    color: #e54b00;
}

.insights-hero h1 {
    margin: 0 0 22px;

    font-size: clamp(
        38px,
        5vw,
        62px
    );

    line-height: 1.12;
    letter-spacing: -1.5px;
}

.insights-hero p {
    max-width: 720px;

    margin: 0;

    font-size: 18px;
    line-height: 1.8;

    color: #666;
}

.insights-hero-badge {
    width: 190px;
    height: 190px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    border-radius: 24px;

    background: #101820;
    color: #fff;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .16);
}

.insights-hero-badge span {
    font-size: 35px;
    font-weight: 900;
    letter-spacing: -2px;
}

.insights-hero-badge strong {
    margin-top: 5px;

    font-size: 13px;
    letter-spacing: 3px;

    color: #e54b00;
}


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

.insights-categories,
.insights-posts {
    padding: 80px 0;
}

.insights-section-heading {
    margin-bottom: 32px;
}

.insights-section-heading > span {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;

    color: #e54b00;
}

.insights-section-heading h2 {
    margin: 0;

    font-size: 34px;
    line-height: 1.25;
}


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

.insights-category-list {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.insights-category {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 22px;

    border: 1px solid #e7e7e7;
    border-radius: 14px;

    color: #111;
    background: #fff;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.insights-category:hover {
    transform: translateY(-4px);

    border-color: #e54b00;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .07);
}

.insights-category-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f2f2f2;

    font-size: 18px;
    font-weight: 900;
}

.insights-category-info {
    flex: 1;
}

.insights-category-info h3 {
    margin: 0 0 4px;

    font-size: 17px;
}

.insights-category-info p {
    margin: 0;

    font-size: 13px;

    color: #888;
}

.insights-category-arrow {
    font-size: 20px;
    color: #999;
}


/* ==================================================
   POSTS
================================================== */

.insights-posts {
    background: #f7f7f7;
}

.insights-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.insights-card {
    overflow: hidden;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.insights-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .08);
}


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

.insights-card-image {
    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #eee;
}

.insights-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.insights-card:hover
.insights-card-image img {
    transform: scale(1.04);
}

.insights-no-image {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #151515;

    color: #fff;

    font-size: 25px;
    font-weight: 900;
    letter-spacing: 3px;
}


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

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

.insights-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 13px;

    font-size: 12px;

    color: #888;
}

.insights-card-category {
    font-weight: 800;
    color: #e54b00;
}

.insights-card h3 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.4;
}

.insights-card h3 a {
    color: #111;
    text-decoration: none;
}

.insights-card h3 a:hover {
    color: #e54b00;
}

.insights-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.75;

    color: #666;
}

.insights-read-more {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 20px;

    font-size: 14px;
    font-weight: 800;

    color: #e54b00;

    text-decoration: none;
}


/* ==================================================
   PAGINATION
================================================== */

.insights-pagination {
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

.insights-pagination ul {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.insights-pagination a,
.insights-pagination span {
    min-width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fff;

    color: #333;

    text-decoration: none;
}

.insights-pagination .current {
    border-color: #111;
    background: #111;
    color: #fff;
}


/* ==================================================
   EMPTY
================================================== */

.insights-empty,
.insights-empty-post {
    padding: 40px;

    border: 1px solid #eee;
    border-radius: 14px;

    background: #fff;

    text-align: center;
}

.insights-empty-post {
    padding: 80px 30px;
}

.insights-empty-post h2 {
    margin: 0 0 10px;
}

.insights-empty-post p {
    margin: 0;

    color: #777;
}


/* ==================================================
   CTA
================================================== */

.insights-cta {
    padding: 70px 0;

    background: #101820;

    color: #fff;
}

.insights-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.insights-cta-content > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;

    color: #e54b00;
}

.insights-cta h2 {
    margin: 8px 0 10px;

    font-size: 30px;
}

.insights-cta p {
    max-width: 680px;

    margin: 0;

    line-height: 1.7;

    color: #bfc3c7;
}

.insights-cta-button {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    padding: 14px 22px;

    border-radius: 8px;

    background: #e54b00;
    color: #fff;

    font-weight: 800;

    text-decoration: none;
}


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

@media (max-width: 900px) {

    .insights-hero
    .insights-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .insights-hero-badge {
        width: 130px;
        height: 130px;

        padding: 20px;
    }

    .insights-hero-badge span {
        font-size: 25px;
    }

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

    .insights-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


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

@media (max-width: 600px) {

    .insights-container {
        width: calc(100% - 28px);
    }

    .insights-hero {
        padding: 55px 0;
    }

    .insights-hero h1 {
        font-size: 35px;
    }

    .insights-hero p {
        font-size: 16px;
    }

    .insights-categories,
    .insights-posts {
        padding: 55px 0;
    }

    .insights-section-heading h2 {
        font-size: 28px;
    }

    .insights-category-list,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insights-featured-content {
        padding: 28px;
    }

    .insights-cta h2 {
        font-size: 25px;
    }

}