/*
==========================================================

CLARAUS DESIGN SYSTEM

FILE:
homepage.css

VERSION:
1.0

STATUS:
FROZEN

DESCRIPTION:
Homepage design system for Claraus.

This file forms part of the Claraus Core UI Architecture.

Desktop ✔
Tablet ✔
Mobile ✔

RULES

• Do not redesign this file.
• Only fix verified bugs.
• Extend using new homepage components.
• Refactor only during an official Optimization Sprint.

AUTHORITATIVE STATUS

This stylesheet is considered production-ready and frozen.
Future work should build upon it, not replace it.

==========================================================
*/

/*
==========================================================
CLARAUS HOMEPAGE
FOUNDATION
==========================================================
*/

.homepage-container{

    width:min(1280px, calc(100% - 64px));

    margin:0 auto;

}

.homepage-section{

    margin:110px 0;

}

.homepage-section-header p{

    margin:0;

    font-size:20px;

    line-height:1.9;

    color:#667085;

    max-width:680px;

}

/*
==========================================================
HOMEPAGE HERO
==========================================================
*/

.homepage-hero{

    margin:32px 0 90px;

}

.homepage-hero .homepage-container{

    max-width:920px;

    margin:auto;

}

.homepage-hero-content{

    text-align:center;

}

.homepage-kicker{

    display:inline-block;

    margin:0 0 18px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:#2563eb;

}

.homepage-hero-title{

    max-width:900px;

    margin:0 auto;

    font-size:72px;

    line-height:1.02;

    font-weight:800;

    letter-spacing:-0.055em;

    color:#111827;

}

.homepage-hero-description{

    max-width:760px;

    margin:24px auto 0;

    font-size:22px;

    line-height:1.9;

    color:#5b6470;

}

/*
==========================================================
HERO SEARCH
==========================================================
*/

.homepage-search{

    display:flex;

    align-items:center;

    overflow:hidden;

    margin:56px auto 0;

    max-width:760px;

    border:1px solid #e5e7eb;

    border-radius:14px;

    background:#fff;

    box-shadow:0 10px 30px rgba(15,23,42,.04);

}

.homepage-search input{

    flex:1;

    border:none;

    padding:22px 26px;

    font-size:18px;

    background:transparent;

    outline:none;

}

.homepage-search button{

    border:none;

    padding:22px 36px;

    background:#111827;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.homepage-search button:hover{

    background:#000;

}

/*
==========================================================
EDITORIAL NAVIGATION
==========================================================
*/

.homepage-quick-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:34px;

    margin-top:34px;

}

.homepage-quick-links a{

    color:#111827;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.2s;

}

.homepage-quick-links a:hover{

    color:#2563eb;

}

/*
==========================================================
EXPLORE CLARAUS
==========================================================
*/

.homepage-explore{

    margin:120px 0;

}

.homepage-explore-grid{

    display:grid;

    grid-template-columns:repeat(3, minmax(0,1fr));

    gap:36px;

}

.explore-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:46px;

    display:flex;

    flex-direction:column;

    height:100%;

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;

}

.explore-card:hover{

    transform:translateY(-6px);

    border-color:#d6dce5;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

}

.explore-card h3{

    margin:0 0 20px;

    font-size:32px;

    line-height:1.15;

    font-weight:700;

    letter-spacing:-0.03em;

    color:#111827;

}

.explore-card p{

    margin:0;

    font-size:18px;

    line-height:1.85;

    color:#667085;

    flex:1;

}

.explore-card a{

    margin-top:34px;

    display:inline-flex;

    align-items:center;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    color:#111827;

    transition:opacity .25s ease;

}

.explore-card a:hover{

    opacity:.7;

}

/*
==========================================================
FEATURED EDITORIAL PROFILES
==========================================================
*/

.homepage-featured-profiles{

    margin:140px 0;

}

.homepage-profiles-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:36px;

}

.profile-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    height:100%;

    transition:

        transform .28s ease,

        border-color .28s ease;

}

.profile-card:hover{

    transform:translateY(-6px);

    border-color:#d6dce5;

}

.profile-card a{

    color:inherit;

    text-decoration:none;

    display:flex;

    flex-direction:column;

    height:100%;

}

.profile-card-image{

    aspect-ratio:4/3;

    background:#f8fafc;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0;

    overflow:hidden;

}

.profile-card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    display:block;

    transition:transform .35s ease;

}

.profile-card:hover .profile-card-image img{

    transform:scale(1.03);

}

.profile-card-content{

    padding:24px 26px 28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.profile-card h3{

    margin:0 0 10px;

    font-size:26px;

    line-height:1.2;

    font-weight:700;

    letter-spacing:-0.03em;

    color:#111827;

}

.profile-card-headline{

    margin:0 0 14px;

    font-size:18px;

    font-weight:600;

    line-height:1.55;

    color:#374151;

}

.profile-card-company{

    margin:0 0 18px;

    font-size:15px;

    font-weight:600;

    color:#6b7280;

    letter-spacing:0;

}

.profile-card-summary{

    margin:0;

    font-size:15px;

    line-height:1.75;

    color:#5b6470;

    flex:1;

}

/*
=====================================
COMPANY CARD
=====================================
*/

.company-card .profile-card-image{

    aspect-ratio:4/3;

    background:#f8fafc;

    padding:26px;

}

.company-card .profile-card-image img{

    width:85%;

    height:85%;

    display:block;

    margin:auto;

    object-fit:contain;

    object-position:center;

}

/*
=====================================
EXECUTIVE CARD
=====================================
*/

.executive-card .profile-card-image{

    aspect-ratio:4/3;

    background:#f8fafc;

    padding:0;

}

.executive-card .profile-card-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

   object-position:center 40%;

}

/*
==========================================================
FEATURED EDITORIAL INSIGHTS
==========================================================
*/

.homepage-featured-insights{

    margin:140px 0;

}

.homepage-insights-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:36px;

    align-items:stretch;

}

.homepage-insights-grid .insight-card{

    display:flex;

    height:100%;

}

.homepage-insights-grid .insight-card a{

    display:flex;

    flex-direction:column;

    width:100%;

    height:100%;

}

.insight-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:20px;

    overflow:hidden;

    transition:.25s ease;

    display:flex;

    flex-direction:column;

    height:100%;

}

.insight-card:hover{

    transform:translateY(-5px);

    box-shadow:0 22px 55px rgba(0,0,0,.08);

}

.insight-card a{

    display:flex;

    flex-direction:column;

    height:100%;

    text-decoration:none;

    color:inherit;

}

.insight-card h3{

    transition:color .25s ease;

}

.insight-card:hover h3{

    color:#2563eb;

}

.insight-image{

    aspect-ratio:16/10;

    overflow:hidden;

}

.insight-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .35s ease;

}

.insight-card:hover img{

    transform:scale(1.04);

}

.insight-card h3{

    margin:24px 24px 12px;

    font-size:30px;

    line-height:1.18;

    font-weight:800;

    letter-spacing:-0.03em;

}

.insight-card p{

    margin:0 24px 24px;

    font-size:18px;

    line-height:1.75;

    color:#667085;

    flex:1;

}

/*
==========================================================
EXPLORE INDUSTRIES
==========================================================
*/

.homepage-industries{

    margin:120px 0;

}

.homepage-industries-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:28px;

}

.industry-card{

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    padding:38px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    min-height:230px;

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;

}

.industry-card:hover{

    transform:translateY(-6px);

    border-color:#d6dce5;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

}

.industry-card a{

    text-decoration:none;

    color:inherit;

    display:flex;

    flex-direction:column;

    height:100%;

}

.industry-card h3{

    margin:0 0 18px;

    font-size:28px;

    line-height:1.18;

    font-weight:700;

    letter-spacing:-0.03em;

    color:#111827;

}

.industry-card p{

    margin:0;

    font-size:17px;

    line-height:1.85;

    color:#667085;

    flex:1;

}

.industry-card span{

    display:inline-flex;

    align-items:center;

    margin-top:28px;

    font-size:15px;

    font-weight:600;

    color:#111827;

}

/*
==========================================================
EXPLORE COUNTRIES
==========================================================
*/

.homepage-countries{

    margin:120px 0;

}

.homepage-countries-grid{

    display:grid;

    grid-template-columns:repeat(5,minmax(0,1fr));

    gap:22px;

}

.country-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:34px 28px;

    text-align:center;

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;

}

.country-card:hover{

    transform:translateY(-6px);

    border-color:#d6dce5;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

}

.country-card a{

    display:block;

    text-decoration:none;

    color:inherit;

}

.country-card h3{

    margin:0 0 12px;

    font-size:24px;

    font-weight:700;

    line-height:1.2;

    letter-spacing:-0.03em;

    color:#111827;

}

.country-card p{

    margin:0;

    font-size:15px;

    line-height:1.75;

    color:#667085;

}

/*
==========================================================
PLATFORM STATISTICS
==========================================================
*/

.homepage-statistics{

    margin:130px 0;

}

.homepage-statistics-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:30px;

}

.stat-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:48px 34px;

    text-align:center;

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;

}

.stat-card:hover{

    transform:translateY(-6px);

    border-color:#d6dce5;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

}

.stat-number{

    display:block;

    margin-bottom:16px;

    font-size:64px;

    font-weight:800;

    line-height:1;

    letter-spacing:-0.06em;

    color:#111827;

}

.stat-label{

    display:block;

    font-size:18px;

    line-height:1.75;

    color:#667085;

    font-weight:600;

}

/*
==========================================================
EDITORIAL MISSION
==========================================================
*/

.homepage-mission{

    margin:150px 0;

}

.homepage-mission .homepage-container{

    max-width:980px;

    text-align:center;

}

.homepage-mission h2{

    margin:0 0 32px;

    font-size:64px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:-0.05em;

    color:#111827;

}

.homepage-mission p{

    margin:0 auto;

    max-width:840px;

    font-size:22px;

    line-height:1.95;

    color:#667085;

}

.homepage-mission .mission-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:56px;

    padding:18px 38px;

    border-radius:14px;

    background:#111827;

    color:#fff;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:
        transform .25s ease,
        background .25s ease;

}

.homepage-mission .mission-button:hover{

    transform:translateY(-2px);

    background:#000;

}

/*
==========================================================
GLOBAL GRID
==========================================================
*/

.homepage-grid{

    display:grid;

    gap:36px;

}

/*
==========================================================
GLOBAL CARDS
==========================================================
*/

.homepage-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    overflow:hidden;

    transition:.25s ease;

}

.homepage-card:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

/*
==========================================================
TABLET
==========================================================
*/

@media (max-width:1024px){

    .homepage-container{

        width:min(100%, calc(100% - 48px));

    }

    .homepage-section{

    margin:100px 0;

}

    .homepage-section-header{

        margin:0 auto 56px;

    }

    .homepage-section-header h2{

        font-size:46px;

    }

    .homepage-section-header p{

        font-size:19px;

    }

    /*
    HERO
    */

    .homepage-hero .homepage-container{

        grid-template-columns:1fr;

        gap:56px;

        text-align:center;

    }

    .homepage-hero-content{

        max-width:100%;

    }

    .homepage-hero-title{

        font-size:58px;

    }

    .homepage-hero-description{

        margin:0 auto 40px;

        max-width:720px;

        font-size:22px;

    }

    /*
    EXPLORE
    */

    .homepage-explore-grid{

        grid-template-columns:repeat(2,1fr);

    }

    /*
    FEATURED PROFILES
    */

    .homepage-profiles-grid{

        grid-template-columns:repeat(2,1fr);

    }

    /*
    FEATURED INSIGHTS
    */

    .homepage-insights-grid{

        grid-template-columns:repeat(2,1fr);

    }

    /*
    INDUSTRIES
    */

    .homepage-industries-grid{

        grid-template-columns:repeat(2,1fr);

    }

    /*
    COUNTRIES
    */

    .homepage-countries-grid{

        grid-template-columns:repeat(3,1fr);

    }

    /*
    STATISTICS
    */

    .homepage-statistics-grid{

        grid-template-columns:repeat(2,1fr);

    }

    /*
    MISSION
    */

    .homepage-mission h2{

        font-size:48px;

    }

    .homepage-mission p{

        font-size:20px;

    }

}

/*
==========================================================
MOBILE
==========================================================
*/

@media (max-width:768px){

    /*
    -------------------------------------------------------
    LAYOUT
    -------------------------------------------------------
    */

    .homepage-container{
        width:min(100%, calc(100% - 24px));
    }

    .homepage-section{
        margin:40px 0;
    }

.homepage-section-header{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:14px;

    margin:0 0 30px;

    padding-bottom:18px;

}

    .homepage-section-header::after{

        display:block;
        position:relative;

        width:100%;
        margin-top:0;

    }

    .homepage-section-header h2{

    width:100%;

    margin:0;

    font-size:38px;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-0.03em;

    color:#111827;

    text-wrap:balance;

}

    .homepage-section-header h2 br{
        display:none;
    }

    .homepage-section-header p{

    width:100%;

    max-width:100%;

    margin:0;

    font-size:17px;

    line-height:1.7;

    color:#667085;

    text-wrap:pretty;

}

    /*
    -------------------------------------------------------
    HERO
    -------------------------------------------------------
    */

    .homepage-hero{

        padding:32px 0 44px;
        margin:0;

    }

    .homepage-kicker{

        font-size:12px;
        letter-spacing:.16em;

        margin-bottom:18px;

    }

    .homepage-hero-title{

        max-width:100%;

        font-size:42px;
        line-height:1.08;

        letter-spacing:-.05em;

        text-wrap:balance;

    }

    .homepage-hero-description{

        max-width:100%;

        margin:20px auto 0;

        font-size:17px;
        line-height:1.75;

    }

    /*
    -------------------------------------------------------
    HERO SEARCH
    -------------------------------------------------------
    */

    .homepage-search{

        display:block;

        margin-top:28px;

        border-radius:16px;

    }

    .homepage-search input{

        width:100%;

        padding:18px 20px;

        font-size:16px;

    }

    .homepage-search button{

        width:100%;

        padding:18px;

        font-size:16px;

    }

    /*
    -------------------------------------------------------
    QUICK LINKS
    -------------------------------------------------------
    */

    .homepage-quick-links{

        gap:12px;

        margin-top:22px;

    }

    .homepage-quick-links a{

        font-size:15px;

    }

    /*
    -------------------------------------------------------
    GRIDS
    -------------------------------------------------------
    */

    .homepage-profiles-grid,
    .homepage-explore-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:20px;

    }

    .homepage-insights-grid,
    .homepage-industries-grid,
    .homepage-countries-grid,
    .homepage-statistics-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:18px;

    }

    /*
    -------------------------------------------------------
    PROFILE CARDS
    -------------------------------------------------------
    */

    .profile-card{

        border-radius:20px;

        overflow:hidden;

    }

    .profile-card-image{

        aspect-ratio:4/3;

    }

    .profile-card-content{

        padding:22px;

    }

    .profile-card h3{

        font-size:24px;

        line-height:1.2;

        letter-spacing:-.03em;

    }

    .profile-card-headline{

        font-size:17px;

        line-height:1.6;

    }

    .profile-card-company{

        font-size:15px;

    }

    .profile-card-summary{

        font-size:16px;

        line-height:1.75;

    }

    /*
    -------------------------------------------------------
    INSIGHTS
    -------------------------------------------------------
    */

    .insight-card{

        border-radius:18px;

    }

    .insight-card h3{

        margin:22px 22px 12px;

        font-size:26px;

        line-height:1.2;

    }

    .insight-card p{

        margin:0 22px 22px;

        font-size:17px;

        line-height:1.75;

    }

    /*
    -------------------------------------------------------
    COVER STORY
    -------------------------------------------------------
    */

    .cover-story-grid{

        grid-template-columns:1fr;

        gap:28px;

    }

    .cover-story-image{

        border-radius:18px;

        overflow:hidden;

    }

    .cover-story-title{

        font-size:32px;

        line-height:1.12;

        letter-spacing:-.04em;

        margin-bottom:20px;

    }

    .cover-story-summary{

        font-size:16px;

        line-height:1.75;

        color:#667085;

    }

    /*
    -------------------------------------------------------
    EXPLORE
    -------------------------------------------------------
    */

    .explore-card{

        padding:28px;

        border-radius:20px;

    }

    .explore-card h3{

        margin:0 0 14px;

        font-size:26px;

        line-height:1.2;

        letter-spacing:-.03em;

    }

    .explore-card p{

        font-size:16px;

        line-height:1.75;

        color:#667085;

    }

    .explore-card a{

        margin-top:22px;

        font-size:15px;

        font-weight:600;

    }

    /*
    -------------------------------------------------------
    INDUSTRY / COUNTRY / STATS
    -------------------------------------------------------
    */

    .industry-card,
    .country-card,
    .stat-card{

        padding:24px;

    }

    .stat-number{

        font-size:42px;

    }

    .stat-label{

        font-size:16px;

    }

    /*
    -------------------------------------------------------
    MISSION
    -------------------------------------------------------
    */

    .homepage-mission{

        padding:56px 0;

        margin:0;

    }

    .homepage-mission h2{

        font-size:34px;

    }

    .homepage-mission p{

        font-size:17px;

        line-height:1.85;

    }

    .homepage-mission .mission-button{

        width:100%;

    }

}

/* ==========================================================
   EDITORIAL SPACING SYSTEM
   ========================================================== */

.homepage-cover-story,
.homepage-featured-insights,
.homepage-featured-profiles,
.homepage-explore,
.homepage-industries,
.homepage-countries,
.homepage-statistics,
.homepage-mission{

    position:relative;

    padding-top:90px;

}

.homepage-cover-story::before,
.homepage-featured-insights::before,
.homepage-featured-profiles::before,
.homepage-explore::before,
.homepage-industries::before,
.homepage-countries::before,
.homepage-statistics::before,
.homepage-mission::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:1280px;

    max-width:calc(100% - 64px);

    border-top:1px solid #eceff3;

}

/* ==========================================================
EDITORIAL RHYTHM
========================================================== */

.homepage-cover-story{

    margin-top:40px;

    margin-bottom:140px;

}

.homepage-featured-insights{

    background:#fafafa;

    padding:120px 0;

    margin:0;

}

.homepage-featured-profiles{

    padding-top:140px;

}

.homepage-explore{

    background:#f8f9fb;

    padding:120px 0;

    margin:0;

}

.homepage-industries{

    padding-top:140px;

}

.homepage-countries{

    background:#fafafa;

    padding:120px 0;

    margin:0;

}

.homepage-statistics{

    padding-top:140px;

}

.homepage-mission{

    background:#111827;

    color:#fff;

    padding:140px 0;

    margin:0;

}

.homepage-mission h2{

    color:#fff;

}

.homepage-mission p{

    color:rgba(255,255,255,.75);

}

/* ==========================================================
COVER STORY PREMIUM LAYOUT
========================================================== */

.cover-story-grid{

    display:grid;

    grid-template-columns:minmax(0,1.45fr) minmax(320px,.55fr);

    gap:72px;

    align-items:start;

}

.cover-story-content{

    max-width:720px;

}

.cover-story-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.16em;

    text-transform:uppercase;

    color:#2563eb;

    margin-bottom:20px;

}

.cover-story-title{

    margin:0 0 24px;

    font-size:56px;

    line-height:1.05;

    letter-spacing:-0.045em;

    font-weight:800;

    max-width:820px;

}

.cover-story-title a{

    color:#111827;

    text-decoration:none;

}

.cover-story-summary{

    margin:0 0 34px;

    max-width:700px;

    font-size:20px;

    line-height:1.75;

    color:#667085;

}

.cover-story-meta{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    align-items:center;

    margin-bottom:36px;

    font-size:15px;

    color:#6b7280;

}

.cover-story-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    text-decoration:none;

    color:#111827;

}

.cover-story-image{

    border-radius:18px;

    overflow:hidden;

    box-shadow:

        0 20px 60px rgba(15,23,42,.08),

        0 40px 90px rgba(15,23,42,.12);

}

.cover-story-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

}

@media (max-width:1024px){

    .cover-story-grid{

    grid-template-columns:1fr;

    gap:36px;

}

    .cover-story-title{

        font-size:44px;

    }

}

@media (max-width:768px){

    .cover-story-title{

        font-size:34px;

    }

    .cover-story-summary{

        font-size:18px;

    }

}

@media (max-width:380px){

    .homepage-section-header h2{

        font-size:24px;

    }

}

/* ==========================================================
PREMIUM EDITORIAL CARDS
========================================================== */

.profile-card,
.insight-card{

    border:none;

    background:#fff;

    overflow:hidden;

    box-shadow:none;

    transition:transform .28s ease;

}

.profile-card:hover,
.insight-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 8px 18px rgba(15,23,42,.04),
        0 28px 70px rgba(15,23,42,.10);

}

.profile-card-image,
.insight-image{

    overflow:hidden;

}

.profile-card img,
.insight-card img{

    transition:
        transform .55s ease,
        filter .55s ease;

}

.profile-card:hover img,
.insight-card:hover img{

    transform:scale(1.05);

}

.profile-card h3,
.insight-card h3{

    transition:.25s ease;

}

.profile-card:hover h3,
.insight-card:hover h3{

    color:#2563eb;

}

.profile-card-summary,
.insight-card p{

    color:#667085;

}

.profile-card-content,
.insight-card{

    position:relative;

}

.profile-card-content::before,
.insight-card a::before{

    content:"Editorial";

    display:inline-block;

    font-size:11px;

    font-weight:700;

    letter-spacing:.14em;

    text-transform:uppercase;

    color:#2563eb;

    margin-bottom:16px;

}

/* ==========================================================
EDITORIAL WIDTH HIERARCHY
========================================================== */

.homepage-cover-story .homepage-container{
    max-width:1400px;
}

.homepage-featured-insights .homepage-container{
    max-width:1320px;
}

.homepage-featured-profiles .homepage-container{
    max-width:1240px;
}

.homepage-explore .homepage-container{
    max-width:1120px;
}

.homepage-industries .homepage-container{
    max-width:1280px;
}

.homepage-countries .homepage-container{
    max-width:1180px;
}

.homepage-statistics .homepage-container{
    max-width:960px;
}

.homepage-mission .homepage-container{
    max-width:860px;
}

/* ==========================================================
EDITORIAL SECTION HIERARCHY
========================================================== */

.homepage-section-header{

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    max-width:100%;
    margin:0 0 56px;

    text-align:left;

    padding-bottom:22px;

    border-bottom:1px solid #eceff3;

}

.homepage-section-header p{

    max-width:520px;

    margin:0;

    font-size:18px;

    line-height:1.8;

    color:#6b7280;

}

/* ==========================================================
REMOVE GAP UNDER HEADER
========================================================== */

.homepage{

    padding-top:0;

}

.site-main.homepage{

    margin-top:0;

    padding-top:0;

}

/*
==========================================================
MOBILE SECTION SPACING FIX
==========================================================
*/

@media (max-width:768px){

    .homepage-cover-story{

        margin-top:24px;
        margin-bottom:48px;

    }

    .homepage-featured-insights{

        padding:56px 0;

    }

    .homepage-featured-profiles{

        padding-top:56px;

    }

    .homepage-explore{

        padding:56px 0;

    }

    .homepage-industries{

        padding-top:56px;

    }

    .homepage-countries{

        padding:56px 0;

    }

    .homepage-statistics{

        padding-top:56px;

    }

    .homepage-mission{

        padding:64px 0;

    }

}

/*
==========================================================
MOBILE HERO OFFSET
==========================================================
*/

@media (max-width:768px){

    .homepage-hero{

        padding-top:20px;

    }

}