* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "DM Sans", sans-serif;
    color: #1E1E1E;
}

body {
    background-color: #FAFAFA;
}

button {
    transition: all ease 350ms;
    cursor: pointer;
    font-family: "Roboto Mono", monospace;
    outline: none;
    font-weight: 400;
}

.highlight {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: italic;
}

a {
    font-family: "Roboto Mono", monospace;
}

section {
    padding-inline: 40px;
}

.container {
    margin: 0 auto;
    max-width: 1320px;
}

.caption {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
    color: rgba(30, 30, 30, .4);
    font-family: "Roboto Mono", monospace;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 20px;
    z-index: 999999;
    transform: translateY(-100%);
    opacity: 0;
    animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
    to { transform: translateY(0); opacity: 1; }
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #1E1E1E;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.navbar .logo { cursor: pointer; }

.navbar .links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar .links a {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    color: #1E1E1E;
    transition: all ease 250ms;
}

.navbar .links a:hover { opacity: 66%; }

.navbar .links a.active {
    border-bottom: 1px solid #1E1E1E;
    padding-bottom: 2px;
}

.navbar .links button {
    border-radius: 40px;
    background-color: #1E1E1E;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 20px;
    border: none;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navbar .links button::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0%;
    background: #FFD600;
    z-index: -1;
    transition: height 0.3s ease;
}

.navbar .links button:hover::before { height: 100%; }
.navbar .links button:hover { color: #000; }
.navbar .links button:hover img { filter: invert(100); }

/* Mobile menu */
.mobile-menu {
    display: none;
}

.menu {
    display: flex;
    position: fixed;
    z-index: 999;
    top: 0; left: 0; bottom: 0; right: 0;
    background-color: #fff;
    padding: 150px 20px 0;
    flex-direction: column;
    gap: 20px;
    transition: all ease 500ms;
    transform: translateX(100%);
}

.menu a {
    font-size: 20px;
    line-height: 26px;
    transition: all ease 300ms;
    text-decoration: none;
}

.menu .menu-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(30, 30, 30, .1);
}

.menu button {
    background-color: #1E1E1E;
    color: #fff;
    border: none;
    padding: 16px 26px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

@keyframes slideUp {
    to { transform: translateY(0); opacity: 1; }
}

/* ── HERO ── */
.blog-hero {
    background: url(assets/bg/hero_bg_too.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 160px;
    padding-bottom: 80px;
    border-bottom: 1px dashed rgba(30, 30, 30, 0.2);
}

.blog-hero .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.blog-hero .left {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.3s;
}

.blog-hero h1 {
    font-size: 95px;
    line-height: 105px;
    font-weight: 500;
    max-width: 700px;
}

.blog-hero .right {
    flex-shrink: 0;
    max-width: 380px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.6s;
}

.blog-hero .right p {
    font-size: 20px;
    line-height: 28px;
    color: rgba(30, 30, 30, 0.65);
    margin-bottom: 24px;
}

/* Search bar */
.search-wrap {
    position: relative;
}

.search-wrap input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 1px solid rgba(30, 30, 30, 0.2);
    border-radius: 30px;
    font-size: 15px;
    font-family: "DM Sans", sans-serif;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    outline: none;
    transition: border-color ease 250ms, background ease 250ms;
    color: #1E1E1E;
}

.search-wrap input::placeholder {
    color: rgba(30, 30, 30, 0.35);
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
}

.search-wrap input:focus {
    border-color: #1E1E1E;
    background: #fff;
}

.search-wrap .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.35;
}

/* ── FILTER BAR ── */
.blog-filter {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed rgba(30, 30, 30, 0.2);
}

.blog-filter .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-filter .filter-label {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    color: rgba(30, 30, 30, 0.4);
    margin-right: 8px;
}

.blog-filter button {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(30, 30, 30, 0.18);
    background: transparent;
    font-size: 13px;
    line-height: 16px;
    color: rgba(30, 30, 30, 0.6);
    font-family: "Roboto Mono", monospace;
    transition: all ease 250ms;
}

.blog-filter button.active,
.blog-filter button:hover {
    background-color: #1E1E1E;
    color: #fff;
    border-color: #1E1E1E;
}

/* ── FEATURED POST ── */
.blog-featured {
    padding-top: 100px;
    padding-bottom: 60px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(30, 30, 30, 0.1);
    cursor: pointer;
    transition: box-shadow ease 400ms, transform ease 400ms;
    text-decoration: none;
}

.featured-card:hover {
    box-shadow: 0 16px 60px rgba(30, 30, 30, 0.1);
    transform: translateY(-4px);
}

.featured-card .fc-image {
    background: linear-gradient(135deg, #1E1E1E 0%, #3A3A3A 100%);
    min-height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.featured-card .fc-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.6;
}

.featured-card .fc-image-overlay {
    position: relative;
    z-index: 2;
}

.featured-card .fc-image-overlay .fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FFD600;
    border-radius: 30px;
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: #1E1E1E;
    font-weight: 500;
}

.featured-card .fc-body {
    background: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-card .fc-body .fc-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.featured-card .fc-body .fc-category {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: rgba(30, 30, 30, 0.4);
    letter-spacing: 0.05em;
}

.featured-card .fc-body .fc-date {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: rgba(30, 30, 30, 0.3);
}

.featured-card .fc-body h2 {
    font-size: 42px;
    line-height: 52px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1E1E1E;
}

.featured-card .fc-body p {
    font-size: 18px;
    line-height: 27px;
    color: rgba(30, 30, 30, 0.65);
    margin-bottom: 40px;
    flex: 1;
}

.featured-card .fc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px dashed rgba(30, 30, 30, 0.15);
}

.featured-card .fc-footer .fc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-card .fc-footer .fc-author img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.featured-card .fc-footer .fc-author-name {
    font-size: 15px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    color: #1E1E1E;
}

.featured-card .fc-footer .fc-read-time {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: rgba(30, 30, 30, 0.35);
}

.featured-card .fc-footer .fc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(30, 30, 30, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all ease 300ms;
}

.featured-card:hover .fc-arrow {
    background: #FFD600;
    border-color: #FFD600;
}

/* ── POSTS GRID ── */
.blog-grid-section {
    padding-top: 20px;
    padding-bottom: 140px;
}

.blog-grid-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.blog-grid-section .section-header h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.blog-grid-section .section-header .post-count {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    color: rgba(30, 30, 30, 0.35);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ── BLOG CARD ── */
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(30, 30, 30, 0.08);
    background: #fff;
    cursor: pointer;
    transition: all ease 400ms;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: #1E1E1E;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(30, 30, 30, 0.08);
}

.blog-card .bc-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.blog-card .bc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform ease 500ms;
}

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

/* Gradient placeholder when no image */
.bc-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-img-placeholder span {
    font-family: "DM Serif Text", serif;
    font-style: italic;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.08);
    user-select: none;
}

.blog-card .bc-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card .bc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-card .bc-category {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    color: rgba(30, 30, 30, 0.4);
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border: 1px solid rgba(30, 30, 30, 0.12);
    border-radius: 20px;
}

.blog-card .bc-date {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    color: rgba(30, 30, 30, 0.3);
}

.blog-card h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1E1E1E;
    flex: 1;
}

.blog-card p {
    font-size: 15px;
    line-height: 22px;
    color: rgba(30, 30, 30, 0.6);
    margin-bottom: 24px;
}

.blog-card .bc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px dashed rgba(30, 30, 30, 0.12);
    margin-top: auto;
}

.blog-card .bc-read-time {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    color: rgba(30, 30, 30, 0.3);
}

.blog-card .bc-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(30, 30, 30, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all ease 300ms;
}

.blog-card:hover .bc-arrow {
    background: #FFD600;
    border-color: #FFD600;
}

/* ── LOAD MORE ── */
.load-more-wrap {
    text-align: center;
    padding-top: 60px;
}

.btn-load-more {
    background: transparent;
    border: 1px solid rgba(30, 30, 30, 0.2);
    color: rgba(30, 30, 30, 0.7);
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-family: "Roboto Mono", monospace;
    transition: all ease 300ms;
}

.btn-load-more:hover {
    border-color: #1E1E1E;
    color: #1E1E1E;
}

/* ── NEWSLETTER ── */
.blog-newsletter {
    padding-top: 0;
    padding-bottom: 140px;
}

.blog-newsletter .container {
    background: #1E1E1E;
    border-radius: 20px;
    padding: 70px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.blog-newsletter .nl-left .caption {
    color: rgba(255, 255, 255, 0.35);
}

.blog-newsletter .nl-left h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.blog-newsletter .nl-left h2 .highlight {
    color: #fff;
}

.blog-newsletter .nl-left p {
    font-size: 18px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.55);
}

.blog-newsletter .nl-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nl-input-row {
    display: flex;
    gap: 12px;
}

.nl-input-row input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    color: #fff;
    outline: none;
    transition: border-color ease 250ms, background ease 250ms;
}

.nl-input-row input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
}

.nl-input-row input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.nl-input-row button {
    background: #FFD600;
    color: #1E1E1E;
    border: none;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-family: "Roboto Mono", monospace;
    white-space: nowrap;
    transition: all ease 300ms;
}

.nl-input-row button:hover {
    background: #fff;
}

.nl-disclaimer {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 18px;
}

/* ── FOOTER ── */
.footer {
    background-color: #1E1E1E;
    padding-top: 120px;
    padding-bottom: 40px;
}

.footer .main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.footer .col.double { grid-column: span 2; }

.footer .col .footer-logo {
    display: block;
    margin-bottom: 50px;
}

.footer .col .media {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.footer .col .media .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all ease 300ms;
}

.footer .col .media .icon:hover { background-color: #F3C403; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 20px;
    line-height: 26px;
    transition: all ease 300ms;
    text-decoration: none;
}

.footer-links span {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.50);
}

.footer .col .footer-links a { color: rgba(255, 255, 255, 0.70); }
.footer .col .footer-links a:hover { color: #F3C403; }
.footer .col.double .footer-links a { color: rgba(255, 255, 255, 1); }
.footer .col.double .footer-links a:hover { color: #F3C403; }

.footer .col h3 {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    font-family: "Roboto Mono", monospace;
    color: #fff;
}

.copyright {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.copyright a {
    font-size: 16px;
    line-height: 22px;
    transition: all ease 300ms;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.70);
}

.copyright a:hover { color: #fff; }

/* ── SCROLL FADE-UP ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }


/* ================================================================
   RESPONSIVE — 1200px → 980px → 850px → 650px → 400px
   ================================================================ */

/* ── 1200px ── */
@media screen and (max-width: 1200px) {

    .blog-hero h1 {
        font-size: 74px;
        line-height: 84px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-newsletter .container {
        padding: 60px;
        gap: 40px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 40px;
        line-height: 52px;
    }
}

/* ── 980px ── */
@media screen and (max-width: 980px) {

    /* Hero — stack */
    .blog-hero .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .blog-hero h1 {
        font-size: 60px;
        line-height: 72px;
    }

    .blog-hero .right {
        max-width: 100%;
        width: 100%;
    }

    /* Featured — stack */
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-card .fc-image {
        min-height: 300px;
    }

    .featured-card .fc-body {
        padding: 40px;
    }

    .featured-card .fc-body h2 {
        font-size: 34px;
        line-height: 44px;
    }

    /* Newsletter — stack */
    .blog-newsletter .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 36px;
        line-height: 48px;
    }

    /* Footer */
    .footer .main {
        grid-template-columns: repeat(1, 1fr);
        gap: 80px;
    }

    .footer .col.double { grid-column: span 1; }
    .footer .col .footer-logo { margin-bottom: 30px; }
    .footer .col .media { margin-top: 30px; }
}

/* ── 850px — hamburger ── */
@media screen and (max-width: 850px) {

    .navbar .links { display: none; }

    .mobile-menu {
        display: flex;
        width: 50px;
        height: 50px;
        min-width: 50px;
        max-width: 50px;
        overflow: hidden;
        border-radius: 50px;
    }

    .mobile-menu .open {
        width: 50px; min-width: 50px; height: 50px;
        display: flex; align-items: center; justify-content: center;
        background-color: #1E1E1E;
        transition: all ease 450ms;
    }

    .mobile-menu .close {
        width: 50px; min-width: 50px; height: 50px;
        display: flex; align-items: center; justify-content: center;
        background-color: #F3C403;
        transition: all ease 450ms;
    }

    .blog-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .blog-hero h1 {
        font-size: 48px;
        line-height: 58px;
    }

    .blog-featured { padding-top: 60px; }

    .featured-card .fc-body { padding: 32px 28px; }

    .featured-card .fc-body h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .featured-card .fc-body p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid-section { padding-bottom: 100px; }

    .blog-newsletter { padding-bottom: 100px; }

    .blog-newsletter .container {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 30px;
        line-height: 40px;
    }

    /* Stack newsletter input+button */
    .nl-input-row {
        flex-direction: column;
        gap: 10px;
    }

    .nl-input-row button {
        width: 100%;
        justify-content: center;
        display: flex;
        padding: 16px;
    }

    .footer { padding-top: 80px; }
    .footer .col .footer-logo { width: 180px; }
}

/* ── 650px ── */
@media screen and (max-width: 650px) {

    section { padding-inline: 20px; }

    .caption {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 18px;
    }

    .blog-hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .blog-hero h1 {
        font-size: 38px;
        line-height: 48px;
    }

    .blog-hero .right p {
        font-size: 17px;
        line-height: 25px;
    }

    .blog-filter .filter-label { width: 100%; margin-bottom: 4px; }
    .blog-filter button { padding: 8px 14px; font-size: 12px; }

    .featured-card .fc-image { min-height: 220px; }

    .featured-card .fc-body {
        padding: 24px 20px;
    }

    .featured-card .fc-body h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .featured-card .fc-footer {
        flex-wrap: wrap;
        gap: 14px;
    }

    .blog-card .bc-body { padding: 22px 20px 18px; }

    .blog-card h3 {
        font-size: 19px;
        line-height: 26px;
    }

    .blog-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-newsletter .container {
        padding: 32px 22px;
        gap: 28px;
        border-radius: 14px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .blog-newsletter .nl-left p {
        font-size: 16px;
        line-height: 24px;
    }

    .footer .main { gap: 40px; }
    .footer-links a { font-size: 18px; line-height: 24px; }
    .footer .col h3 { margin-bottom: 20px; font-size: 22px; line-height: 28px; }
    .copyright { flex-direction: column; align-items: start; gap: 15px; }
}

/* ── 400px ── */
@media screen and (max-width: 400px) {

    .blog-hero h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .featured-card .fc-body h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .blog-card h3 {
        font-size: 17px;
        line-height: 24px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .nl-input-row input {
        padding: 14px 16px;
        font-size: 15px;
    }
}