/* ====================================
   ABOUT US PAGE - PROFESSIONAL DESIGN
   Brand Colors: Blue Industrial Theme
   Aitetsu (#40545E), Moya (#829AB1), Sei (#95AFC0)
   ==================================== */


/* CSS Variables - PartsForm Brand Code V1.2026 */

:root {
    /* Foundation - Brand Code 2.0 */
    --v2-kurogane: #2B2B2B;
    /* Iron - Kurogane */
    --v2-washi: #F8FAFC;
    /* Paper - Washi */
    /* Industrial - Brand Code */
    --v2-aitetsu: #40545E;
    /* Indigo Iron */
    --v2-moya: #829AB1;
    /* Mist */
    --v2-sei: #95AFC0;
    /* Pure Blue */
    --v2-suzu: #D1D5DB;
    /* Tin */
    --v2-namari: #8E9CA6;
    /* Lead */
    /* Accent - Kintsugi Gold */
    --v2-gold: #D4AF37;
    --v2-gold-hover: #c9a432;
    /* UI */
    --v2-white: #FFFFFF;
    --v2-gray-100: #F8F8F8;
    --v2-gray-200: #EBEBEB;
    --v2-text: #2B2B2B;
    --v2-text-light: #6B7280;
    --v2-border: #E5E7EB;
    --v2-shadow: rgba(0, 0, 0, 0.1);
}


/* ====================================
   GLOBAL VIEWPORT - No scrolling, fixed height
   ==================================== */

html:has(.aboutus-page) {
    height: 100%;
    overflow: hidden;
}

body:has(.aboutus-page) {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


/* ====================================
   PAGE CONTAINER - Fixed viewport, no scroll
   ==================================== */

.aboutus-page {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    padding-top: var(--buyer-nav-clearance);
    position: relative;
}

/* Same column as Search Parts (.searchv2-main-content) + global .container — buyer-main.css tokens */
.aboutus-main-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--buyer-col-max, min(var(--container-max, 1320px), 92vw));
    margin-inline: auto;
    padding: 0 var(--buyer-col-pad-x, 2rem) 1rem;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .aboutus-main-content {
        padding: 0 14px 1rem;
    }
}

/* Desktop: allow scroll when content overflows */
@media (min-width: 1025px) {
    .aboutus-main-content {
        overflow-y: auto;
    }

    .aboutus-hero {
        flex: 0 0 auto;
    }

    .large-banner-section {
        flex: 1 1 0;
        min-height: clamp(160px, 18vh, 260px);
        max-height: min(36vh, 320px);
        height: auto;
        margin: 8px 0;
    }

    .gateway-section {
        flex: 0 0 auto;
    }
}


/* Site footer - flex sibling only; link row + copyright use styles.css */

body:has(.aboutus-page) footer.footer {
    flex: 0 0 auto;
    padding: 5px 0 max(5px, env(safe-area-inset-bottom)) !important;
}


/* ====================================
   HERO SECTION WITH STATS BANNER - Compact
   ==================================== */

.aboutus-hero {
    position: relative;
    width: 100%;
    /* Horizontal gutter comes from .aboutus-main-content — matches Search */
    padding: 20px 0 8px;
    padding-top: 24px;
    background: #F5F5F5;
    overflow: visible;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hero-bg-overlay {
    display: none;
}


/* Tagline Top Right - Positioned in top right of hero section */

.hero-tagline-aboutus {
    position: absolute;
    top: 20px;
    right: 0;
    text-align: right;
    z-index: 10;
    font-family: 'Antartida', sans-serif;
}

.hero-tagline-aboutus .tagline-top {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2B2B2B;
    margin-bottom: 3px;
}

.hero-tagline-aboutus .tagline-bottom {
    display: block;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: #2B2B2B;
}


/* Stats Banner - Main Card with Solid Background */

.stats-banner {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: 0;
    margin-bottom: var(--buyer-hero-strip-margin-bottom);
    padding: var(--buyer-hero-strip-pad-y) var(--buyer-hero-strip-pad-x);
    min-height: var(--buyer-hero-strip-min-h);
    background: #95afc0;
    overflow: hidden;
    box-sizing: border-box;
}

/* Match .searchv2-hero padding at the same breakpoints */
@media (max-width: 1024px) {
    .stats-banner {
        padding: var(--buyer-hero-strip-pad-y) 14px;
    }
}

@media (max-width: 768px) {
    .stats-banner {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .stats-banner {
        padding: 8px 10px 10px;
    }
}


/* ---- Stat transitions: numbers = counter (JS), labels = flip ---- */

.stat-label.stat-exit {
    animation: statFadeOut 0.25s ease forwards;
}

.stat-label.stat-enter {
    animation: statFadeIn 0.45s ease forwards;
}

@keyframes statFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(115deg, transparent 0%, transparent calc(25% - 1px), rgba(255, 255, 255, 0.2) calc(25% - 1px), rgba(255, 255, 255, 0.2) calc(25% + 1px), transparent calc(25% + 1px)),
        linear-gradient(115deg, transparent 0%, transparent calc(50% - 1px), rgba(255, 255, 255, 0.2) calc(50% - 1px), rgba(255, 255, 255, 0.2) calc(50% + 1px), transparent calc(50% + 1px)),
        linear-gradient(115deg, transparent 0%, transparent calc(75% - 1px), rgba(255, 255, 255, 0.2) calc(75% - 1px), rgba(255, 255, 255, 0.2) calc(75% + 1px), transparent calc(75% + 1px));
    pointer-events: none;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: transparent;
    padding: 0;
    border: none;
    position: relative;
    overflow: visible;
    max-width: 100%;
    margin: 0;
}


/* Remove duplicate diagonal lines */

.stats-container::before,
.stats-container::after {
    display: none;
}

.stat-divider {
    display: none;
}

.stat-item {
    text-align: center;
    padding: 26px 16px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.stat-number {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Quantico', sans-serif;
  text-transform: uppercase;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(43, 43, 43, 0.88);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: 'Antartida', sans-serif;
}


/* ==================================== 
   LARGE BANNER SECTION - Split Layout
   ==================================== */

.large-banner-section {
    position: relative;
    width: 100%;
    min-width: 0;
    margin: 8px 0;
    flex-shrink: 0;
    background: #4A5F6B;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 110px;
    height: clamp(110px, 12vw, 200px);
}

.banner-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    width: 100%;
    height: 100%;
}

.banner-image-side {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.banner-img-layer.active {
    opacity: 1;
    z-index: 1;
}

.banner-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(43, 43, 43, 0.2) 0%, rgba(43, 43, 43, 0.4) 100%);
    pointer-events: none;
    z-index: 2;
}

.banner-content-side {
    position: relative;
    background: #4A5F6B;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 40px 28px 36px;
    overflow: hidden;
}

.banner-content-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(255, 255, 255, 0.03) 15px, rgba(255, 255, 255, 0.03) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(255, 255, 255, 0.03) 15px, rgba(255, 255, 255, 0.03) 16px);
    pointer-events: none;
    z-index: 1;
}


.banner-badge-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.badge-icon-img {
    width: 56px;
    height: 56px;
    opacity: 0.9;
}

.banner-title-wrap {
    position: relative;
    overflow: visible;
    min-height: 3em;
}

.banner-title {
    font-size: 34px;
    font-weight: var(--font-display-weight, 900);
    color: #FFFFFF;
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Quantico', sans-serif;
    position: relative;
    z-index: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.banner-title.banner-title-exit {
    animation: bannerTitleExit 0.25s ease forwards;
}

.banner-title.banner-title-enter {
    animation: bannerTitleEnter 0.45s ease forwards;
}

@keyframes bannerTitleExit {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-8px); }
}

@keyframes bannerTitleEnter {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    font-family: 'Antartida', sans-serif;
    position: relative;
    z-index: 2;
}

.banner-subtitle strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}


/* ====================================
   GATEWAY SECTION - Compact
   ==================================== */

.gateway-section {
    position: relative;
    width: 100%;
    background: #F5F5F5;
    padding: 12px 0 14px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.gateway-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.gateway-title {
    font-size: 26px;
    font-weight: var(--font-display-weight, 900);
    color: var(--v2-kurogane);
    line-height: 1.25;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    font-family: 'Quantico', sans-serif;
}

.gateway-description {
    font-size: 13px;
    font-weight: 400;
    color: #4B5563;
    line-height: 1.65;
    margin: 0;
    font-family: 'Antartida', sans-serif;
}

.gateway-cta {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
}

.cta-box {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    padding: 14px 20px;
    text-align: center;
    width: auto;
    max-width: min(280px, 90vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-text {
    font-size: 11px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.5;
    margin: 0 0 12px 0;
    font-family: 'Antartida', sans-serif;
    font-style: italic;
}

.btn-become-partner {
    display: inline-block;
    background: var(--v2-gold);
    color: var(--v2-kurogane);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quantico', sans-serif;
}

/* ====================================
   RESPONSIVE DESIGN — Pro, all sizes (aligned with search page)
   ==================================== */

/* Mobile: allow scroll like search page, fix viewport */
@media (max-width: 768px) {
    html:has(.aboutus-page) {
        height: auto;
        overflow: auto;
    }

    body:has(.aboutus-page) {
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
        min-height: 100vh;
    }

    .aboutus-page {
        min-height: 100vh;
        padding-top: var(--buyer-nav-clearance);
    }

    .aboutus-main-content {
        overflow-y: visible;
        overflow-x: hidden;
        padding: 0 16px 24px;
        box-sizing: border-box;
    }

    body:has(.aboutus-page) .nav-container {
        padding: 0.5rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .aboutus-main-content {
        padding: 0 12px 20px;
    }
}

/* Footer — responsive on mobile (stacked, centered, no overflow) */
@media (max-width: 768px) {
    body:has(.aboutus-page) footer.footer {
        padding: 6px 0 max(6px, env(safe-area-inset-bottom)) !important;
    }

    body:has(.aboutus-page) .footer-nav {
        flex-direction: column !important;
        height: auto !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    body:has(.aboutus-page) .footer-logo-center {
        position: static !important;
        transform: none !important;
        order: 0 !important;
    }

    body:has(.aboutus-page) .footer-logo-icon {
        height: 28px !important;
        width: 28px !important;
    }

    body:has(.aboutus-page) .footer-nav-left,
    body:has(.aboutus-page) .footer-nav-right {
        padding: 0 !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px 16px !important;
    }

    body:has(.aboutus-page) .footer-nav-left {
        order: -1 !important;
    }

    body:has(.aboutus-page) .footer-nav-right {
        order: 1 !important;
    }

    body:has(.aboutus-page) .footer-nav-link {
        font-size: 11px !important;
    }

    body:has(.aboutus-page) .footer-copyright-bar {
        padding: 0 16px !important;
    }

    body:has(.aboutus-page) .footer-copyright-text {
        font-size: 10px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    body:has(.aboutus-page) footer.footer {
        padding: 6px 0 max(6px, env(safe-area-inset-bottom)) !important;
    }

    body:has(.aboutus-page) .footer-nav-link {
        font-size: 10px !important;
    }

    body:has(.aboutus-page) .footer-copyright-text {
        font-size: 9px !important;
    }
}

/* Large Desktop */
@media (max-width: 1400px) {
    .aboutus-hero {
        /* Page already has padding-top for fixed nav — keep modest hero inset */
        padding: 28px 0 12px;
        padding-top: 32px;
    }

    .hero-tagline-aboutus {
        top: 18px;
        right: 0;
    }

    .large-banner-section {
        width: 100%;
        margin: 14px 0;
    }

    .banner-content-side {
        padding: 52px 56px;
    }

    .gateway-section {
        padding: 16px 0 18px;
    }
}

/* Tablet Landscape */
@media (max-width: 1200px) {
    .aboutus-hero {
        padding: 24px 0 10px;
        padding-top: 28px;
    }

    .hero-tagline-aboutus {
        top: 16px;
        right: 0;
    }

    .stats-container {
        gap: 0;
    }

    .stat-item {
        padding: 28px 18px;
    }

    .stat-number {
        font-size: 46px;
    }

    .stat-label {
        font-size: 13px;
        font-weight: 700;
    }

    .large-banner-section {
        height: clamp(180px, 26vw, 280px);
        width: 100%;
        margin: 16px 0;
    }

    .banner-content-side {
        padding: 50px 60px;
    }

    .banner-title {
        font-size: 48px;
    }

    .banner-subtitle {
        font-size: 15px;
    }

    .badge-icon-img {
        width: 70px;
        height: 70px;
    }

    .banner-badge-top {
        top: 30px;
        right: 40px;
    }

    .banner-badge-bottom {
        bottom: 30px;
        left: 30px;
    }

    .gateway-section {
        padding: 18px 0 20px;
    }

    .gateway-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .gateway-description {
        font-size: 14px;
    }

    .gateway-container {
        gap: 40px;
    }

    .cta-box {
        padding: 28px 28px;
    }

    .cta-text {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    .aboutus-hero {
        padding: 22px 0 10px;
        padding-top: 26px;
    }

    .hero-tagline-aboutus {
        top: 14px;
        right: 0;
    }

    .stats-banner::before {
        background-image:
            linear-gradient(115deg, transparent 0%, transparent calc(50% - 1px), rgba(255, 255, 255, 0.12) calc(50% - 1px), rgba(255, 255, 255, 0.12) calc(50% + 1px), transparent calc(50% + 1px));
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
    }

    .stat-item {
        padding: 26px 18px;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .large-banner-section {
        height: clamp(160px, 28vw, 260px);
        width: 100%;
        margin: 14px 0;
    }

    .large-banner-section .banner-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .banner-content-side {
        padding: 40px 50px;
    }

    .banner-title {
        font-size: 40px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .badge-icon-img {
        width: 60px;
        height: 60px;
    }

    .banner-badge-top {
        top: 24px;
        right: 30px;
    }

    .banner-badge-bottom {
        bottom: 24px;
        inset-inline-start: auto;
        inset-inline-end: 24px;
    }

    .gateway-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gateway-section {
        padding: 16px 0 18px;
    }

    .gateway-title {
        font-size: 28px;
    }

    .cta-box {
        max-width: 100%;
        padding: 24px 24px;
    }
}

/* Mobile - stats and large-banner same width (both span main-content) */
@media (max-width: 768px) {
    .aboutus-hero {
        padding: 20px 0 20px 0;
        padding-top: 24px;
    }

    .hero-tagline-aboutus {
        top: 12px;
        right: 0;
    }

    .hero-tagline-aboutus .tagline-top {
        font-size: 9px;
    }

    .stats-banner::before {
        background-image:
            linear-gradient(115deg, transparent 0%, transparent calc(50% - 1px), rgba(255, 255, 255, 0.12) calc(50% - 1px), rgba(255, 255, 255, 0.12) calc(50% + 1px), transparent calc(50% + 1px));
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 22px 14px;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 11px;
        font-weight: 700;
    }

    .large-banner-section {
        height: clamp(150px, 32vw, 240px);
        width: 100%;
        margin: 12px 0;
    }

    .large-banner-section .banner-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .banner-content-side {
        padding: 28px 24px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 12px;
    }

    .badge-icon-img {
        width: 48px;
        height: 48px;
    }

    .banner-badge-top {
        top: 16px;
        right: 20px;
    }

    .banner-badge-bottom {
        bottom: 16px;
        inset-inline-start: auto;
        inset-inline-end: 16px;
    }

    .gateway-section {
        padding: 14px 0 18px;
    }

    .gateway-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .gateway-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .cta-box {
        padding: 20px 18px;
    }

    .cta-text {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .btn-become-partner {
        padding: 12px 28px;
        font-size: 11px;
        min-height: 44px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .aboutus-hero {
        padding: 18px 0 18px 0;
        padding-top: 22px;
    }

    .hero-tagline-aboutus {
        top: 10px;
        right: 0;
    }

    .stats-banner::before {
        display: none;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 18px 14px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
        font-weight: 700;
    }

    .large-banner-section {
        height: clamp(140px, 36vw, 220px);
        width: 100%;
        margin: 16px 0;
        border-radius: 0;
    }

    .banner-content-side {
        padding: 24px 20px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 11px;
    }

    .badge-icon-img {
        width: 40px;
        height: 40px;
    }

    .banner-badge-top {
        top: 12px;
        right: 16px;
    }

    .banner-badge-bottom {
        bottom: 12px;
        inset-inline-start: auto;
        inset-inline-end: 12px;
    }

    .gateway-section {
        padding: 20px 0 24px;
    }

    .gateway-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .gateway-description {
        font-size: 12px;
    }

    .cta-box {
        padding: 18px 16px;
    }

    .cta-text {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .btn-become-partner {
        padding: 12px 24px;
        font-size: 11px;
        min-height: 44px;
    }
}

/* Small mobile — same nav clearance as desktop (logo not compact on About) */
@media (max-width: 480px) {
    .aboutus-page {
        padding-top: var(--buyer-nav-clearance);
    }
}

/* Extra small (375px) — match search page breakpoint */
@media (max-width: 375px) {
    .aboutus-hero {
        padding: 16px 0 14px 0;
        padding-top: 20px;
    }

    .hero-tagline-aboutus {
        top: 8px;
        right: 0;
    }

    .hero-tagline-aboutus .tagline-top {
        font-size: 8px;
    }

    .hero-tagline-aboutus .tagline-bottom {
        font-size: 7px;
    }

    .gateway-section {
        padding: 18px 0 20px;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
    }

    .large-banner-section {
        height: clamp(130px, 40vw, 200px);
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-subtitle {
        font-size: 10px;
    }

    .badge-icon-img {
        width: 36px;
        height: 36px;
    }

    .gateway-title {
        font-size: 18px;
    }

    .gateway-description {
        font-size: 11px;
    }
}