
/* =========================================================
   BANANABLOG — CORE VARIABLES
========================================================= */

:root {
    --yellow: #fcf705;
    --blue: #07b0f1;
    --black: #111111;
    --white: #ffffff;
    --orange: #ff7a00;
    --pink: #ff69b4;
    --green: #70d34a;
    --gray: #f2f2f2;

    --border: 3px solid var(--black);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;

    background: var(--gray);
    color: var(--black);

    font-family: "Space Grotesk", sans-serif;
}

main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

section {
    width: 100%;
    max-width: 100%;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.posts-grid,
.featured-post,
.posts-section,
.post-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1240px, 92%);
    margin: 0 auto;
}


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

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: transparent;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    width: min(1400px, 94%);
    min-height: 110px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 30px;

    background: transparent;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    width: 145px;
    flex-shrink: 0;
}

.logo {
display: flex;
align-items: center;
}

.logo img {
display: block;
width: 75px;
height: auto;
max-width: 75px;
}



/* =========================================================
   DESKTOP NAV
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: clamp(18px, 2.2vw, 35px);

    margin-left: auto;
}

.nav-links a {
    position: relative;

    color: var(--black);

    font-family: "DM Mono", monospace;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: .05em;
    white-space: nowrap;

    transition:
        transform .2s ease,
        color .2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 3px;

    background: var(--blue);

    transition: width .2s ease;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================================
   NAV RIGHT
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    gap: 18px;
}

.nav-socials,
.social-links {
    display: flex;
    align-items: center;

    gap: 8px;
}

.nav-socials a,
.social-links a {
    width: 36px;
    height: 36px;

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

    background: var(--black);
    color: var(--white);

    border: 2px solid var(--black);

    font-family: "DM Mono", monospace;
    font-size: 9px;
    font-weight: bold;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.nav-socials a:hover,
.social-links a:hover {
    background: var(--yellow);
    color: var(--black);

    transform: translateY(-3px) rotate(-4deg);
}


/* =========================================================
   DESKTOP NAV CTA
========================================================= */

.nav-button,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    background: var(--black);
    color: var(--white);

    border: 3px solid var(--black);

    font-family: "Archivo Black", sans-serif;
    font-size: 12px;

    white-space: nowrap;

    box-shadow: 4px 4px 0 var(--blue);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        color .2s ease;
}

.nav-button:hover,
.nav-cta:hover {
    background: var(--yellow);
    color: var(--black);

    transform: translate(3px, 3px);

    box-shadow: 1px 1px 0 var(--black);
}

.nav-button span,
.nav-cta span {
    margin-left: 9px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    margin-left: auto;
    padding: 9px;

    background: var(--yellow);

    border: 3px solid var(--black);

    cursor: pointer;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    box-shadow: 3px 3px 0 var(--black);

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

.menu-toggle:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--black);
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 3px;

    background: var(--black);

    transition:
        transform .25s ease,
        opacity .2s ease;
}


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

.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: 100%;
    height: 100dvh;

    background: var(--yellow);

    transform: translateX(100%);

    visibility: hidden;

    overflow-y: auto;

    z-index: 9998;

    transition:
        transform .35s cubic-bezier(.77, 0, .18, 1),
        visibility .35s;
}

.mobile-menu.active,
.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}


/* =========================================================
   MOBILE MENU INNER
========================================================= */

.mobile-menu-inner {
    min-height: 100%;

    display: flex;
    flex-direction: column;

    padding: 120px 7vw 40px;
}


/* =========================================================
   MOBILE MENU LINKS
========================================================= */

.mobile-menu-links {
    display: flex;
    flex-direction: column;

    border-top: 3px solid var(--black);
}

.mobile-menu-links a,
.mobile-menu > a {
    display: block;

    padding: 20px 0;

    color: var(--black);

    border-bottom: 3px solid var(--black);

    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.5rem, 10vw, 5rem);

    line-height: .9;

    text-transform: uppercase;

    transition:
        padding-left .2s ease,
        background .2s ease;
}

.mobile-menu-links a:hover,
.mobile-menu > a:hover {
    padding-left: 12px;
}


/* =========================================================
   MOBILE MENU BOTTOM
========================================================= */

.mobile-menu-bottom {
    margin-top: auto;

    padding-top: 40px;

    display: flex;
    flex-direction: column;

    gap: 25px;
}


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

.mobile-socials {
    display: flex;
    gap: 10px;
}

.mobile-socials a {
    width: 48px;
    height: 48px;

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

    background: var(--black);
    color: var(--white);

    border: 3px solid var(--black);

    font-family: "DM Mono", monospace;
    font-size: 13px;
    font-weight: bold;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.mobile-socials a:hover {
    background: var(--white);
    color: var(--black);

    transform: translateY(-3px);
}


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

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 62px;

    background: var(--black);
    color: var(--white);

    border: 3px solid var(--black);

    font-family: "Archivo Black", sans-serif;
    font-size: 16px;

    box-shadow: 5px 5px 0 var(--white);

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

.mobile-cta:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--black);
}


/* =========================================================
   HAMBURGER ANIMATION
========================================================= */

.menu-toggle.active span:nth-child(1),
.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2),
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3),
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


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

.blog-hero {
    position: relative;

    width: 100%;
    min-height: 780px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--yellow);

    /*
       Extra top space gives the navigation room
       and prevents the headline from feeling cramped.
    */

    padding: 190px 7% 120px;
}

.hero-noise {
    position: absolute;
    inset: 0;

    opacity: .08;

    background-image:
        radial-gradient(
            var(--black) 1px,
            transparent 1px
        );

    background-size: 12px 12px;

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 950px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    font-family: "DM Mono", monospace;
    font-size: 14px;
    font-weight: bold;
}

.hero-eyebrow span {
    font-size: 24px;
}

.blog-hero h1 {
    font-family: "Archivo Black", sans-serif;

    font-size: clamp(62px, 9vw, 145px);

    line-height: .82;

    letter-spacing: -.065em;

    text-transform: uppercase;
}

.blog-hero h1 span {
    color: var(--blue);

    -webkit-text-stroke: 3px var(--black);

    text-shadow:
        8px 8px 0 var(--black);
}

.hero-description {
    max-width: 620px;

    margin-top: 48px;

    font-size: 20px;
    line-height: 1.5;

    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}


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

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

    gap: 25px;

    padding: 17px 22px;

    border: 2px solid var(--black);

    font-family: "DM Mono", monospace;
    font-size: 11px;
    font-weight: bold;

    letter-spacing: .04em;

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

.button:hover {
    transform: translate(-4px, -4px);

    box-shadow:
        5px 5px 0 var(--black);
}

.button-black {
    background: var(--black);
    color: var(--white);
}

.button-outline {
    background: transparent;
    color: var(--black);
}


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

.hero-sticker {
    position: absolute;

    z-index: 3;

    border: 3px solid var(--black);

    padding: 13px 18px;

    background: var(--white);

    font-family: "DM Mono", monospace;
    font-size: 12px;
    font-weight: bold;

    transform: rotate(-9deg);
}

.sticker-one {
    top: 28%;
    right: 12%;
}

.sticker-two {
    right: 22%;
    bottom: 19%;

    background: var(--pink);

    transform: rotate(8deg);
}


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

.hero-banana {
    position: absolute;

    right: 4%;
    bottom: -20px;

    z-index: 1;

    font-size: clamp(180px, 25vw, 400px);

    transform: rotate(-17deg);

    filter:
        drop-shadow(
            15px 18px 0 rgba(17, 17, 17, .15)
        );

    animation:
        bananaFloat 4s ease-in-out infinite;
}

@keyframes bananaFloat {

    0%,
    100% {
        transform:
            rotate(-17deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-12deg)
            translateY(-20px);
    }
}


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

.category-section {
    width: 100%;

    background: var(--black);
    color: var(--white);

    padding: 110px 0 100px;

    border-top: 3px solid var(--white);
    border-bottom: 3px solid var(--white);

    overflow: hidden;
}

.category-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding-bottom: 35px;

    border-bottom: 2px solid #444444;

    font-family: "DM Mono", monospace;
    font-size: .7rem;

    letter-spacing: .08em;

    color: #aaaaaa;
}

.category-heading {
    padding: 55px 0 60px;
}

.category-heading h2 {
    margin: 0;

    font-family: "Archivo Black", sans-serif;

    font-size: clamp(3rem, 8vw, 8rem);

    line-height: .88;

    letter-spacing: -.07em;

    text-transform: uppercase;
}

.category-heading h2 span {
    color: var(--yellow);
}

.category-list {
    display: flex;
    flex-direction: column;

    border-top: 3px solid var(--white);
}

.category {
    display: grid;

    grid-template-columns: 80px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 28px 0;

    color: var(--white);

    border-bottom: 2px solid #444444;

    transition:
        background .3s ease,
        color .3s ease,
        padding .3s ease;
}

.category-number {
    font-family: "DM Mono", monospace;

    font-size: .8rem;

    color: #777777;

    transition: color .3s ease;
}

.category-name {
    font-family: "Archivo Black", sans-serif;

    font-size: clamp(1.5rem, 4vw, 3.5rem);

    line-height: 1;

    letter-spacing: -.04em;

    text-transform: uppercase;

    transition: transform .3s ease;
}

.category-arrow {
    width: 48px;
    height: 48px;

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

    border: 2px solid #555555;
    border-radius: 50%;

    font-size: 1.5rem;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.category:hover,
.category.active {
    background: var(--yellow);
    color: var(--black);

    padding-left: 20px;
    padding-right: 20px;
}

.category:hover .category-number,
.category.active .category-number {
    color: var(--black);
}

.category:hover .category-name {
    transform: translateX(8px);
}

.category:hover .category-arrow,
.category.active .category-arrow {
    background: var(--black);
    color: var(--yellow);

    border-color: var(--black);
}

.category:hover .category-arrow {
    transform: rotate(45deg);
}

.category-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding-top: 30px;

    font-family: "DM Mono", monospace;
    font-size: .7rem;

    letter-spacing: .08em;

    color: #777777;
}


/* =========================================================
   FEATURED / POSTS SECTIONS
========================================================= */

.featured-section,
.posts-section {
    padding: 115px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 3px solid var(--black);

    padding-top: 15px;

    margin-bottom: 45px;
}

.section-heading > div {
    display: flex;
    align-items: center;

    gap: 18px;
}

.section-number,
.section-label {
    font-family: "DM Mono", monospace;
    font-size: 11px;
}

.section-label {
    font-size: 12px;
    font-weight: bold;

    letter-spacing: .1em;
}

.section-arrow {
    font-size: 30px;
}


/* =========================================================
   FEATURED POST
========================================================= */

.featured-post {
    display: grid;

    grid-template-columns: 1.25fr 1fr;

    background: var(--white);

    border: 3px solid var(--black);
}

.featured-image {
    position: relative;

    min-height: 550px;

    overflow: hidden;
}

.image-placeholder {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: inherit;

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

    padding: 40px;

    overflow: hidden;

    transition:
        transform .4s ease;
}

.featured-image:hover .image-placeholder {
    transform:
        scale(1.035)
        rotate(-1deg);
}

.image-placeholder span {
    font-family: "Archivo Black", sans-serif;

    font-size: clamp(50px, 6vw, 90px);

    line-height: .8;

    text-align: center;

    transform: rotate(-8deg);

    text-shadow:
        7px 7px 0 var(--black);
}

.image-placeholder strong {
    position: absolute;

    top: 20px;
    right: 25px;

    font-family: "Archivo Black", sans-serif;

    font-size: 80px;

    opacity: .2;
}

.image-yellow {
    background: var(--yellow);
}

.image-blue {
    background: var(--blue);
}

.image-pink {
    background: var(--pink);
}

.image-orange {
    background: var(--orange);
}

.image-green {
    background: var(--green);
}

.image-black {
    background: var(--black);
    color: var(--white);
}

.image-tag {
    position: absolute;

    left: 20px;
    bottom: 20px;

    background: var(--black);
    color: var(--white);

    padding: 13px 17px;

    font-family: "DM Mono", monospace;
    font-size: 10px;
    font-weight: bold;
}

.featured-content {
    padding: 55px;

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

.post-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    font-family: "DM Mono", monospace;

    font-size: 9px;
    font-weight: bold;

    letter-spacing: .08em;
}

.featured-content h2 {
    font-family: "Archivo Black", sans-serif;

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

    line-height: .9;

    letter-spacing: -.04em;

    margin: 30px 0;
}

.featured-content p {
    max-width: 500px;

    font-size: 17px;
    line-height: 1.6;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    border-top: 2px solid var(--black);

    margin-top: 45px;
    padding-top: 18px;

    font-family: "DM Mono", monospace;

    font-size: 9px;
    font-weight: bold;
}

.post-footer a {
    transition: color .2s ease;
}

.post-footer a:hover {
    color: var(--blue);
}


/* =========================================================
   POST GRID
========================================================= */

.posts-grid {
    display: grid;

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

    gap: 25px;
}

.post-card {
    background: var(--white);

    border: 2px solid var(--black);

    overflow: hidden;

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

.post-card:hover {
    transform: translate(-5px, -5px);

    box-shadow:
        7px 7px 0 var(--black);
}

.post-image {
    display: block;

    width: 100%;

    aspect-ratio: 1.25 / 1;

    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}

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

.post-card-content {
    padding: 27px;
}

.post-card h3 {
    font-family: "Archivo Black", sans-serif;

    font-size: 28px;

    line-height: .95;

    letter-spacing: -.025em;

    margin: 18px 0;
}

.post-card p {
    font-size: 14px;

    line-height: 1.55;

    margin-bottom: 25px;
}

.read-more {
    display: inline-block;

    border-bottom: 2px solid var(--black);

    padding-bottom: 4px;

    font-family: "DM Mono", monospace;

    font-size: 10px;
    font-weight: bold;

    transition:
        color .2s ease,
        border-color .2s ease;
}

.read-more:hover {
    color: var(--blue);

    border-color: var(--blue);
}


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

.blog-cta {
    position: relative;

    width: 100%;

    background: var(--blue);

    color: var(--black);

    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);

    padding: 110px 7%;

    overflow: hidden;
}

.blog-cta::before {
    content: "🍌";

    position: absolute;

    right: 4%;
    bottom: -55px;

    font-size: clamp(150px, 22vw, 330px);

    line-height: 1;

    transform: rotate(-18deg);

    opacity: .9;

    pointer-events: none;
}

.blog-cta::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            var(--black) 1px,
            transparent 1px
        );

    background-size: 13px 13px;

    opacity: .08;

    pointer-events: none;
}

.blog-cta .container {
    position: relative;
    z-index: 2;
}

.blog-cta h2 {
    max-width: 900px;

    font-family: "Archivo Black", sans-serif;

    font-size: clamp(50px, 8vw, 115px);

    line-height: .85;

    letter-spacing: -.065em;

    text-transform: uppercase;
}

.blog-cta h2 span {
    color: var(--yellow);

    -webkit-text-stroke: 3px var(--black);

    text-shadow:
        7px 7px 0 var(--black);
}

.blog-cta p {
    max-width: 600px;

    margin-top: 30px;

    font-size: 19px;

    line-height: 1.55;

    font-weight: 500;
}

.blog-cta .button {
    margin-top: 35px;

    background: var(--black);
    color: var(--white);

    border-color: var(--black);

    box-shadow:
        6px 6px 0 var(--yellow);
}

.blog-cta .button:hover {
    background: var(--yellow);
    color: var(--black);

    box-shadow:
        6px 6px 0 var(--black);
}


/* =========================================================
   BANANABOY FOOTER
========================================================= */

.site-footer {
    width: 100%;

    background: var(--black);
    color: var(--white);

    border-top: 3px solid var(--white);

    padding: 85px 0 0;

    overflow: hidden;
}

.footer-container {
    width: 90%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.3fr;

    gap: 50px;

    padding-bottom: 70px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 25px;

    min-width: 0;
}

.footer-logo {
    display: block;

    width: 180px;
    max-width: 100%;
}

.footer-logo img {
    display: block;

    width: 100%;
    max-width: 180px;

    height: auto;
}

.footer-brand p {
    margin: 0;

    max-width: 320px;

    font-family: "DM Mono", monospace;

    font-size: .75rem;

    line-height: 1.7;

    letter-spacing: .04em;

    color: #aaaaaa;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;

    min-width: 0;
}

.footer-heading {
    margin-bottom: 10px;

    font-family: "DM Mono", monospace;

    font-size: .7rem;

    letter-spacing: .1em;

    color: #777777;
}

.footer-column a {
    color: var(--white);

    font-family: "Space Grotesk", sans-serif;

    font-size: .85rem;
    font-weight: 600;

    overflow-wrap: anywhere;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-column a:hover {
    color: var(--yellow);

    transform: translateX(4px);
}

.footer-small {
    margin-top: 15px;

    font-family: "DM Mono", monospace;

    font-size: .65rem;

    line-height: 1.8;

    color: #777777;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 90%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 25px 0;

    border-top: 1px solid #444444;

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

    gap: 20px;

    flex-wrap: wrap;

    font-family: "DM Mono", monospace;

    font-size: .65rem;

    color: #777777;
}

.footer-bottom strong {
    color: var(--yellow);

    font-weight: 500;
}


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

@media (max-width: 1100px) {

    .navbar {
        width: 92%;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-socials,
    .social-links {
        display: none;
    }

    .nav-button,
    .nav-cta {
        margin-left: 10px;
    }

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

    .footer-container {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 45px 30px;
    }

    .footer-brand {
        grid-row: span 2;
    }
}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 900px) {

    .site-header {
        position: absolute;
    }

    .navbar {
        width: 100%;

        min-height: 86px;

        padding: 12px 4vw;
    }

    .logo {
        width: 125px;
    }

    .logo img,
    .logo-image {
        width: 125px;
    }

    .nav-links,
    .nav-right,
    .nav-socials,
    .social-links,
    .nav-button,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;

        position: relative;

        z-index: 10000;
    }

    .blog-hero {
        min-height: 700px;

        padding:
            160px
            6%
            100px;
    }

    .blog-hero h1 {
        font-size: clamp(52px, 10vw, 110px);
    }

    .hero-description {
        max-width: 85%;

        font-size: 19px;
    }

    .hero-banana {
        right: 3%;
        bottom: -15px;

        font-size: clamp(200px, 30vw, 330px);
    }

    .featured-post {
        grid-template-columns: 1fr 1fr;
    }

    .featured-image {
        min-height: 420px;
    }

    .featured-content {
        padding: 45px;
    }

    .featured-content h2 {
        font-size: clamp(34px, 4vw, 52px);
    }

    .category {
        grid-template-columns:
            60px
            1fr
            50px;
    }

    .category-name {
        font-size:
            clamp(1.6rem, 4.5vw, 3rem);
    }
}


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

@media (max-width: 768px) {

    .container {
        width: 90%;
    }

    .blog-hero {
        min-height: 650px;

        align-items: flex-start;

        padding:
            155px
            6%
            100px;
    }

    .blog-hero h1 {
        font-size:
            clamp(43px, 12vw, 80px);

        line-height: .88;
    }

    .blog-hero h1 span {
        -webkit-text-stroke: 2px var(--black);

        text-shadow:
            5px 5px 0 var(--black);
    }

    .hero-description {
        max-width: 100%;

        margin-top: 35px;

        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        margin-top: 30px;
    }

    .hero-actions .button {
        width: auto;
        max-width: 100%;
    }

    .hero-banana {
        right: -10px;
        bottom: -15px;

        font-size:
            clamp(140px, 38vw, 260px);
    }

    .sticker-one,
    .sticker-two {
        display: none;
    }


    /* FEATURED */

    .featured-section,
    .posts-section {
        padding: 85px 0;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 320px;
    }

    .featured-content {
        padding: 35px 25px;
    }

    .featured-content h2 {
        font-size: 32px;

        line-height: 1;
    }

    .featured-content p {
        font-size: 15px;
    }

    .post-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    /* POST GRID */

    .posts-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .post-card-content {
        padding: 22px;
    }

    .post-card h3 {
        font-size: 24px;
    }

    .post-card p {
        font-size: 15px;
    }


    /* SECTION HEADINGS */

    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .section-arrow {
        font-size: 26px;
    }


    /* CATEGORY */

    .category-section {
        padding:
            80px 0
            75px;
    }

    .category-topline,
    .category-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .category-heading {
        padding:
            40px 0
            45px;
    }

    .category {
        grid-template-columns:
            45px
            1fr
            38px;

        gap: 12px;

        padding: 20px 0;
    }

    .category-name {
        font-size:
            clamp(1.25rem, 6vw, 2.3rem);
    }

    .category-arrow {
        width: 38px;
        height: 38px;

        font-size: 1.1rem;
    }

    .category:hover,
    .category.active {
        padding-left: 12px;
        padding-right: 12px;
    }


    /* BOTTOM CTA */

    .blog-cta {
        padding:
            80px 6%;
    }

    .blog-cta h2 {
        font-size:
            clamp(46px, 12vw, 82px);
    }

    .blog-cta h2 span {
        -webkit-text-stroke: 2px var(--black);

        text-shadow:
            5px 5px 0 var(--black);
    }

    .blog-cta p {
        max-width: 100%;

        font-size: 16px;
    }


    .blog-cta::before {
        right: -20px;
        bottom: -35px;

        font-size: 170px;

        opacity: .75;
    }


    /* FOOTER */

    .site-footer {
        padding-top: 60px;
    }

    .footer-container {
        width: 88%;

        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;

        padding-bottom: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        grid-row: auto;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-logo img {
        max-width: 160px;
    }

    .footer-column a {
        font-size: .75rem;
    }

    .footer-bottom {
        width: 88%;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        padding:
            22px 0;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .navbar {
        min-height: 78px;

        padding:
            10px 15px;
    }

    .logo {
        width: 112px;
    }

    .logo img,
    .logo-image {
        width: 112px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .mobile-menu-inner {
        padding:
            105px
            20px
            30px;
    }

    .mobile-menu-links a {
        font-size:
            clamp(2.2rem, 12vw, 4rem);

        padding:
            17px 0;
    }

    .blog-hero {
        min-height: 620px;

        padding:
            140px
            6%
            90px;
    }

    .hero-eyebrow {
        font-size: 11px;

        margin-bottom: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .button {
        padding:
            15px 18px;

        font-size: 10px;
    }

    .featured-content {
        padding:
            30px 22px;
    }

    .featured-content h2 {
        font-size: 29px;
    }

    .post-card h3 {
        font-size: 22px;
    }

    .blog-cta {
        padding:
            70px 6%;
    }

    .blog-cta h2 {
        font-size:
            clamp(42px, 13vw, 68px);
    }

    .blog-cta p {
        font-size: 15px;
    }

    .blog-cta::before {
        font-size: 130px;
    }

    .footer-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        width: 88%;

        font-size: .6rem;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
BLOG CTA
========================================================= */

.blog-cta {
position: relative;
width: 100%;
background: var(--blue, #07b0f1);
border-top: 4px solid var(--black, #111111);
border-bottom: 4px solid var(--black, #111111);
padding: 120px 6vw;
overflow: hidden;
}

/* INNER CONTAINER */

.blog-cta-inner {
position: relative;
width: min(1200px, 100%);
margin: 0 auto;
text-align: center;
z-index: 2;
}

/* EYEBROW */

.blog-cta-eyebrow {
display: inline-block;
margin-bottom: 25px;

```
font-family: "DM Mono", monospace;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;

background: var(--black, #111111);
color: var(--white, #ffffff);

padding: 10px 16px;

border: 2px solid var(--black, #111111);
transform: rotate(-2deg);
```

}

/* MAIN HEADING */

.blog-cta h2 {
margin: 0 auto 30px;

```
max-width: 1000px;

font-family: "Archivo Black", sans-serif;
font-size: clamp(3.5rem, 8vw, 8rem);
line-height: 0.88;
letter-spacing: -0.045em;
text-transform: uppercase;

color: var(--black, #111111);
```

}

/* SECOND LINE */

.blog-cta h2 span {
display: block;

```
color: var(--yellow, #fcf705);

-webkit-text-stroke: 3px var(--black, #111111);
text-shadow:
    6px 6px 0 var(--black, #111111);
```

}

/* DESCRIPTION */

.blog-cta p {
width: min(650px, 100%);
margin: 0 auto 40px;

```
font-family: "Space Grotesk", sans-serif;
font-size: 1.15rem;
line-height: 1.6;
font-weight: 500;

color: var(--black, #111111);
```

}

/* BUTTON */

.blog-cta-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 18px;

```
min-height: 64px;
padding: 18px 30px;

background: var(--black, #111111);
color: var(--white, #ffffff);

border: 3px solid var(--black, #111111);

font-family: "Space Grotesk", sans-serif;
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
text-decoration: none;

box-shadow: 7px 7px 0 var(--yellow, #fcf705);

transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
```

}

/* BUTTON ARROW */

.blog-cta-button span {
font-size: 1.5rem;
line-height: 1;

```
transition: transform 0.2s ease;
```

}

/* BUTTON HOVER */

.blog-cta-button:hover {
background: var(--yellow, #fcf705);
color: var(--black, #111111);

```
transform: translate(4px, 4px);
box-shadow: 3px 3px 0 var(--black, #111111);
```

}

.blog-cta-button:hover span {
transform: translateX(5px);
}

/* STICKER */

.blog-cta-sticker {
position: absolute;

```
right: 2%;
bottom: 0;

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

width: 155px;
height: 155px;

padding: 20px;

background: var(--yellow, #fcf705);
color: var(--black, #111111);

border: 4px solid var(--black, #111111);
border-radius: 50%;

font-family: "Archivo Black", sans-serif;
font-size: 1rem;
line-height: 1;
text-align: center;
text-transform: uppercase;

transform: rotate(8deg);

box-shadow: 7px 7px 0 var(--black, #111111);
```

}

/* DECORATIVE SHAPE */

.blog-cta::before {
content: "";

```
position: absolute;
top: -120px;
left: -120px;

width: 300px;
height: 300px;

border: 4px solid var(--black, #111111);
border-radius: 50%;

opacity: 0.15;
```

}

.blog-cta::after {
content: "→";

```
position: absolute;
right: 5%;
top: 12%;

font-family: "Archivo Black", sans-serif;
font-size: 8rem;
line-height: 1;

color: var(--yellow, #fcf705);

-webkit-text-stroke: 3px var(--black, #111111);

transform: rotate(-15deg);

opacity: 0.9;
```

}

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

@media (max-width: 900px) {

```
.blog-cta {
    padding: 100px 6vw;
}

.blog-cta h2 {
    font-size: clamp(3rem, 10vw, 6rem);
}

.blog-cta-sticker {
    width: 125px;
    height: 125px;

    right: 0;
    bottom: -20px;

    font-size: 0.8rem;
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--black, #111111);
}

.blog-cta::after {
    font-size: 6rem;
    right: 3%;
    top: 8%;
}
```

}

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

@media (max-width: 600px) {

```
.blog-cta {
    padding: 85px 20px 100px;
}


.blog-cta-eyebrow {
    font-size: 0.7rem;
    padding: 8px 12px;
    margin-bottom: 22px;
}


.blog-cta h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}


.blog-cta h2 span {
    -webkit-text-stroke: 2px var(--black, #111111);
    text-shadow: 4px 4px 0 var(--black, #111111);
}


.blog-cta p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 32px;
}


.blog-cta-button {
    width: 100%;
    max-width: 330px;

    min-height: 60px;

    padding: 16px 22px;

    font-size: 0.9rem;

    box-shadow: 5px 5px 0 var(--yellow, #fcf705);
}


.blog-cta-sticker {
    position: relative;

    right: auto;
    bottom: auto;

    width: 110px;
    height: 110px;

    margin: 55px auto 0;

    font-size: 0.7rem;

    box-shadow: 4px 4px 0 var(--black, #111111);
}


.blog-cta::before {
    width: 180px;
    height: 180px;

    top: -80px;
    left: -80px;
}


.blog-cta::after {
    font-size: 4rem;

    top: 5%;
    right: 5%;

    -webkit-text-stroke: 2px var(--black, #111111);
}
```

}

