:root {
    --bg: #0c0612;
    --bg-soft: #170920;
    --violet: #2b103f;
    --violet-2: #452064;
    --panel: rgba(31, 12, 45, 0.84);
    --panel-strong: rgba(48, 18, 69, 0.94);
    --line: rgba(255, 214, 255, 0.16);
    --line-bright: rgba(255, 163, 229, 0.44);
    --text: #fff7ff;
    --muted: #d9b9e8;
    --rose: #ff84cf;
    --rose-strong: #ff4fb8;
    --lilac: #cf9cff;
    --gold: #ffe2a7;
    --mint: #b9ffe9;
    --danger: #ff7e98;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --speed: 220ms;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 132, 207, 0.2) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 16%, rgba(255, 226, 167, 0.2) 0 1px, transparent 2px),
        radial-gradient(circle at 34% 68%, rgba(207, 156, 255, 0.16) 0 1px, transparent 2px),
        linear-gradient(145deg, #08040d 0%, #15061f 38%, #2c1542 100%);
    background-color: var(--bg);
    background-size: 170px 170px, 230px 230px, 310px 310px, auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

::selection {
    color: #220a31;
    background: var(--rose);
}

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

button,
input,
textarea {
    font: inherit;
}

button,
label,
.topnav a,
.tiny-note,
.status-text,
.playlist-title-row,
.drag-hint,
.user-chip,
.upload-drop,
.soft-alert,
.login-copy,
.composer textarea::placeholder,
.music-search input::placeholder {
    text-transform: lowercase;
}

.starlight-body {
    overflow-x: hidden;
}

.star-dust {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.star-dust::before,
.star-dust::after {
    content: "✦ ✧ ✶ ✧ ✦";
    position: absolute;
    color: rgba(255, 226, 167, 0.2);
    font-size: 18px;
    word-spacing: 62px;
    animation: driftStars 18s linear infinite;
}

.star-dust::before {
    top: 12%;
    left: -10%;
}

.star-dust::after {
    right: -16%;
    bottom: 18%;
    color: rgba(255, 132, 207, 0.16);
    animation-duration: 24s;
    animation-direction: reverse;
}

@keyframes driftStars {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(120px, 40px, 0);
    }
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    width: min(1240px, calc(100% - 32px));
    margin: 16px auto 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(14, 5, 22, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--text);
    font-family: "Pacifico", "Dancing Script", cursive;
    font-size: 25px;
    white-space: nowrap;
}

.mini-star {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 226, 167, 0.45);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(255, 132, 207, 0.1);
    box-shadow: 0 0 22px rgba(255, 132, 207, 0.32);
}

.topnav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.topnav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 7px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: color var(--speed), background var(--speed), transform var(--speed);
}

.topnav a:hover,
.topnav a:focus-visible {
    color: var(--text);
    background: rgba(255, 132, 207, 0.16);
    transform: translateY(-1px);
}

.top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 170px;
    min-height: 36px;
    padding: 0 12px;
    overflow: hidden;
    border: 1px solid rgba(207, 156, 255, 0.35);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(207, 156, 255, 0.1);
}

.icon-btn,
.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed), background var(--speed), color var(--speed);
}

.icon-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.icon-btn:hover,
.icon-btn:focus-visible,
.primary-btn:hover,
.primary-btn:focus-visible,
.ghost-btn:hover,
.ghost-btn:focus-visible {
    transform: translateY(-1px);
}

.primary-btn {
    min-height: 44px;
    padding: 0 18px;
    color: #230d2c;
    background: linear-gradient(135deg, var(--gold), var(--rose) 52%, var(--lilac));
    box-shadow: 0 14px 28px rgba(255, 79, 184, 0.28);
}

.ghost-btn {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 132, 207, 0.36);
    color: var(--text);
    background: rgba(255, 132, 207, 0.1);
}

.icon-btn svg,
.primary-btn svg,
.ghost-btn svg,
.section-head > svg,
.input-shell svg,
.upload-drop svg,
.drag-hint svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.app-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 32px));
    margin: 22px auto 70px;
}

.welcome-strip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 162px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 214, 255, 0.18);
    border-radius: var(--radius);
    background:
        linear-gradient(115deg, rgba(255, 132, 207, 0.16), rgba(207, 156, 255, 0.09) 38%, rgba(12, 6, 18, 0.38)),
        rgba(28, 10, 42, 0.84);
    box-shadow: var(--shadow);
}

.welcome-strip::after {
    content: "♡";
    position: absolute;
    right: 38%;
    bottom: 14px;
    color: rgba(255, 226, 167, 0.18);
    font-family: "Dancing Script", cursive;
    font-size: 82px;
    transform: rotate(-10deg);
}

.welcome-strip h1,
.login-card h1 {
    margin: 0;
    color: var(--text);
    font-family: "Pacifico", "Dancing Script", cursive;
    font-size: 54px;
    line-height: 1.1;
    text-shadow: 0 0 28px rgba(255, 132, 207, 0.32);
}

.welcome-strip p,
.login-copy {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
    font-weight: 600;
}

.script-cloud {
    flex: 0 0 auto;
    color: rgba(255, 247, 255, 0.92);
    font-family: "Dancing Script", cursive;
    font-size: 84px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 34px rgba(255, 132, 207, 0.42);
    transform: rotate(-4deg);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: 18px;
    margin-top: 18px;
    align-items: start;
}

.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.wall-panel,
.music-panel,
.gallery-panel {
    padding: 22px;
}

.gallery-panel {
    margin-top: 18px;
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 0;
    font-family: "Dancing Script", cursive;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.music-head h2 {
    font-family: "Pacifico", "Dancing Script", cursive;
    font-size: 50px;
}

.section-head > svg {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 1px solid rgba(255, 132, 207, 0.3);
    border-radius: var(--radius);
    color: var(--rose);
    background: rgba(255, 132, 207, 0.08);
}

.tiny-note {
    margin: 0 0 7px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.composer {
    display: grid;
    gap: 12px;
}

.composer textarea {
    width: 100%;
    min-height: 152px;
    resize: vertical;
    padding: 17px;
    border: 1px solid rgba(255, 214, 255, 0.18);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(8, 4, 13, 0.42);
    outline: none;
    transition: border-color var(--speed), box-shadow var(--speed), background var(--speed);
}

.composer textarea:focus,
.input-shell:focus-within {
    border-color: var(--line-bright);
    box-shadow: 0 0 0 4px rgba(255, 132, 207, 0.12);
    background: rgba(18, 7, 28, 0.7);
}

.composer-actions,
.gallery-uploader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.status-text {
    min-height: 20px;
    color: var(--mint);
    font-size: 13px;
    font-weight: 700;
}

.status-text.is-error {
    color: var(--danger);
}

.post-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.post-card {
    position: relative;
    padding: 17px;
    overflow: hidden;
    border: 1px solid rgba(255, 214, 255, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 132, 207, 0.08), transparent 55%),
        rgba(255, 255, 255, 0.045);
    animation: riseIn 360ms ease both;
}

.post-card::after {
    content: "✧";
    position: absolute;
    right: 16px;
    top: 12px;
    color: rgba(255, 226, 167, 0.42);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.post-meta strong {
    color: var(--rose);
}

.post-text {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    white-space: normal;
    word-break: break-word;
}

.empty-state {
    display: grid;
    place-items: center;
    min-height: 130px;
    padding: 22px;
    border: 1px dashed rgba(255, 132, 207, 0.28);
    border-radius: var(--radius);
    color: var(--muted);
    font-weight: 700;
    text-align: center;
    background: rgba(255, 255, 255, 0.035);
}

.input-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(255, 214, 255, 0.18);
    border-radius: var(--radius);
    color: var(--muted);
    background: rgba(8, 4, 13, 0.42);
    transition: border-color var(--speed), box-shadow var(--speed), background var(--speed);
}

.input-shell input {
    flex: 1;
    min-width: 0;
    border: 0;
    color: var(--text);
    background: transparent;
    outline: none;
}

.music-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.music-results,
.playlist {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.music-card,
.playlist-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 9px;
    border: 1px solid rgba(255, 214, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    animation: riseIn 320ms ease both;
}

.music-card img,
.playlist-card img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border: 1px solid rgba(255, 214, 255, 0.18);
    border-radius: var(--radius);
    background: var(--violet);
}

.track-title {
    margin: 0;
    overflow: hidden;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-artist,
.track-album {
    margin: 2px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-actions {
    display: flex;
    gap: 6px;
}

.track-actions .icon-btn {
    width: 34px;
    height: 34px;
}

.track-actions .icon-btn.is-playing {
    border-color: rgba(255, 226, 167, 0.72);
    color: #230d2c;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    box-shadow: 0 0 22px rgba(255, 132, 207, 0.34);
}

.playlist-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.gallery-uploader {
    justify-content: flex-start;
}

.upload-drop {
    display: inline-grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    min-height: 58px;
    padding: 10px 16px;
    border: 1px dashed rgba(255, 132, 207, 0.45);
    border-radius: var(--radius);
    color: var(--text);
    cursor: pointer;
    background: rgba(255, 132, 207, 0.08);
    transition: border-color var(--speed), background var(--speed), transform var(--speed);
}

.upload-drop:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 226, 167, 0.7);
    background: rgba(255, 132, 207, 0.14);
}

.upload-drop svg {
    grid-row: 1 / 3;
    color: var(--rose);
}

.upload-drop span {
    font-weight: 900;
}

.upload-drop small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

#photos {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.drag-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.masonry-grid {
    column-count: 4;
    column-gap: 14px;
}

.masonry-grid.is-empty {
    column-count: 1;
}

.gallery-card {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 214, 255, 0.14);
    border-radius: var(--radius);
    cursor: grab;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
    break-inside: avoid;
    transform: translateZ(0);
    transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}

.gallery-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 132, 207, 0.48);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
}

.gallery-card:active {
    cursor: grabbing;
}

.gallery-card img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding: 38px 12px 12px;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(to top, rgba(8, 4, 13, 0.82), transparent);
    opacity: 0;
    transition: opacity var(--speed);
}

.gallery-card:hover .gallery-overlay,
.gallery-card:focus-within .gallery-overlay {
    opacity: 1;
}

.sortable-ghost {
    opacity: 0.32;
}

.sortable-chosen {
    border-color: var(--gold);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(7, 3, 12, 0.84);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: min(1080px, 94vw);
    max-height: 86vh;
    border: 1px solid rgba(255, 214, 255, 0.24);
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62);
    transform: scale(0.96);
    transition: transform 260ms ease;
}

.lightbox.is-open img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
}

.intro-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(8, 4, 13, 0.78);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.intro-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.intro-card,
.login-card {
    position: relative;
    width: min(440px, 100%);
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 214, 255, 0.2);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 132, 207, 0.18), rgba(207, 156, 255, 0.1) 55%, rgba(255, 226, 167, 0.08)),
        rgba(24, 8, 36, 0.92);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.58);
}

.intro-card {
    display: flex;
    flex-direction: column;
    width: min(720px, 100%);
    max-height: min(86vh, 760px);
    overflow: hidden;
    text-align: center;
    transform: translateY(10px) scale(0.98);
    transition: transform 260ms ease;
}

.intro-modal.is-open .intro-card {
    transform: translateY(0) scale(1);
}

.intro-card h2 {
    margin: 0 0 14px;
    color: var(--text);
    font-family: "Pacifico", "Dancing Script", cursive;
    font-size: 42px;
}

.intro-card p {
    max-height: min(52vh, 470px);
    margin: 0 0 22px;
    padding-right: 10px;
    overflow-y: auto;
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
    white-space: pre-line;
}

.intro-card p::-webkit-scrollbar {
    width: 8px;
}

.intro-card p::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.intro-card p::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 132, 207, 0.58);
}

.brand-bow {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 46px;
    height: 28px;
}

.brand-bow::before,
.brand-bow::after {
    content: "";
    position: absolute;
    top: 3px;
    width: 24px;
    height: 22px;
    border: 1px solid rgba(255, 226, 167, 0.55);
    background: linear-gradient(135deg, var(--rose), var(--lilac));
    box-shadow: 0 0 18px rgba(255, 132, 207, 0.4);
}

.brand-bow::before {
    left: 0;
    border-radius: 70% 18% 70% 24%;
    transform: rotate(18deg);
}

.brand-bow::after {
    right: 0;
    border-radius: 18% 70% 24% 70%;
    transform: rotate(-18deg);
}

.login-stage {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 24px;
}

.login-card {
    animation: riseIn 420ms ease both;
}

.login-card h1 {
    margin-top: 6px;
    font-size: 48px;
}

.login-form {
    display: grid;
    gap: 11px;
    margin-top: 24px;
}

.login-form label {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.soft-alert {
    margin: 18px 0 0;
    border: 1px solid rgba(255, 126, 152, 0.44);
    color: #ffe3ea;
    background: rgba(255, 126, 152, 0.12);
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1040px) {
    .topbar {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .topnav,
    .top-actions {
        justify-content: flex-start;
    }

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

    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 720px) {
    .topbar,
    .app-shell {
        width: min(100% - 20px, 1240px);
    }

    .topnav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .topnav a {
        padding: 0 8px;
    }

    .wordmark {
        font-size: 22px;
    }

    .welcome-strip {
        display: block;
        min-height: 0;
        padding: 24px;
    }

    .welcome-strip h1,
    .login-card h1 {
        font-size: 40px;
    }

    .welcome-strip p,
    .login-copy {
        font-size: 15px;
    }

    .script-cloud {
        margin-top: 16px;
        font-size: 62px;
    }

    .wall-panel,
    .music-panel,
    .gallery-panel,
    .intro-card,
    .login-card {
        padding: 18px;
    }

    .music-search {
        grid-template-columns: 1fr;
    }

    .gallery-uploader {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .upload-drop,
    .gallery-uploader .primary-btn {
        width: 100%;
    }

    .masonry-grid {
        column-count: 2;
        column-gap: 10px;
    }

    .gallery-card {
        margin-bottom: 10px;
    }

    .music-card,
    .playlist-card {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .music-card img,
    .playlist-card img {
        width: 52px;
        height: 52px;
    }

    .track-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 470px) {
    .top-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .user-chip {
        max-width: none;
    }

    .welcome-strip h1,
    .login-card h1 {
        font-size: 34px;
    }

    .section-head h2 {
        font-size: 34px;
    }

    .music-head h2 {
        font-size: 42px;
    }

    .masonry-grid {
        column-count: 1;
    }
}
