/* =========================================================
   FOUNDER STORIES
   HOME PAGE CSS
   Professional News / Editorial Style
========================================================= */


/* =========================================================
   BASIC HOME SETTINGS
========================================================= */

.fs-section,
.fs-hero-section,
.fs-breaking-section,
.fs-category-section {
    width: 100%;
}

.fs-section {
    padding: 58px 0;
}

.fs-grey-section {
    background: #f4f5f7;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.fs-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 26px;
}

.fs-section-header h2 {
    margin: 0;

    color: #16181c;

    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: -0.5px;
}

.fs-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #e30613;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.fs-view-all {
    flex-shrink: 0;

    color: #25282d;

    font-size: 12px;
    font-weight: 800;

    transition: color .2s ease;
}

.fs-view-all:hover {
    color: #e30613;
}


/* =========================================================
   BREAKING / LATEST BAR
========================================================= */

.fs-breaking-section {
    padding-top: 22px;

    background: #ffffff;
}

.fs-breaking {
    min-height: 48px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #091d3b;
    color: #ffffff;

    border-radius: 7px;
}

.fs-breaking-label {
    height: 48px;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    padding: 0 21px;

    background: #e30613;
    color: #ffffff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.fs-breaking-text {
    flex: 1;
    min-width: 0;

    overflow: hidden;

    padding: 0 19px;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.fs-breaking-text a {
    color: #ffffff;
}

.fs-breaking-text a:hover {
    text-decoration: underline;
}

.fs-breaking-icon {
    flex-shrink: 0;

    padding: 0 20px;

    color: #ffffff;

    font-size: 20px;
}


/* =========================================================
   CATEGORY BAR
========================================================= */

.fs-category-section {
    background: #ffffff;

    border-bottom: 1px solid #e6e8eb;
}

.fs-category-scroll {
    display: flex;
    align-items: center;

    gap: 28px;

    overflow-x: auto;

    padding: 19px 0;

    scrollbar-width: none;
}

.fs-category-scroll::-webkit-scrollbar {
    display: none;
}

.fs-category-link {
    position: relative;

    flex-shrink: 0;

    color: #565a61;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: color .2s ease;
}

.fs-category-link:hover {
    color: #e30613;
}

.fs-category-active {
    color: #e30613;
}

.fs-category-active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -19px;

    height: 3px;

    background: #e30613;
}


/* =========================================================
   HERO AREA
========================================================= */

.fs-hero-section {
    padding: 34px 0 15px;

    background: #f5f6f8;
}

.fs-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.8fr) minmax(320px, .75fr);

    gap: 27px;

    align-items: start;
}


/* =========================================================
   MAIN FEATURE STORY
========================================================= */

.fs-feature-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e4e8;
    border-radius: 10px;

    box-shadow:
        0 2px 8px rgba(15, 23, 42, .03);
}

.fs-feature-image {
    width: 100%;
    height: 400px;

    display: block;

    overflow: hidden;

    background: #e9edf2;
}

.fs-feature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.fs-feature-card:hover .fs-feature-image img {
    transform: scale(1.02);
}


/* FEATURE PLACEHOLDER */

.fs-feature-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        radial-gradient(circle at 82% 18%,
            rgba(227, 6, 19, .24),
            transparent 33%),
        linear-gradient(135deg,
            #071a36,
            #173d6c);
}

.fs-placeholder-letter {
    width: 108px;
    height: 108px;

    display: grid;
    place-items: center;

    background: #ffffff;

    color: #e30613;

    border-radius: 50%;

    font-size: 49px;
    font-weight: 900;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .15);
}


/* FEATURE CONTENT */

.fs-feature-content {
    padding: 28px 31px 30px;
}

.fs-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.fs-category-badge {
    display: inline-block;

    color: #d90412;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.fs-date {
    color: #969ba3;

    font-size: 11px;
}

.fs-feature-content h1 {
    max-width: 900px;

    margin: 13px 0 13px;

    color: #15171b;

    font-size: clamp(30px, 3vw, 43px);
    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -.8px;
}

.fs-feature-content h1 a {
    color: inherit;

    transition: color .2s ease;
}

.fs-feature-content h1 a:hover {
    color: #e30613;
}

.fs-feature-content>p {
    max-width: 850px;

    margin: 0;

    color: #686c73;

    font-size: 15px;

    line-height: 1.7;
}


/* FEATURE BOTTOM */

.fs-feature-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 21px;
    padding-top: 18px;

    border-top: 1px solid #e9ebee;
}

.fs-feature-footer strong {
    display: block;

    color: #282b30;

    font-size: 12px;
}

.fs-feature-footer span {
    display: block;

    margin-top: 3px;

    color: #92969d;

    font-size: 10px;
}

.fs-feature-footer>a {
    flex-shrink: 0;

    color: #e30613;

    font-size: 11px;
    font-weight: 900;
}

.fs-feature-footer>a:hover {
    text-decoration: underline;
}


/* =========================================================
   EDITOR'S PICK / TOP STORIES
========================================================= */

.fs-top-stories {
    padding: 21px;

    background: #ffffff;

    border: 1px solid #e1e4e8;
    border-radius: 10px;

    box-shadow:
        0 2px 8px rgba(15, 23, 42, .03);
}

.fs-side-title {
    padding-bottom: 16px;

    border-bottom: 1px solid #e8eaed;
}

.fs-side-title span {
    display: block;

    margin-bottom: 6px;

    color: #e30613;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.fs-side-title h2 {
    margin: 0;

    color: #202328;

    font-size: 21px;
    font-weight: 800;
}

.fs-top-list {
    width: 100%;
}

.fs-top-item {
    display: grid;

    grid-template-columns:
        108px minmax(0, 1fr);

    gap: 13px;

    padding: 16px 0;

    border-bottom: 1px solid #eceef0;
}

.fs-top-item:last-child {
    border-bottom: 0;
}

.fs-top-image {
    width: 100%;
    height: 77px;

    display: block;

    overflow: hidden;

    background: #edf0f3;

    border-radius: 6px;
}

.fs-top-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.fs-top-item:hover .fs-top-image img {
    transform: scale(1.04);
}

.fs-small-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(135deg,
            #081d3c,
            #174b86);

    color: #ffffff;

    font-size: 27px;
    font-weight: 900;
}

.fs-top-content {
    min-width: 0;
}

.fs-top-content>span {
    display: block;

    color: #e30613;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
}

.fs-top-content h3 {
    margin: 5px 0;

    color: #22252a;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.38;
}

.fs-top-content h3 a {
    color: inherit;

    transition: color .2s ease;
}

.fs-top-content h3 a:hover {
    color: #e30613;
}

.fs-top-content small {
    display: block;

    color: #95999f;

    font-size: 10px;
}


/* =========================================================
   FOUNDER STORY GRID
========================================================= */

.fs-founder-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.fs-founder-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3e6e9;
    border-radius: 9px;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.fs-founder-card:hover {
    transform: translateY(-4px);

    border-color: #d9dde2;

    box-shadow:
        0 14px 32px rgba(15, 23, 42, .09);
}

.fs-founder-image {
    width: 100%;
    height: 190px;

    display: block;

    overflow: hidden;

    background: #edf0f3;
}

.fs-founder-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}

.fs-founder-card:hover .fs-founder-image img {
    transform: scale(1.035);
}

.fs-card-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(135deg,
            #081c39,
            #174d88);

    color: #ffffff;

    font-size: 44px;
    font-weight: 900;
}

.fs-founder-body {
    padding: 18px;
}

.fs-founder-body h3 {
    margin: 10px 0;

    color: #1f2227;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.4;
}

.fs-founder-body h3 a {
    color: inherit;

    transition: color .2s ease;
}

.fs-founder-body h3 a:hover {
    color: #e30613;
}

.fs-founder-body p {
    min-height: 59px;

    margin: 0;

    color: #747981;

    font-size: 12px;

    line-height: 1.65;
}

.fs-read-more {
    display: inline-block;

    margin-top: 15px;

    color: #e30613;

    font-size: 11px;
    font-weight: 900;
}

.fs-read-more:hover {
    text-decoration: underline;
}


/* =========================================================
   FOUNDER BUSINESS UPDATES
========================================================= */

.fs-update-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 19px;
}

.fs-update-card {
    min-width: 0;

    padding: 21px;

    background: #ffffff;

    border: 1px solid #e1e4e8;
    border-radius: 9px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.fs-update-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(15, 23, 42, .07);
}

.fs-update-head {
    display: flex;
    align-items: center;

    gap: 11px;
}

.fs-update-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: grid;
    place-items: center;

    background: #edf2f8;

    color: #0b2347;

    border-radius: 8px;

    font-size: 17px;
    font-weight: 900;
}

.fs-update-head span {
    display: block;

    color: #e30613;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .9px;
}

.fs-update-head small {
    display: block;

    margin-top: 3px;

    color: #969aa1;

    font-size: 10px;
}

.fs-update-card h3 {
    margin: 16px 0 9px;

    color: #24272c;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.4;
}

.fs-update-card h3 a {
    color: inherit;

    transition: color .2s ease;
}

.fs-update-card h3 a:hover {
    color: #e30613;
}

.fs-update-card>p {
    min-height: 64px;

    margin: 0;

    color: #757a82;

    font-size: 12px;

    line-height: 1.65;
}

.fs-update-company {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 18px;
    padding-top: 15px;

    border-top: 1px solid #eceef0;
}

.fs-update-company strong {
    display: block;

    color: #292c31;

    font-size: 11px;
}

.fs-update-company small {
    display: block;

    margin-top: 2px;

    color: #999da3;

    font-size: 9px;
}

.fs-update-company>a {
    flex-shrink: 0;

    color: #e30613;

    font-size: 10px;
    font-weight: 900;
}


/* =========================================================
   BUSINESS NEWS
========================================================= */

.fs-news-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr) minmax(340px, .9fr);

    gap: 28px;

    align-items: start;
}


/* MAIN NEWS */

.fs-main-news {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3e6e9;
    border-radius: 9px;
}

.fs-main-news-image {
    width: 100%;
    height: 325px;

    display: block;

    overflow: hidden;

    background: #edf0f3;
}

.fs-main-news-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}

.fs-main-news:hover .fs-main-news-image img {
    transform: scale(1.025);
}

.fs-news-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(135deg,
            #081d3c,
            #174c86);

    color: #ffffff;

    font-size: 31px;
    font-weight: 900;

    letter-spacing: 3px;
}

.fs-main-news-body {
    padding: 24px;
}

.fs-main-news-body h3 {
    margin: 10px 0;

    color: #1f2226;

    font-size: 26px;
    font-weight: 800;

    line-height: 1.28;
}

.fs-main-news-body h3 a {
    color: inherit;

    transition: color .2s ease;
}

.fs-main-news-body h3 a:hover {
    color: #e30613;
}

.fs-main-news-body p {
    margin: 0 0 14px;

    color: #70747b;

    font-size: 13px;

    line-height: 1.68;
}


/* NEWS LIST */

.fs-news-list {
    padding: 5px 18px;

    background: #ffffff;

    border: 1px solid #e3e6e9;
    border-radius: 9px;
}

.fs-news-item {
    display: grid;

    grid-template-columns:
        112px minmax(0, 1fr);

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid #eceef0;
}

.fs-news-item:last-child {
    border-bottom: 0;
}

.fs-news-thumb {
    width: 100%;
    height: 77px;

    display: block;

    overflow: hidden;

    background: #edf0f3;

    border-radius: 5px;
}

.fs-news-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.fs-news-item:hover .fs-news-thumb img {
    transform: scale(1.04);
}

.fs-news-thumb-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background: #e30613;

    color: #ffffff;

    font-size: 20px;
    font-weight: 900;
}

.fs-news-item>div {
    min-width: 0;
}

.fs-news-item h3 {
    margin: 6px 0;

    color: #22252a;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.38;
}

.fs-news-item h3 a {
    color: inherit;

    transition: color .2s ease;
}

.fs-news-item h3 a:hover {
    color: #e30613;
}


/* =========================================================
   EMPTY STATES
========================================================= */

.fs-empty {
    width: 100%;

    padding: 36px;

    background: #ffffff;

    color: #7c8087;

    border: 1px solid #e3e6e9;
    border-radius: 8px;

    font-size: 13px;

    text-align: center;
}

.fs-empty-small {
    padding: 20px 0;

    color: #888c93;

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   DESKTOP - SMALLER SCREENS
========================================================= */

@media (max-width: 1180px) {

    .fs-founder-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .fs-update-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .fs-feature-image {
        height: 370px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .fs-hero-grid {
        grid-template-columns: 1fr;
    }

    .fs-top-stories {
        width: 100%;
    }

    .fs-news-layout {
        grid-template-columns: 1fr;
    }

    .fs-feature-image {
        height: 350px;
    }

    .fs-founder-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .fs-update-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .fs-news-list {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .fs-section {
        padding: 39px 0;
    }


    /* BREAKING */

    .fs-breaking-section {
        padding-top: 12px;
    }

    .fs-breaking {
        min-height: 42px;

        border-radius: 6px;
    }

    .fs-breaking-label {
        height: 42px;

        padding: 0 12px;

        font-size: 9px;
    }

    .fs-breaking-text {
        padding: 0 11px;

        font-size: 11px;
    }

    .fs-breaking-icon {
        display: none;
    }


    /* CATEGORIES */

    .fs-category-scroll {
        gap: 20px;

        padding: 15px 0;
    }

    .fs-category-link {
        font-size: 12px;
    }

    .fs-category-active::after {
        bottom: -15px;
    }


    /* HERO */

    .fs-hero-section {
        padding-top: 19px;
    }

    .fs-hero-grid {
        gap: 18px;
    }

    .fs-feature-image {
        height: 245px;
    }

    .fs-feature-content {
        padding: 20px;
    }

    .fs-feature-content h1 {
        margin-top: 11px;

        font-size: 25px;

        line-height: 1.18;
    }

    .fs-feature-content>p {
        font-size: 13px;

        line-height: 1.65;
    }

    .fs-feature-footer {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }


    /* TOP STORIES */

    .fs-top-stories {
        padding: 17px;
    }

    .fs-side-title h2 {
        font-size: 19px;
    }


    /* HEADINGS */

    .fs-section-header {
        align-items: center;

        margin-bottom: 20px;
    }

    .fs-section-header h2 {
        font-size: 21px;
    }

    .fs-eyebrow {
        font-size: 9px;
    }

    .fs-view-all {
        font-size: 10px;
    }


    /* FOUNDERS */

    .fs-founder-grid {
        grid-template-columns: 1fr;
    }

    .fs-founder-image {
        height: 230px;
    }

    .fs-founder-body {
        padding: 17px;
    }

    .fs-founder-body h3 {
        font-size: 18px;
    }

    .fs-founder-body p {
        min-height: auto;
    }


    /* UPDATES */

    .fs-update-grid {
        grid-template-columns: 1fr;
    }

    .fs-update-card>p {
        min-height: auto;
    }


    /* BUSINESS NEWS */

    .fs-main-news-image {
        height: 240px;
    }

    .fs-main-news-body {
        padding: 19px;
    }

    .fs-main-news-body h3 {
        font-size: 21px;
    }

    .fs-news-list {
        display: block;

        padding: 3px 15px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .fs-section {
        padding: 34px 0;
    }

    .fs-feature-image {
        height: 210px;
    }

    .fs-feature-content {
        padding: 17px;
    }

    .fs-feature-content h1 {
        font-size: 22px;
    }

    .fs-meta {
        align-items: flex-start;
    }

    .fs-top-item {
        grid-template-columns:
            95px minmax(0, 1fr);

        gap: 11px;
    }

    .fs-top-image {
        height: 70px;
    }

    .fs-founder-image {
        height: 205px;
    }

    .fs-main-news-image {
        height: 210px;
    }

    .fs-news-item {
        grid-template-columns:
            94px minmax(0, 1fr);

        gap: 11px;
    }

    .fs-news-thumb {
        height: 68px;
    }

    .fs-news-item h3 {
        font-size: 13px;
    }

}