:root {
    --bg: #f6f9f9;
    --surface: #ffffff;
    --surface-soft: #edf5f5;
    --text: #1f2937;
    --muted: #5f6b76;
    --primary: #0d9a9a;
    --primary-dark: #0b7777;
    --line: #dce8e8;
    --shadow: 0 18px 40px rgba(10, 63, 63, 0.08);
    --radius: 22px;
    --container: min(1140px, 92vw);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: var(--text);
    background: radial-gradient(circle at top right, #fafdfe 0%, #f4f8f8 48%, #f1f5f5 100%);
    line-height: 1.6;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

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

.container {
    width: var(--container);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 232, 232, 0.75);
}

.nav-wrap {
    min-height: 50px;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 1rem;
}

.brand img {
    width: 205px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-weight: 600;
    color: #37515a;
}

.main-nav a {
    position: relative;
    padding: 0.35rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}


.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 220;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    background: rgba(18, 176, 166, 0.88);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(6, 79, 79, 0.28);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: rgba(15, 151, 143, 0.90);
}

.whatsapp-float-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.7rem;
    color: var(--primary-dark);
    cursor: pointer;
}

.hero {
    position: relative;
    padding: clamp(3rem, 8vw, 5rem) 0;
    background-color: #1f2937;
    background-image:
        linear-gradient(115deg, rgba(14, 22, 32, 0.56) 0%, rgba(14, 22, 32, 0.42) 45%, rgba(14, 22, 32, 0.5) 100%),
        url('ORDINACIJA/čekaonica.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d2f3f3;
    font-weight: 800;
    font-size: 0.78rem;
    margin: 0 0 0.8rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: clamp(2.1rem, 6vw, 4.1rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);

}

.lead {
    margin: 1.2rem 0 1.6rem;
    color: #eaf6f6;
    max-width: 55ch;
    font-size: 1.08rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

.hero-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.hero-points li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-points li::before {
    content: '✓';
    color: #8de7e7;
    font-weight: 800;
    margin-top: 0.05rem;
}

.quick-links-section {
    padding-top: 1.2rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.quick-link-card {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    min-height: 155px;
    border-radius: 22px;
    padding: 1.1rem 1.15rem;
    background: linear-gradient(135deg, rgba(19, 183, 178, 0.8) 0%, rgba(14, 159, 154, 0.8) 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(8, 90, 90, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.quick-link-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin-bottom: 0.6rem;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.quick-link-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.quick-link-icon-link:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(255, 255, 255, 0.22);
}

.quick-link-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.quick-link-bottom-link {
    margin-top: auto;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(8, 90, 90, 0.24);
}

.quick-link-label {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.84);
}

.quick-link-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.92rem, 1.55vw, 1.12rem);
    line-height: 1.35;
    font-weight: 700;
    margin-top: 0.95rem;
}

.quick-link-value a,
.quick-link-value span {
    color: #ffffff;
}

.quick-link-value a {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.16em;
}

.quick-link-stack {
    display: grid;
    gap: 0.3rem;
}

.quick-link-card:last-child .quick-link-value {
    font-family: inherit;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 800;
    line-height: 1.45;
}

.section {
    padding: 2rem 0;
}

.page-onama .section {
    padding: 2.4rem 0;
}

.services {
    padding-top: 1rem;
}

.clinic-gallery-section {
    padding-top: 1rem;
}

.clinic-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.clinic-gallery-item {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 10px 24px rgba(12, 58, 58, 0.08);
}

.clinic-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin: 0;
    font-weight: 800;
    font-size: 0.78rem;
}

h2 {
    margin: 0.45rem 0 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.015em;
    color: #0d7f7f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 6px 14px rgba(12, 58, 58, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(12, 58, 58, 0.09);
}

.icon-wrap {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--primary);
    margin-bottom: 0.9rem;
}

.icon-wrap svg {
    width: 30px;
    height: 30px;
}

.service-thumb {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.9rem;
    aspect-ratio: 16 / 10;
}

.service-card.has-image {
    padding: 1.25rem;
    overflow: hidden;
}

.service-card.has-image .service-thumb {
    width: calc(100% + 2.5rem);
    margin: 0.75rem -1.25rem 0.75rem;
    border-radius: 0;
    aspect-ratio: 16 / 10;
}

.service-card.has-image .service-thumb img {
    object-fit: cover;
    object-position: center;
}

.services-grid .service-card:nth-child(2) .service-thumb img {
    object-position: center 76%;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin: 0;
    line-height: 1.3;
    color: #0d7f7f;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.12rem;
    letter-spacing: -0.01em;
}

.service-card p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}



.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.why-card {
    background: linear-gradient(120deg, #edf6f6 0%, #f8fbfb 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.why-head {
    width: 150px;
    min-height: 92px;
    display: grid;
    place-items: start;
    margin-bottom: 1rem;
}

.mefst-head {
    width: 190px;
    margin-bottom: 0.35rem;
}

.mefst-head img {
    max-height: 112px;
}

.why-head img {
    width: 100%;
    max-height: 92px;
    height: auto;
    object-fit: contain;
}

.why-card h3 {
    margin: 0;
    color: #0b7777;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.42rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.why-card p {
    margin-top: 0.9rem;
    color: #4e5f6e;
}

.about-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.3rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.2rem;
}

.about-wrap p {
    margin: 0;
    color: #4f5f6d;
}

.team {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.9rem;
}

.team-member {
    text-align: center;
}

.avatar {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d2e7e7;
    background: #eef6f6;
    margin-bottom: 0.8rem;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% 24%;
    transform: scale(1.28);
}

.team-member h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.96rem;
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.005em;
}

.team-member p {
    margin: 0.25rem 0 0;
    color: #5a6a77;
    font-size: 0.87rem;
}

.team-note {
    margin: 1.5rem auto 0;
    text-align: center;
    width: fit-content;
    color: #365162;
    background: #eaf4f4;
    border: 1px solid #d8e9e9;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 600;
}

.inquiry-section {
    padding-top: 1.2rem;
}

.inquiry-shell {
    background: linear-gradient(135deg, rgba(13, 154, 154, 0.8) 0%, rgba(17, 177, 177, 0.82) 55%, rgba(15, 140, 140, 0.8) 100%);
    border-radius: 24px;
    padding: clamp(0.55rem, 1.4vw, 0.85rem);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0.9rem;
    align-items: stretch;
}

.inquiry-left h2 {
    color: #f1f8fb;
    margin: 0 auto 0.9rem;
    max-width: 12ch;
    text-align: center;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.05;
    font-weight: 300;
}

.inquiry-image {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.inquiry-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: center center;
}

.inquiry-right {
    background: #f6f8fa;
    border-radius: 16px;
    padding: clamp(0.65rem, 1.5vw, 0.95rem);
}

.inquiry-form {
    display: grid;
    gap: 0.9rem;
}

.inquiry-form label {
    display: grid;
    gap: 0.4rem;
}

.inquiry-form span {
    font-size: 0.93rem;
    color: #4d5c68;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cdd7df;
    background: transparent;
    padding: 0.45rem 0.1rem 0.55rem;
    font: inherit;
    color: #1f2937;
    outline: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-bottom-color: #0d9a9a;
}

.inquiry-form .button {
    justify-self: center;
    margin-top: 0.45rem;
}

.quick-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 0.65rem;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.66rem 0.95rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.93rem;
    letter-spacing: 0.01em;
}

.quick-whatsapp,
.quick-call {
    background: rgba(13, 138, 138, 0.86);
}

.quick-whatsapp:hover,
.quick-whatsapp:focus-visible,
.quick-call:hover,
.quick-call:focus-visible {
    background: rgba(10, 118, 118, 0.9);
}

.quick-contact-btn .whatsapp-float-icon,
.quick-contact-btn .phone-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.inquiry-alert {
    margin: 0 0 0.9rem;
    padding: 0.62rem 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
}

.inquiry-alert.success {
    background: #dcf7ef;
    color: #0f6c54;
}

.inquiry-alert.error {
    background: #fee8e8;
    color: #8a2a2a;
}

.contact-background {
    position: relative;
    background-image:
        linear-gradient(135deg, rgba(246, 249, 249, 0.38) 0%, rgba(246, 249, 249, 0.24) 100%),
        url('ORDINACIJA/kip2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 4.5rem 0 4rem;
}

.contact {
    background: transparent;
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
    align-items: stretch;
}

.contact-card,
.map-wrap {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 6px 12px rgba(13, 64, 64, 0.08);
    backdrop-filter: blur(4px);
}

.contact-card {
    min-height: 320px;
    height: 100%;
    padding: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card ul {
    margin: 1rem 0 0.85rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    color: #4a5b6a;
    width: 100%;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    background: var(--primary);
    color: #fff;
    padding: 0.72rem 1.15rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: none;
    cursor: pointer;
}

.contact-card .button {
    width: 70%;
    gap: 0.45rem;
}

.contact-card .quick-contact-btn {
    width: 70%;
}

.contact-card .quick-contact-actions {
    width: 100%;
    justify-items: center;
}

.mail-icon {
    width: 16px;
    height: 16px;
}

.button:hover,
.button:focus-visible {
    background: var(--primary-dark);
}

.map-wrap {
    overflow: hidden;
    min-height: 320px;
    height: 100%;
    position: relative;
    padding: 0;
}

.map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.site-footer {
    margin-top: 2rem;
    background: linear-gradient(135deg, #ebf3f3 0%, #f8fbfb 100%);
    border-top: 1px solid var(--line);
}

.footer-grid {
    padding: 2.2rem 0 1.4rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.footer-grid > div {
    text-align: center;
}

.footer-logo {
    width: 300px;
    margin-bottom: 0.8rem;
}

.site-footer h3 {
    margin: 0 0 0.8rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #0f7f7f;
    letter-spacing: -0.01em;
}

.site-footer p {
    margin: 0.3rem 0;
    color: #4f6171;
}

.footer-bottom {
    border-top: 1px solid #d7e7e7;
    padding: 0.95rem 0 1.2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

.footer-bottom p + p {
    margin-top: 0.28rem;
}

.page-faq .section {
    padding: 2.6rem 0;
}

.faq-hero {
    background: linear-gradient(130deg, #eff7f7 0%, #f9fcfc 100%);
    border-bottom: 1px solid var(--line);
}

.faq-hero-wrap {
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
}

.faq-hero-wrap h1 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
    color: #0b7d7d;
}

.faq-hero-wrap p {
    margin: 0.9rem auto 0;
    max-width: 70ch;
    color: #4e5f6d;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 6px 14px rgba(12, 58, 58, 0.05);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 800;
    color: #16535d;
    padding: 1rem 1.1rem;
    position: relative;
    padding-right: 2.6rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0d9a9a;
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin: 0;
    padding: 0 1.1rem 1rem;
    color: #4b5d6b;
}

@media (max-width: 1160px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .nav-wrap {
        grid-template-columns: 180px 1fr auto;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: 52px;
        right: 4vw;
        left: 4vw;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 0.85rem;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        display: none;
    }

    .main-nav.open {
        display: flex;
    }

    .hero-grid,
    .about-wrap,
    .contact-grid,
    .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .contact-background {
        padding: 3.5rem 0 3rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        padding-top: 2rem;
    }

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

    .clinic-gallery-grid {
        grid-template-columns: 1fr;
    }

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

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

    .inquiry-image img {
        min-height: 180px;
    }

    .quick-contact-actions {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .quick-contact-btn {
        width: 100%;
    }

    .contact-card {
        min-height: 0;
        height: auto;
    }

    .map-wrap {
        height: auto;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 3.5rem 0;
    }

    .page-faq .section {
        padding: 2rem 0;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-background {
        padding: 3rem 0 2.5rem;
    }

    .clinic-gallery-grid {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 2.6rem);
    }

    .lead {
        font-size: 1rem;
    }

    .team-note {
        border-radius: 14px;
        width: 100%;
        text-align: left;
    }

    .services-grid .service-card:nth-child(2) .service-thumb img,
    .services-grid .service-card:nth-child(4) .service-thumb img {
        transform: scale(0.9);
        transform-origin: center;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        padding: 0.66rem 0.9rem;
        font-size: 0.9rem;
    }
}
