@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --red: #ed1b2a;
    --red-dark: #ac0710;
    --red-soft: #ff4955;
    --black: #09090b;
    --black-soft: #111216;
    --graphite: #1b1d23;
    --white: #ffffff;
    --text: #15171c;
    --muted: #747985;
    --line: #e6e8ec;
    --background: #f4f5f7;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--background);
    font-family: 'Inter', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

svg,
img {
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 87% 28%, rgba(206, 9, 21, .34), transparent 25%),
        radial-gradient(circle at 68% 72%, rgba(113, 5, 12, .25), transparent 25%),
        linear-gradient(108deg, #08090b 0%, #111216 57%, #220306 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .32;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 65%, rgba(255, 255, 255, .02) 65% 66%, transparent 66%),
        repeating-linear-gradient(90deg, transparent 0 84px, rgba(255, 255, 255, .018) 84px 85px);
}

.navbar {
    position: relative;
    z-index: 10;
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--red-soft), var(--red-dark));
    border-radius: 13px;
    box-shadow: 0 12px 24px rgba(237, 27, 42, .24);
    font-size: 24px;
    font-style: italic;
    font-weight: 900;
}

.logo-text {
    line-height: 1;
}

.logo-text strong {
    display: block;
    font-size: 20px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -.5px;
}

.logo-text small {
    display: block;
    margin-top: 7px;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 4.7px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 33px;
}

.nav-links a {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 11px;
}

.nav-whatsapp {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 16px;
    color: #fff;
    background: rgba(25, 172, 92, .12);
    border: 1px solid rgba(53, 213, 126, .30);
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
}

.wa-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #32d778;
    box-shadow: 0 0 14px rgba(50, 215, 120, .9);
}

.admin-access {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 7px 12px 7px 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
    transition: transform .2s ease, background .2s ease;
}

.admin-access:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .11);
}

.admin-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(237, 27, 42, .14);
    border-radius: 10px;
}

.admin-icon svg {
    width: 18px;
    fill: var(--red);
}

.admin-access small,
.admin-access strong {
    display: block;
}

.admin-access small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .42);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.admin-access strong {
    font-size: 11px;
}

.admin-arrow {
    width: 17px;
    fill: none;
    stroke: rgba(255, 255, 255, .45);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-content {
    position: relative;
    z-index: 4;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(470px, .95fr);
    align-items: center;
    gap: 60px;
    padding: 82px 0;
}

.hero-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.hero-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 14px rgba(237, 27, 42, .9);
}

.hero h1 {
    max-width: 700px;
    margin: 24px 0 20px;
    font-size: clamp(48px, 5.1vw, 73px);
    line-height: 1.01;
    letter-spacing: -3.7px;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.75;
}

.search-box {
    max-width: 720px;
    display: flex;
    gap: 8px;
    margin-top: 34px;
    padding: 7px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .30);
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.search-input svg {
    width: 22px;
    margin-left: 14px;
    fill: none;
    stroke: #969ba5;
    stroke-width: 2;
    stroke-linecap: round;
}

.search-input input {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 14px;
    color: var(--text);
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 14px;
}

.search-box button {
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), #c60713);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
}

.search-box button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 19px;
}

.button-primary,
.button-secondary {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
}

.button-primary {
    color: #fff;
    background: var(--red);
}

.button-secondary {
    color: #fff;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .11);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.hero-metrics div {
    position: relative;
    padding-right: 28px;
}

.hero-metrics div:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 28px;
    right: 0;
    top: 50%;
    background: rgba(255, 255, 255, .11);
    transform: translateY(-50%);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 22px;
}

.hero-metrics span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
}

.hero-car {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car::before {
    content: "";
    position: absolute;
    width: 490px;
    height: 490px;
    right: -60px;
    top: 0;
    border-radius: 50%;
    border: 1px solid rgba(237, 27, 42, .20);
    box-shadow:
        0 0 0 65px rgba(237, 27, 42, .025),
        0 0 0 130px rgba(237, 27, 42, .018);
}

.car-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
}

.car-light-one {
    width: 310px;
    height: 180px;
    left: 80px;
    top: 130px;
    background: rgba(237, 27, 42, .28);
}

.car-light-two {
    width: 220px;
    height: 120px;
    right: 20px;
    bottom: 100px;
    background: rgba(255, 255, 255, .07);
}

.sports-car {
    position: relative;
    z-index: 3;
    width: 116%;
    max-width: 720px;
    transform: translateX(-3%);
    filter: drop-shadow(0 34px 28px rgba(0, 0, 0, .62));
}

.car-platform {
    position: absolute;
    z-index: 1;
    width: 76%;
    height: 44px;
    bottom: 90px;
    left: 11%;
    border-radius: 50%;
    background: rgba(0, 0, 0, .62);
    filter: blur(13px);
}

.car-badge {
    position: absolute;
    z-index: 5;
    top: 70px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(12, 13, 16, .84);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 13px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.car-badge-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: rgba(237, 27, 42, .13);
    border-radius: 9px;
}

.car-badge-icon svg {
    width: 19px;
    fill: var(--red);
}

.car-badge small,
.car-badge strong {
    display: block;
}

.car-badge small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .40);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.car-badge strong {
    font-size: 11px;
}

.car-info {
    position: absolute;
    z-index: 5;
    left: 18px;
    bottom: 68px;
    padding: 14px 17px;
    background: rgba(12, 13, 16, .85);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 13px;
    backdrop-filter: blur(14px);
}

.car-info span,
.car-info strong {
    display: block;
}

.car-info span {
    margin-bottom: 4px;
    color: var(--red);
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.car-info strong {
    font-size: 11px;
}

.hero-features {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-features article {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 28px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.hero-features article:first-child {
    padding-left: 0;
}

.hero-features article:last-child {
    border-right: 0;
}

.feature-number {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
}

.hero-features strong,
.hero-features small {
    display: block;
}

.hero-features strong {
    font-size: 12px;
}

.hero-features small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
}

/* ESTOQUE */

.stock-section {
    padding: 88px 0 100px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 32px;
}

.section-header.centered {
    justify-content: center;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.section-header p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.result-box {
    min-width: 165px;
    padding: 18px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(8, 9, 11, .05);
}

.result-box strong,
.result-box span {
    display: block;
}

.result-box strong {
    color: var(--red);
    font-size: 26px;
}

.result-box span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.search-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -9px 0 28px;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    font-size: 12px;
}

.search-summary span {
    color: var(--muted);
}

.search-summary a {
    margin-left: auto;
    color: var(--red);
    font-weight: 800;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vehicle-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(8, 9, 11, .055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.vehicle-card:hover {
    transform: translateY(-7px);
    border-color: rgba(237, 27, 42, .25);
    box-shadow: 0 22px 50px rgba(8, 9, 11, .11);
}

.vehicle-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #15171c;
}

.vehicle-image > a {
    display: block;
    width: 100%;
    height: 100%;
}

.vehicle-image > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.vehicle-card:hover .vehicle-image > a > img {
    transform: scale(1.045);
}

.vehicle-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 6px;
    background:
        radial-gradient(circle at 50% 48%, rgba(237, 27, 42, .18), transparent 40%),
        #121318;
}

.vehicle-placeholder img {
    width: 82%;
    opacity: .65;
    filter: grayscale(.5);
}

.vehicle-placeholder span {
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.vehicle-status,
.vehicle-id {
    position: absolute;
    z-index: 4;
    top: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    backdrop-filter: blur(10px);
}

.vehicle-status {
    left: 14px;
}

.vehicle-id {
    right: 14px;
    background: rgba(8, 9, 11, .67);
    border: 1px solid rgba(255, 255, 255, .13);
}

.status-available {
    background: rgba(12, 142, 72, .88);
}

.status-dismantling {
    background: rgba(190, 122, 0, .90);
}

.status-sold {
    background: rgba(75, 78, 85, .90);
}

.vehicle-body {
    padding: 22px;
}

.vehicle-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.vehicle-body h3 {
    margin: 10px 0 14px;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -.5px;
}

.vehicle-details {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.vehicle-details span {
    padding: 7px 9px;
    color: #5b606a;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
}

.vehicle-actions {
    display: flex;
    gap: 8px;
    margin-top: 19px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
}

.vehicle-view,
.vehicle-whatsapp {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}

.vehicle-view {
    flex: 1;
    gap: 7px;
    color: #fff;
    background: var(--black-soft);
}

.vehicle-view svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vehicle-whatsapp {
    padding: 0 14px;
    color: #087c3f;
    background: #e6f7ee;
}

.empty-state {
    padding: 70px 25px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.empty-state h3 {
    margin: 0;
    font-size: 25px;
}

.empty-state p {
    color: var(--muted);
}

.empty-state a {
    display: inline-flex;
    padding: 13px 17px;
    color: #fff;
    background: var(--red);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
}

/* BENEFÍCIOS */

.benefits {
    padding: 90px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.benefits-grid article {
    padding: 31px;
    background: #f8f9fa;
    border: 1px solid var(--line);
    border-radius: 17px;
}

.benefits-grid article > span {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
}

.benefits-grid h3 {
    margin: 18px 0 9px;
    font-size: 18px;
}

.benefits-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

/* CONTATO */

.contact {
    padding: 80px 0;
    color: #fff;
    background: #0a0b0d;
}

.contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 38px 42px;
    background:
        radial-gradient(circle at 88% 50%, rgba(237, 27, 42, .18), transparent 25%),
        linear-gradient(135deg, #17191e, #111216);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 21px;
}

.contact h2 {
    margin: 0;
    font-size: clamp(29px, 4vw, 42px);
    letter-spacing: -1.5px;
}

.contact p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .52);
    font-size: 14px;
}

.contact-inner > a {
    flex: 0 0 auto;
    padding: 16px 20px;
    background: #159b55;
    border-radius: 12px;
}

.contact-inner small,
.contact-inner strong {
    display: block;
}

.contact-inner small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .72);
    font-size: 9px;
}

.contact-inner strong {
    font-size: 16px;
}

/* FOOTER */

.footer {
    color: rgba(255, 255, 255, .55);
    background: #07080a;
}

.footer-top {
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-top p {
    font-size: 12px;
}

.footer-top > a:last-child {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 700;
}

.footer-bottom {
    min-height: 67px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .30);
    font-size: 10px;
}

/* WHATSAPP FLUTUANTE */

.floating-whatsapp {
    position: fixed;
    z-index: 30;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #18a85c;
    border-radius: 50%;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .24);
}

.floating-whatsapp span {
    position: relative;
    width: 23px;
    height: 23px;
    background: #fff;
    border-radius: 50%;
}

.floating-whatsapp span::after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: -3px;
    width: 9px;
    height: 9px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* RESPONSIVO */

@media (max-width: 1050px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 70px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-label,
    .search-box,
    .hero-buttons,
    .hero-metrics {
        margin-inline: auto;
    }

    .hero-copy > p {
        margin-inline: auto;
    }

    .hero-car {
        min-height: 420px;
    }

    .sports-car {
        width: min(780px, 105%);
    }

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

@media (max-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .navbar {
        min-height: 82px;
    }

    .nav-whatsapp {
        width: 43px;
        padding: 0;
        justify-content: center;
        font-size: 0;
    }

    .admin-access {
        min-height: 44px;
        padding: 4px 8px;
    }

    .admin-access small,
    .admin-access strong {
        display: none;
    }

    .admin-icon {
        width: 34px;
        height: 34px;
    }

    .hero-content {
        min-height: auto;
        padding: 58px 0 62px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 60px);
        letter-spacing: -2.7px;
    }

    .hero-copy > p {
        font-size: 14px;
    }

    .search-box {
        display: block;
    }

    .search-box button {
        width: 100%;
        margin-top: 6px;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-car {
        min-height: 330px;
    }

    .car-badge {
        top: 25px;
    }

    .car-info {
        bottom: 28px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-features article,
    .hero-features article:first-child {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .vehicle-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-image {
        height: 255px;
    }

    .contact-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 24px;
    }

    .contact-inner > a {
        width: 100%;
        text-align: center;
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 40px 0;
    }
}

@media (max-width: 460px) {
    .logo-mark {
        width: 40px;
        height: 40px;
    }

    .logo-text strong {
        font-size: 16px;
    }

    .logo-text small {
        font-size: 7px;
        letter-spacing: 3.7px;
    }

    .hero-car {
        min-height: 275px;
    }

    .car-badge,
    .car-info {
        display: none;
    }

    .hero-metrics {
        gap: 17px;
    }

    .hero-metrics div {
        padding-right: 17px;
    }

    .vehicle-image {
        height: 220px;
    }

    .search-summary {
        flex-wrap: wrap;
    }

    .search-summary a {
        width: 100%;
        margin-left: 0;
    }
}
