/* ============================================
   WINGATE BY WYNDHAM STEUBENVILLE
   Bold Editorial — Midnight Blue + Mint
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --midnight: #0A1F3F;
    --midnight-light: #132D54;
    --midnight-dark: #061529;
    --mint: #5EEAD4;
    --mint-dark: #34D4B8;
    --mint-light: #A7F3D0;
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --gray-50: #F1F5F9;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-800: #1E293B;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(10, 31, 63, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 31, 63, 0.1);
    --shadow-lg: 0 12px 40px rgba(10, 31, 63, 0.15);
    --shadow-xl: 0 20px 60px rgba(10, 31, 63, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--midnight);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 500;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--midnight);
}

.section-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 1.25rem;
}

.title-accent {
    color: var(--midnight-dark);
    font-style: italic;
    font-weight: 500;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-mint {
    background: var(--mint);
    color: var(--midnight);
}

.btn-mint:hover {
    background: var(--mint-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--midnight);
    border: 1.5px solid var(--gray-200);
}

.btn-outline-dark:hover {
    border-color: var(--midnight);
    background: var(--midnight);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 31, 63, 0.06);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--midnight);
    z-index: 1001;
}

.logo-light {
    color: var(--white);
}

.logo-icon {
    color: var(--mint-dark);
    flex-shrink: 0;
}

.logo-light .logo-icon {
    color: var(--mint);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: var(--sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    transition: color var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint-dark);
    transition: width var(--transition);
}

.nav-list a:hover {
    color: var(--midnight);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta {
    display: block;
}

.nav-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--midnight);
    padding: 0.5rem;
}

.nav-toggle {
    display: none;
    padding: 0.5rem;
    color: var(--midnight);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 31, 63, 0.82) 0%,
        rgba(10, 31, 63, 0.65) 50%,
        rgba(10, 31, 63, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 8rem 1.5rem 4rem;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--mint);
}

.hero-sub {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Booking Strip ── */
.booking-strip {
    background: var(--midnight);
    padding: 2.5rem 0;
}

.booking-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
}

.booking-text {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    color: var(--white);
}

.booking-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Sections ── */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ── Rooms ── */
.rooms {
    background: var(--off-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.room-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-card-body {
    padding: 1.75rem;
}

.room-card-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.room-card-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.room-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--gray-800);
    font-weight: 500;
}

.room-features svg {
    color: var(--mint-dark);
    flex-shrink: 0;
}

/* ── Amenities ── */
.amenities {
    background: var(--white);
}

.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.amenity-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.amenity-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--midnight);
    border-radius: var(--radius-sm);
    color: var(--mint);
}

.amenity-text h4 {
    font-family: var(--sans);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--midnight);
}

.amenity-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.amenities-img-stack {
    position: relative;
    padding-bottom: 2rem;
}

.amenities-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.amenities-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-img-accent {
    position: absolute;
    bottom: 0;
    right: -2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.amenities-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Location ── */
.location {
    background: var(--off-white);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-highlight {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.lh-number {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mint-dark);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.7;
}

.lh-text h4 {
    font-family: var(--sans);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 0.25rem;
}

.lh-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 6/5;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10, 31, 63, 0.7) 0%, transparent 50%);
}

.map-pin {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.map-label {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.map-label strong {
    display: block;
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--midnight);
    margin-bottom: 0.25rem;
}

.map-label span {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* ── Quote Section ── */
.quote-section {
    background: var(--midnight);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.quote-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

blockquote {
    font-family: var(--serif);
    font-size: clamp(1.375rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.quote-footer {
    display: flex;
    justify-content: center;
}

.quote-source {
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--mint);
    letter-spacing: 0.05em;
}

/* ── Contact ── */
.contact {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--midnight);
    border-radius: var(--radius-sm);
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.cd-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.cd-value {
    font-size: 1rem;
    color: var(--midnight);
    font-weight: 500;
}

.cd-link:hover {
    color: var(--mint-dark);
}

.contact-form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--midnight);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--sans);
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint-dark);
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-success svg {
    opacity: 0.9;
}

.form-success h3 {
    font-size: 1.375rem;
    color: var(--midnight);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* ── Footer ── */
.footer {
    background: var(--midnight-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 1.25rem;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--mint);
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile Nav ── */
@media (max-width: 1023px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav {
        position: fixed;
        inset: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }
    
    .nav.open {
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .nav-list li {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s, transform 0.4s;
    }
    
    .nav.open .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav.open .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nav.open .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .nav.open .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nav.open .nav-list li:nth-child(4) { transition-delay: 0.25s; }
    
    .nav-list a {
        font-family: var(--serif);
        font-size: 2rem;
        font-weight: 600;
        color: var(--midnight);
        padding: 0.75rem 0;
    }
    
    .nav-list a::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 2rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s, transform 0.4s;
        transition-delay: 0.3s;
    }
    
    .nav.open .nav-cta {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-list a:hover::after {
        display: none;
    }
}

/* ── Tablet ── */
@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-layout,
    .location-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .amenities-img-accent {
        right: 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .section {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 7rem 1.25rem 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .booking-strip-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .booking-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .map-label {
        padding: 0.75rem 1rem;
    }
    
    .map-label strong {
        font-size: 0.8125rem;
    }
    
    .map-label span {
        font-size: 0.75rem;
    }
    
    .contact-form-wrap {
        padding: 1.5rem;
    }
}
