:root {
    --bg1: #f8fafc;
    /* light */
    --accent: #f7c6d5;
    /* soft pink */
    --muted: #6b7280;
    --glass: rgba(255, 255, 255, 0.7);
}


* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: #e0e0e0;
    /* background: radial-gradient(1200px 600px at 10% 10%, #fff6f8 0%, transparent 15%), linear-gradient(120deg, #fff 0%, #fbfbff 100%); */
    color: #111827;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.page {
    max-width: 980px;
    margin: 40px auto;
    padding: 28px;
    position: relative;
    /* For absolute positioning of logout button */
}

.logout-btn {
    position: absolute;
    top: 0;
    right: 20px;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #d05c5c;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logout-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    color: #b91c1c;
}


.hero {
    position: relative;
    padding: 48px;
    border-radius: 18px;
    background-image: url("/static/main-card-bg.webp");
    box-shadow: 0 6px 30px rgba(17, 24, 39, 0.06);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    border: 1px solid cyan;
}

.hero:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.12);
}


.hero-inner {
    position: relative;
    z-index: 2
}

/* .heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0 0 12px;
    color: #727d9f;
} */

.heading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1.4s ease forwards;
    font-family: 'Dancing Script', cursive;
    color: #fb5b5b;
    font-size: 2rem;
    text-align: center;
}

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

.lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted);
    /* max-width: fit-content; */
    /* padding-left: 2rem; */
    text-align: center;

}

.controls {
    margin-top: 18px
}

.btn {
    background: transparent;
    border: 1px solid rgba(17, 24, 39, 0.06);
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600
}


.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.45;
    filter: blur(18px);
    transform: translateZ(0)
}

.s1 {
    width: 220px;
    height: 220px;
    background: linear-gradient(90deg, #ffdfec, #ffd8f0);
    left: -40px;
    top: -60px;
    animation: float 8s ease-in-out infinite
}

.s2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(90deg, #e7f8ff, #dcefff);
    right: -50px;
    top: 20px;
    animation: float 10s ease-in-out infinite
}

.s3 {
    width: 140px;
    height: 140px;
    background: linear-gradient(90deg, #fff6e7, #fff0d6);
    left: 30%;
    bottom: -40px;
    animation: float 9s ease-in-out infinite
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }

    100% {
        transform: translateY(0)
    }
}


.section-title {
    margin: 28px 0 25px;
    font-weight: 600;
    color: #fb5b5b;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}


.card {
    perspective: 1000px;
    /* cursor: pointer; */
    border-radius: 50px;
}

.lower-cards-flap {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; */
    margin-top: 2rem;
}


.lower-card {
    perspective: 1000px;
    /* cursor: pointer; */
    /* margin-bottom: 20px; */
}

.card-inner {
    position: relative;
    width: 100%;
    height: 220px;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    will-change: transform;
    border-radius: 50px;
}

.lower-card-inner {
    position: relative;
    width: 100%;
    height: 115px;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    will-change: transform;
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.lower-card.flipped .lower-card-inner {
    transform: rotateX(180deg);
}


.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50px;
    border: 1px solid #e6e6e6;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    transition: box-shadow .4s;
    /* background: var(--glass);    
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06); */
    /* background: #e0e0e0; */
    background-image: url(/static/card-bg2.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.6s ease, box-shadow 0.4s ease;

}

.lower-card-front,
.lower-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    backface-visibility: hidden;
    border-radius: 50px;
    border: 1px solid cyan;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    transition: box-shadow .4s;
    /* background: var(--glass);    
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06); */
    /* background: #e0e0e0; */
    background-image: url(/static/lower-card-bg-2.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.6s ease, box-shadow 0.4s ease;
    overflow: auto;

}


.card-front:hover {
    transform: rotate(1.5deg) scale(1.02);
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.12);
    border-radius: 50px;
}

.lower-card-front:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.12);
}


.card-front h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #111;
}

.lower-card-front h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #111;
}


.card-back {
    transform: rotateY(180deg);
    flex-direction: column;
    text-align: center;
}

.comment-btn {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.card.flipped .comment-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.comment-btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.lower-card-back {
    transform: rotateX(180deg);
    flex-direction: column;
    text-align: center;
}


.card-back .quote {
    margin-bottom: 8px;
    font-weight: 600
}

.lower-card-back .quote {
    margin-bottom: 8px;
    font-weight: 600
}

.card-back .by {
    font-size: .8rem;
    color: var(--muted)
}

.lower-card-back .by {
    font-size: .8rem;
    color: var(--muted)
}

.site-footer {
    margin-top: 28px;
    text-align: center;
    color: var(--muted);
    font-size: .9rem
}

.love-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b91c1c;
    /* deep red for love */
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
}

.punjabi-love-text {
    font-family: 'Baloo 2', cursive;
    /* Gurmukhi-friendly font */
    font-size: 1.2rem;
    color: #d05c5c;
    /* deep red for love letter style */
    text-align: center;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin: 0;
    padding: 10px;
    max-width: 100%;
    box-sizing: border-box;

}


.reveal-section {
    margin: 20px 0;
    /* cursor: pointer; */
}

.reveal-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding: 12px 16px;
    background: #ffe5f0;
    border-radius: 10px;
    transition: background 0.3s ease;
    background: linear-gradient(145deg, #f0f0f0, #cacaca);
    box-shadow: 20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
}

.click-hint {
    font-size: 0.7rem;
    color: #888;
    /* subtle gray */
    text-transform: lowercase;
    /* ensures it stays lowercase */
    margin-top: 10px;
    cursor: pointer;
    /* gives a clickable feel */
    display: block;
}

.reveal-heading:hover {
    background: #ffe0ec;
}

.reveal-content {
    background-image: url("/static/reveal-card.webp");
    max-height: 0;
    overflow: hidden;
    border-radius: 18px;
    transition: max-height 0.6s ease, box-shadow 0.4s ease;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* transition: transform 0.6s ease, box-shadow 0.4s ease; */
}

.reveal-content.open {
    border: 1px solid #d9f2ee;
    max-height: 1000px;
    /* or use large value like 1000px */
    /* padding: 10px 16px; */
    padding: 10px 50px 10px 50px;
    box-shadow: 20px 20px 60px #fbc4c4, -20px -20px 60px #fff;
}


.reveal-content p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    margin: 14px 0;
}

.gallery {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    border: 1px solid blanchedalmond;
    border-radius: 50px;
    padding: 10px;
    background-image: url(/static/main-card-bg2.webp);
    background-size: contain;
    /* background-position: inherit; */
    background-attachment: fixed;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff
}

.thumbnail:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* photos with songs */

.photo_song_gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* gap: 20px; */
    padding: 30px;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
    justify-items: center;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 70%;
    aspect-ratio: 2;
}

.photo-card:hover {
    transform: translateY(-6px);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.viewer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    z-index: 100;
    overflow: hidden;
}

.viewer.active {
    opacity: 1;
    pointer-events: all;
}

.cinema-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(35px) brightness(0.4) saturate(0.4);
    transform: scale(1.2);
    z-index: 0;
    transition: transform 1s ease;
}

.viewer.active .cinema-bg {
    transform: scale(1);
}

.glow-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
    mix-blend-mode: screen;
    opacity: 0.2;
    z-index: 1;
    transition: opacity 0.05s linear;
}

.viewer img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
    animation: fadeInZoom 1s ease forwards;
}

.viewer video {
    max-width: 80%;
    max-height: 80%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
    background: #000;
    display: none;
}

.comments-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 120;
    padding: 20px;
}

.comments-modal.open {
    opacity: 1;
    pointer-events: all;
}

.comments-dialog {
    position: relative;
    width: min(480px, 90vw);
    max-height: 80vh;
    background: #fff7fb;
    border-radius: 24px;
    padding: 28px 24px 32px;
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.comments-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.comments-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    position: relative;
}

.comment-text {
    margin: 0 0 6px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #763b55;
}

.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.comment-date {
    font-size: 0.75rem;
    color: #a1627a;
}

.comment-delete {
    border: none;
    background: rgba(249, 91, 91, 0.15);
    color: #c04668;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 1rem;
}

.comment-delete:hover {
    background: rgba(249, 91, 91, 0.3);
    transform: scale(1.05);
}

.comment-delete:focus-visible {
    outline: 2px solid rgba(249, 91, 91, 0.6);
    outline-offset: 2px;
}

.comment-status {
    min-height: 18px;
    font-size: 0.85rem;
    color: #a1627a;
}

.comment-form {
    display: grid;
    gap: 10px;
}

.comment-form textarea {
    resize: vertical;
    min-height: 90px;
    border-radius: 16px;
    border: 1px solid rgba(135, 205, 221, 0.4);
    padding: 12px 14px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.95);
}

.comment-form input[type="password"] {
    border-radius: 14px;
    border: 1px solid rgba(135, 205, 221, 0.4);
    padding: 10px 14px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.95);
}

.comment-submit {
    background: linear-gradient(145deg, #f973a8, #fb5b5b);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(249, 115, 168, 0.35);
}

.comment-hint {
    font-size: 0.8rem;
    color: #9f6a80;
    margin: 0;
    text-align: center;
}

.comment-loading,
.comment-error,
.comment-empty {
    text-align: center;
    font-size: 0.9rem;
    color: #9f6a80;
    margin: 20px 0;
}

.close-comments {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    color: #9f6a80;
}

.close-comments:hover {
    color: #c04668;
    transform: rotate(90deg);
}

/* Login Page Styles */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    background-image: url("/static/main-card-bg.webp");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.login-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    z-index: 10;
}

.login-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.15);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease-out;
}

.login-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #d05c5c;
    margin: 0 0 10px;
}

.login-subtext {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 30px;
    font-style: italic;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: #f973a8;
    box-shadow: 0 0 0 4px rgba(249, 115, 168, 0.1);
}

.login-btn {
    background: linear-gradient(145deg, #f973a8, #fb5b5b);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 168, 0.4);
}

.login-error {
    background: #fee2e2;
    color: #b91c1c;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.heart {
    position: absolute;
    font-size: 2rem;
    animation: floatHeart 6s ease-in-out infinite;
    opacity: 0;
}

.heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.heart:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.heart:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.heart:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
}

.heart:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
}

@keyframes floatHeart {
    0% {
        transform: translateY(100px) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes fadeInZoom {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 40px;
    color: whitesmoke;
    cursor: pointer;
    z-index: 4;
    transition: transform 0.2s ease;
}

.close-btn:hover {
    transform: scale(1.2);
}

/* 🌸 Falling Flowers Layer */
.flowers-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.flower {
    position: absolute;
    top: -40px;
    font-size: 28px;
    opacity: 0.9;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.4rem;
    }

    .viewer img {
        max-width: 90%;
        max-height: 75%;
    }

    .viewer video {
        max-width: 90%;
        max-height: 75%;
    }

    .comments-dialog {
        width: min(420px, 94vw);
        padding: 24px 18px 28px;
    }
}

/* Samsung S24 (and similar ~412-430px width) */
@media (max-width: 440px) {
    .page {
        margin: 20px;
        padding: 14px;
    }

    .heading {
        font-size: 1.45rem;
    }

    .lead,
    .reveal-content p,
    .punjabi-love-text {
        font-size: 1rem;
        padding: 0;
    }

    .card {
        width: 95%;
        margin: 12px auto;
    }

    .lower-card-inner {
        height: 85px;
    }

}


/* Default small device responsiveness */
@media (max-width: 600px) {
    .page {
        margin: 22px;
        padding: 16px;
    }

    .heading {
        font-size: 1.6rem;
    }

}

/* iPhone 13 (and similar ~390px width) */
@media (max-width: 420px) {
    .page {
        margin: 18px;
        padding: 14px;
    }

    .heading {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .hero {
        padding: 32px 16px;
        background-position: center;
    }

    .card {
        width: 100%;
        /* margin-bottom: 16px; */
    }
}


/*  */