/* =========================================================
   BANANABOY BLOG ARTICLE
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

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

}


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

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


html {
    scroll-behavior: smooth;
}


body {

    width: 100%;

    overflow-x: hidden;

    background: var(--gray);

    color: var(--black);

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

}


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


a {
    color: inherit;
}


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

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: var(--yellow);

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

    transition: 0.25s ease;

}


.site-header.scrolled {

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

}


.nav-container {

    width: min(1400px, calc(100% - 40px));

    margin: auto;

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 30px;

}


.logo {

    width: 120px;

    flex-shrink: 0;

}


.logo img {

    width: 100%;

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-left: auto;

}


.nav-links a {

    text-decoration: none;

    font-family: "DM Mono", monospace;

    font-size: 12px;

    font-weight: 700;

}


.nav-links a:hover {
    text-decoration: underline;
}


.nav-socials {

    display: flex;

    gap: 6px;

}


.nav-socials a {

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

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

    background: var(--white);

    text-decoration: none;

    font-family: "DM Mono", monospace;

    font-size: 10px;

    font-weight: 700;

}


.nav-cta {

    padding: 13px 18px;

    background: var(--black);

    color: var(--white);

    text-decoration: none;

    font-family: "DM Mono", monospace;

    font-size: 11px;

    font-weight: 700;

}


.menu-toggle {

    display: none;

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

    background: var(--white);

    width: 44px;
    height: 44px;

    font-size: 20px;

    cursor: pointer;

}


/* MOBILE MENU */

.mobile-menu {

    display: none;

}


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

.article-hero {

    background: var(--yellow);

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

    padding: 230px 20px 100px;
   position: relative;

    overflow: hidden;

}


.article-hero-inner {

    width: min(1100px, 100%);

    margin: auto;

    position: relative;

}


.article-category {

    display: flex;

    gap: 10px;

    align-items: center;

    font-family: "DM Mono", monospace;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 30px;

}


.article-hero h1 {

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

    font-size: clamp(55px, 8vw, 125px);

    line-height: 0.83;

    letter-spacing: -5px;

    max-width: 1050px;

}


.article-hero h1 span {

    color: var(--blue);

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

}


.article-intro {

    max-width: 650px;

    margin-top: 45px;

    font-size: clamp(18px, 2vw, 24px);

    line-height: 1.5;

    font-weight: 500;

}


.article-meta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 650px;

    margin-top: 45px;

    padding-top: 25px;

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

}


.author {

    display: flex;

    align-items: center;

    gap: 12px;

}


.author-avatar {

    width: 45px;
    height: 45px;

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

    background: var(--white);

    display: grid;
    place-items: center;

    font-size: 22px;

}


.author strong,
.author span {

    display: block;

}


.author strong {

    font-family: "DM Mono", monospace;

    font-size: 12px;

}


.author span {

    font-size: 12px;

    margin-top: 3px;

}


.article-date {

    font-family: "DM Mono", monospace;

    font-size: 11px;

    font-weight: 700;

}


/* STICKERS */

.hero-sticker {

    position: absolute;

    padding: 13px 18px;

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

    font-family: "DM Mono", monospace;

    font-weight: 700;

    font-size: 11px;

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

}


.sticker-one {

    background: var(--pink);

    right: 0;

    top: 25%;

    transform: rotate(7deg);

}


.sticker-two {

    background: var(--white);

    right: 8%;

    bottom: 5%;

    transform: rotate(-5deg);

}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-content {

    background: var(--gray);

    padding: 100px 20px;

}


.article-layout {

    width: min(1100px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 50px;

}


/* SIDEBAR */

.article-sidebar {

    position: sticky;

    top: 120px;

    align-self: start;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.article-sidebar span {

    font-family: "DM Mono", monospace;

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 5px;

}


.article-sidebar a {

    width: 40px;
    height: 40px;

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

    background: var(--white);

    display: grid;
    place-items: center;

    text-decoration: none;

    font-family: "DM Mono", monospace;

    font-size: 10px;

    font-weight: 700;

}


.article-sidebar a:hover {

    background: var(--yellow);

}


/* BODY */

.article-body {

    max-width: 760px;

}


.article-body p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 25px;

}


.article-body .lead {

    font-size: 27px;

    line-height: 1.45;

    font-weight: 600;

}


.article-body h2 {

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

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

    line-height: 0.95;

    letter-spacing: -2px;

    margin: 90px 0 30px;

}


.article-body strong {

    font-weight: 700;

}


.article-body em {

    font-style: normal;

    background: var(--yellow);

    padding: 0 5px;

}


.article-body ul {

    margin: 30px 0 40px;

    padding-left: 25px;

}


.article-body li {

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 10px;

}


/* =========================================================
   QUOTES
========================================================= */

.big-quote {

    margin: 60px 0;

    padding: 45px;

    background: var(--blue);

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

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

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

    font-size: clamp(30px, 4vw, 50px);

    line-height: 1;

    position: relative;

}


.big-quote span {

    font-family: Georgia, serif;

    font-size: 100px;

    line-height: 0;

    position: absolute;

    top: 45px;

    left: 15px;

}


.big-quote strong {

    display: block;

    margin-top: 15px;

}


.quote-yellow {

    background: var(--yellow);

}


.big-quote small {

    display: block;

    font-family: "DM Mono", monospace;

    font-size: 12px;

    line-height: 1.5;

    margin-top: 25px;

}


/* =========================================================
   HIGHLIGHT
========================================================= */

.highlight-text {

    background: var(--yellow);

    border-left: 8px solid var(--black);

    padding: 20px 25px;

}


/* =========================================================
   FAKE WEBSITE IMAGE
========================================================= */

.article-image {

    margin: 60px 0;

}


.fake-browser {

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

    background: var(--white);

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

}


.browser-bar {

    height: 45px;

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

    display: flex;

    align-items: center;

    gap: 7px;

    padding-left: 15px;

}


.browser-bar span {

    width: 12px;
    height: 12px;

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

    border-radius: 50%;

}


.browser-content {

    min-height: 420px;

    background: var(--yellow);

    padding: 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

}


.browser-content small {

    font-family: "DM Mono", monospace;

    font-weight: 700;

    font-size: 12px;

    margin-bottom: 20px;

}


.browser-content strong {

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

    font-size: clamp(45px, 7vw, 90px);

    line-height: 0.85;

    letter-spacing: -3px;

}


.browser-content button {

    margin-top: 35px;

    background: var(--black);

    color: var(--white);

    border: none;

    padding: 16px 22px;

    font-family: "DM Mono", monospace;

    font-weight: 700;

}


/* =========================================================
   NUMBERED LIST
========================================================= */

.numbered-list {

    margin: 45px 0;

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

}


.numbered-item {

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 20px;

    padding: 30px 0;

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

}


.numbered-item > span {

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

    font-size: 30px;

}


.numbered-item h3 {

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

    font-size: 25px;

    margin-bottom: 8px;

}


.numbered-item p {

    margin: 0;

    font-size: 16px;

}


/* =========================================================
   FINAL MESSAGE
========================================================= */

.final-message {

    margin-top: 100px;

    padding: 55px;

    background: var(--black);

    color: var(--white);

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

    box-shadow: 12px 12px 0 var(--orange);

}


.final-message > span {

    color: var(--yellow);

    font-family: "DM Mono", monospace;

    font-size: 11px;

    font-weight: 700;

}


.final-message h2 {

    margin: 25px 0;

    font-size: clamp(40px, 6vw, 75px);

}


.final-message h2 em {

    color: var(--yellow);

    background: none;

}


.final-message p {

    max-width: 550px;

    margin: 0;

    color: var(--white);

}


/* =========================================================
   ARTICLE END
========================================================= */

.article-end {

    margin-top: 70px;

    padding-top: 25px;

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

    display: flex;

    justify-content: space-between;

    font-family: "DM Mono", monospace;

    font-size: 10px;

    font-weight: 700;

}


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

.article-cta {

    background: var(--blue);

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

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

    padding: 110px 20px;

}


.cta-inner {

    width: min(1000px, 100%);

    margin: auto;

}


.cta-kicker {

    font-family: "DM Mono", monospace;

    font-size: 12px;

    font-weight: 700;

}


.cta-inner h2 {

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

    font-size: clamp(65px, 10vw, 145px);

    line-height: 0.8;

    letter-spacing: -5px;

    margin: 25px 0 40px;

}


.cta-inner h2 span {

    color: var(--yellow);

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

}


.cta-inner p {

    max-width: 550px;

    font-size: 20px;

    line-height: 1.5;

    margin-bottom: 35px;

}


.cta-button {

    display: inline-block;

    background: var(--black);

    color: var(--white);

    padding: 18px 25px;

    text-decoration: none;

    font-family: "DM Mono", monospace;

    font-size: 12px;

    font-weight: 700;

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

}


.cta-button:hover {

    background: var(--yellow);

    color: var(--black);

}


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

.site-footer {

    background: var(--black);

    color: var(--white);

    padding: 20px 20px 25px;

}


.footer-container {

    width: min(1400px, 100%);

    margin: auto;

    display: grid;

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

    gap: 70px;

}


.footer-brand img {

    width: 120px;

    margin-bottom: 20px;

}


.footer-brand p {

    max-width: 300px;

    font-size: 17px;

    line-height: 1.5;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column span {

    color: var(--yellow);

    font-family: "DM Mono", monospace;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 10px;

}


.footer-column a {

    text-decoration: none;

    font-family: "DM Mono", monospace;

    font-size: 11px;

}


.footer-column a:hover {

    color: var(--yellow);

}


.footer-bottom {

    width: min(1400px, 100%);

    margin: 70px auto 0;

    padding-top: 20px;

    border-top: 1px solid #444;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-family: "DM Mono", monospace;

    font-size: 9px;

}


.footer-bottom strong {

    color: var(--yellow);

}


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

@media (max-width: 950px) {

    .nav-links,
    .nav-socials {

        display: none;

    }


    .nav-cta {

        margin-left: auto;

    }


    .menu-toggle {

        display: block;

    }


    .article-layout {

        grid-template-columns: 1fr;

    }


    .article-sidebar {

        position: static;

        flex-direction: row;

        align-items: center;

    }


    .article-sidebar span {

        margin-right: 5px;

        margin-bottom: 0;

    }


    .footer-container {

        grid-template-columns: 1fr 1fr;

    }

}


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

@media (max-width: 650px) {


    .nav-container {

        min-height: 70px;

        width: calc(100% - 30px);

    }


    .logo {

        width: 120px;

    }


    .nav-cta {

        display: none;

    }


    /* MOBILE MENU */

    .mobile-menu {

        display: flex;

        flex-direction: column;

        gap: 0;

        background: var(--black);

        color: var(--white);

        max-height: 0;

        overflow: hidden;

        transition: max-height 0.3s ease;

    }


    .mobile-menu.active {

        max-height: 500px;

    }


    .mobile-menu a {

        padding: 18px 20px;

        border-bottom: 1px solid #333;

        text-decoration: none;

        font-family: "DM Mono", monospace;

        font-size: 12px;

        font-weight: 700;

    }


    .mobile-menu-cta {

        background: var(--yellow);

        color: var(--black);

    }


    /* HERO */

    .article-hero {

        padding: 130px 20px 70px;

    }


    .article-hero h1 {

        font-size: clamp(48px, 14vw, 75px);

        letter-spacing: -3px;

    }


    .article-hero h1 span {

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

    }


    .article-intro {

        font-size: 18px;

        margin-top: 35px;

    }


    .article-meta {

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

    }


    .hero-sticker {

        display: none;

    }


    /* ARTICLE */

    .article-content {

        padding: 65px 20px;

    }


    .article-layout {

        gap: 25px;

    }


    .article-body .lead {

        font-size: 22px;

    }


    .article-body p {

        font-size: 17px;

        line-height: 1.7;

    }


    .article-body h2 {

        font-size: 43px;

        margin-top: 65px;

    }


    .big-quote {

        padding: 35px 25px;

        font-size: 31px;

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

    }


    .browser-content {

        min-height: 300px;

        padding: 35px;

    }


    .browser-content strong {

        font-size: 48px;

    }


    .numbered-item {

        grid-template-columns: 45px 1fr;

    }


    .numbered-item > span {

        font-size: 22px;

    }


    .numbered-item h3 {

        font-size: 20px;

    }


    .final-message {

        padding: 35px 25px;

        box-shadow: 7px 7px 0 var(--orange);

    }


    .final-message h2 {

        font-size: 43px;

        letter-spacing: -2px;

    }


    /* CTA */

    .article-cta {

        padding: 75px 20px;

    }


    .cta-inner h2 {

        font-size: 70px;

        letter-spacing: -3px;

    }


    /* FOOTER */

    .footer-container {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 10px;

    }

}

/* BLOG VIDEO */

.blog-video {
    width: 100%;
    max-width: 100%;
    margin: 70px 0;
    box-sizing: border-box;
}

.blog-video-header h2 {
    margin: 0;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.blog-video-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    border: 3px solid #111111;
    background: #111111;
    box-shadow: 10px 10px 0 #07b0f1;
    aspect-ratio: 16 / 9;
}

.blog-video-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

/* ==========================================
   BANANABOY
   HUMAN BRANDING BLOG POST
========================================== */


/* BLOG PAGE */

.blog-post-page {

    background: #f2f2f2;

    color: #111111;

    padding: 160px 20px 100px;

    overflow: hidden;

}


/* BLOG HEADER */

.blog-post-header {

    max-width: 1100px;

    margin: 0 auto 60px;

    text-align: center;

}


.blog-post-meta {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    font-family: "DM Mono", monospace;

    font-size: 0.75rem;

    font-weight: 500;

    letter-spacing: 0.08em;

    margin-bottom: 25px;

}


.blog-post-header h1 {

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

    font-size: clamp(2.8rem, 7vw, 7rem);

    line-height: 0.95;

    text-transform: uppercase;

    margin: 0;

    letter-spacing: -0.04em;

}


.blog-post-header h1 span {

    display: block;

    color: #07b0f1;

}


.blog-post-intro {

    max-width: 650px;

    margin: 35px auto 25px;

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

    font-size: clamp(1.05rem, 2vw, 1.35rem);

    line-height: 1.5;

}


.blog-post-author {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    font-family: "DM Mono", monospace;

    font-size: 0.75rem;

    margin-top: 30px;

}


/* FEATURED IMAGE */

.blog-featured-image {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto 80px;

    border: 3px solid #111111;

    overflow: hidden;

}


.blog-featured-image img {

    display: block;

    width: 100%;

    aspect-ratio: 3 / 2;

    object-fit: cover;

}


/* CONTENT */

.blog-post-content {

    max-width: 800px;

    margin: 0 auto;

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

    font-size: 1.1rem;

    line-height: 1.8;

}


.blog-post-content p {

    margin: 0 0 25px;

}


.blog-lead {

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

    font-size: 2rem;

    line-height: 1.1;

    text-transform: uppercase;

}


.blog-post-content h2 {

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

    font-size: clamp(2rem, 5vw, 4rem);

    line-height: 1;

    text-transform: uppercase;

    margin: 70px 0 30px;

    letter-spacing: -0.03em;

}


.blog-post-content h3 {

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

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

    line-height: 1.1;

    text-transform: uppercase;

    margin: 0 0 25px;

    letter-spacing: -0.02em;

}


/* BLOG SECTIONS */

.blog-section {

    margin-top: 70px;

}


.blog-section h2 {

    color: #111111;

}


/* BLOCKQUOTES */

.blog-post-content blockquote {

    border-left: 7px solid #fcf705;

    background: #ffffff;

    padding: 25px 30px;

    margin: 30px 0;

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

    font-size: 1.2rem;

    font-weight: 500;

    line-height: 1.5;

}


.blog-post-content .blockquote-bold {

    border-left-color: #07b0f1;

    font-weight: 700;

}


/* HIGHLIGHTS */

.blog-highlight {

    display: inline-block;

    background: #fcf705;

    color: #111111;

    padding: 12px 18px;

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

    font-size: 1.1rem;

    line-height: 1.2;

    text-transform: uppercase;

    margin: 20px 0 30px;

}

/* CHECKLIST */

.checklist-item {
    border-top: 3px solid #111111;
    padding: 45px 0;
}

.checklist-item:last-child {
    border-bottom: 3px solid #111111;
}

/* NUMBER */

.checklist-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 75px;
    height: 75px;

    margin-bottom: 20px;

    background: #fcf705;
    border: 3px solid #111111;

    font-family: "Archivo Black", sans-serif;
    font-size: 1.6rem;
    color: #111111;

    transform: rotate(-3deg);
    box-shadow: 5px 5px 0 #111111;
}

/* HEADING */

.checklist-item h3 {
    margin-bottom: 25px;
}

/* LIST */

.checklist-item ul {
    padding-left: 25px;
    margin: 25px 0 30px;
}

.checklist-item li {
    margin-bottom: 10px;
}

.checklist-item li::marker {
    color: #07b0f1;
}
/* EXAMPLES */

.example-label {

    font-family: "DM Mono", monospace;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    margin-top: 35px !important;

    margin-bottom: 10px !important;

}


/* INLINE IMAGES */

.blog-inline-image {

    width: 100%;

    margin: 60px 0;

    border: 3px solid #111111;

    background: #fcf705;

    overflow: hidden;

}


.blog-inline-image img {

    display: block;

    width: 100%;

    aspect-ratio: 3 / 2;

    object-fit: cover;

}


.blog-inline-image span {

    display: block;

    padding: 18px 20px;

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

    font-size: 1rem;

    line-height: 1.2;

    text-transform: uppercase;

}


/* FINAL SECTION */

.blog-final-section {

    margin-top: 100px;

    padding-top: 30px;

    border-top: 5px solid #111111;

}


/* CTA */

.blog-cta {

    background: #07b0f1;

    color: #111111;

    padding: 60px 40px;

    margin-top: 100px;

    border: 3px solid #111111;

    text-align: center;

}


.blog-cta-eyebrow {

    font-family: "DM Mono", monospace;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 0.05em;

    margin-bottom: 25px;

}


.blog-cta h2 {

    font-size: clamp(2.3rem, 6vw, 5rem);

    margin: 0 0 30px;

}


.blog-cta p {

    max-width: 600px;

    margin: 0 auto 20px;

}


.blog-cta-button {

    display: inline-block;

    background: #fcf705;

    color: #111111;

    border: 3px solid #111111;

    padding: 18px 30px;

    margin-top: 25px;

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

    font-size: 1rem;

    text-decoration: none;

    text-transform: uppercase;

    transition: transform 0.2s ease,

                background 0.2s ease;

}


.blog-cta-button:hover {

    background: #ffffff;

    transform: translateY(-4px);

}


/* MOBILE */

@media (max-width: 768px) {


    .blog-post-page {

        padding: 120px 15px 70px;

    }


    .blog-post-header {

        margin-bottom: 40px;

    }


    .blog-post-header h1 {

        font-size: clamp(2.5rem, 11vw, 5rem);

    }


    .blog-post-content {

        font-size: 1rem;

        line-height: 1.7;

    }


    .blog-post-content h2 {

        font-size: clamp(2rem, 9vw, 3.5rem);

        margin-top: 50px;

    }


    .blog-post-content h3 {

        font-size: clamp(1.35rem, 6vw, 2rem);

    }


    .blog-post-content blockquote {

        padding: 20px;

        font-size: 1rem;

    }


    .blog-inline-image {

        margin: 40px 0;

    }


    .blog-cta {

        padding: 40px 20px;

        margin-top: 60px;

    }


    .blog-cta h2 {

        font-size: clamp(2rem, 9vw, 4rem);

    }


}
/* ==========================================
   NAVBAR LOGO
========================================== */

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

.navbar .logo-image {
    display: block;
    width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}