/*
Theme Name: Maisonne
Theme URI: https://example.com/maisonne
Author: Custom Theme
Author URI: https://example.com
Description: Maisonne is a fast, clean, and elegant WordPress theme built for home decor, interior design, and lifestyle bloggers. Features a warm neutral palette, magazine-style layout, well-organized categories, featured hero, and a minimalist aesthetic inspired by top home decor publications. Fully responsive, SEO-friendly, and optimized for performance.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maisonne
Tags: blog, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, two-columns, right-sidebar, full-width-template, editor-style
*/

/* ==========================================================================
   Root / Design tokens
   ========================================================================== */
:root {
    --color-bg: #fbfaf7;
    --color-surface: #ffffff;
    --color-text: #2a2623;
    --color-text-soft: #6b6560;
    --color-muted: #9a928a;
    --color-line: #ece7df;
    --color-accent: #a37b5c;       /* warm terracotta/clay */
    --color-accent-dark: #7a5a42;
    --color-accent-soft: #f2ebe1;
    --color-sage: #8a9a7a;

    --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --container: 1240px;
    --container-narrow: 820px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 6px 24px rgba(0,0,0,.06);

    --transition: 220ms ease;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
p { margin: 0 0 1.25rem; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin: 0 0 .75rem;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

.eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--color-text);
    color: #fff;
    border: 1px solid var(--color-text);
    border-radius: var(--radius-sm);
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
}
.btn:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.btn-outline { background: transparent; color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: #fff; }

/* Skip link (a11y) */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--color-text); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
    background: var(--color-text);
    color: #e8e3dc;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    max-width: var(--container);
    margin: 0 auto;
}
.topbar a { color: #e8e3dc; }
.topbar a:hover { color: #fff; }
.topbar-social { display: flex; gap: 18px; }
.topbar-tagline { opacity: .75; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 24px;
    max-width: var(--container);
    margin: 0 auto;
    gap: 24px;
}
.site-branding { text-align: center; grid-column: 2; }
.site-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: .04em;
}
.site-title a { color: var(--color-text); }
.site-description {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: 4px;
}
.header-left { display: flex; align-items: center; }
.header-right { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.header-search, .menu-toggle {
    background: none; border: none; padding: 8px; cursor: pointer; color: var(--color-text);
}
.header-search:hover, .menu-toggle:hover { color: var(--color-accent); }

/* Primary navigation */
.primary-nav { display: flex; }
.primary-nav ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 28px;
}
.primary-nav a {
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-text);
    padding: 6px 0;
    position: relative;
}
.primary-nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
    background: var(--color-accent); transform: scaleX(0); transform-origin: right;
    transition: transform var(--transition);
}
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.primary-nav li { position: relative; }
.primary-nav .sub-menu {
    position: absolute; top: 100%; left: 0;
    background: #fff; border: 1px solid var(--color-line); padding: 12px 0;
    min-width: 200px; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all var(--transition);
    display: block;
}
.primary-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu li { display: block; }
.primary-nav .sub-menu a { display: block; padding: 8px 18px; text-transform: none; letter-spacing: .02em; font-size: .88rem; }

.menu-toggle { display: none; }

/* Mobile menu */
.mobile-nav {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
    padding: 16px 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li { border-bottom: 1px solid var(--color-line); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
    display: block; padding: 14px 0;
    font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ==========================================================================
   Hero / Featured
   ========================================================================== */
.hero-featured {
    padding: 48px 0 64px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.hero-main {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-accent-soft);
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.hero-main:hover img { transform: scale(1.04); }
.hero-main .hero-content {
    position: absolute; inset: auto 0 0 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}
.hero-main .hero-content .eyebrow { color: #f2d9c4; }
.hero-main h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-top: 8px; }
.hero-main .hero-meta { color: rgba(255,255,255,.85); font-size: .82rem; margin-top: 8px; }

.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 32px; }
.hero-side-item { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; align-items: center; }
.hero-side-item .thumb {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-accent-soft);
}
.hero-side-item .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.hero-side-item:hover .thumb img { transform: scale(1.06); }
.hero-side-item h3 { font-size: 1.2rem; margin: 6px 0; }
.hero-side-item .hero-meta { font-size: .78rem; color: var(--color-muted); }

/* ==========================================================================
   Section headers
   ========================================================================== */
.section { padding: 64px 0; }
.section-alt { background: #f5f1ea; }
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0; }
.section-header .divider {
    width: 42px; height: 1px; background: var(--color-accent); margin: 16px auto;
}
.section-header p { color: var(--color-text-soft); max-width: 560px; margin: 0 auto; }

/* ==========================================================================
   Category tiles
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.category-tile {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-tile::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.6) 100%);
    z-index: 1;
    transition: background var(--transition);
}
.category-tile:hover::before { background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.75) 100%); }
.category-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.category-tile:hover img { transform: scale(1.06); }
.category-tile .label {
    position: relative; z-index: 2;
    color: #fff; text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .04em;
}
.category-tile .count {
    display: block;
    font-family: var(--font-body);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: .85;
}

/* ==========================================================================
   Post grid
   ========================================================================== */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px 32px;
}
.post-card {
    background: transparent;
}
.post-card .thumb {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--color-accent-soft);
}
.post-card .thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 600ms ease;
}
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .post-category {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 8px;
}
.post-card h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 10px;
}
.post-card h3 a:hover { color: var(--color-accent); }
.post-card .post-excerpt {
    color: var(--color-text-soft);
    font-size: .92rem;
    margin-bottom: 12px;
}
.post-card .post-meta {
    font-size: .78rem;
    color: var(--color-muted);
    letter-spacing: .04em;
}
.post-card .post-meta span + span::before {
    content: "·"; margin: 0 8px; color: var(--color-muted);
}

/* Archive header */
.archive-header {
    text-align: center;
    padding: 64px 24px 48px;
    background: var(--color-accent-soft);
    margin-bottom: 48px;
}
.archive-header h1 { font-size: clamp(2rem, 4vw, 3rem); }
.archive-header p { color: var(--color-text-soft); max-width: 600px; margin: 12px auto 0; }

/* ==========================================================================
   Single post
   ========================================================================== */
.single-post-header {
    text-align: center;
    padding: 64px 24px 40px;
    max-width: 820px;
    margin: 0 auto;
}
.single-post-header .post-category {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 16px;
}
.single-post-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}
.single-post-header .post-meta {
    color: var(--color-muted);
    font-size: .85rem;
    letter-spacing: .04em;
}
.single-post-header .post-meta span + span::before {
    content: "·"; margin: 0 10px;
}
.single-post-hero {
    max-width: 1100px; margin: 0 auto 48px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-md);
}
.single-post-hero img { width: 100%; height: 100%; object-fit: cover; }

.single-post-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: #3a3532;
}
.single-post-content h2 { margin-top: 2.2em; margin-bottom: .6em; }
.single-post-content h3 { margin-top: 1.8em; }
.single-post-content img { border-radius: var(--radius-md); margin: 1.5em 0; }
.single-post-content blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 8px 0 8px 28px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-text);
    margin: 2em 0;
}
.single-post-content ul, .single-post-content ol { padding-left: 1.2em; margin-bottom: 1.5em; }
.single-post-content li { margin-bottom: .5em; }
.single-post-content a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }
.single-post-content a:hover { color: var(--color-accent-dark); }
.single-post-content pre { background: #f3eee6; padding: 18px; border-radius: var(--radius-md); overflow-x: auto; }
.single-post-content code { background: #f3eee6; padding: 2px 6px; border-radius: 3px; font-size: .92em; }

.post-tags {
    max-width: var(--container-narrow);
    margin: 48px auto 0;
    padding: 0 24px;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.post-tags a {
    padding: 6px 14px;
    background: var(--color-accent-soft);
    border-radius: 999px;
    font-size: .78rem;
    letter-spacing: .04em;
    color: var(--color-text);
}
.post-tags a:hover { background: var(--color-accent); color: #fff; }

/* Author box */
.author-box {
    max-width: var(--container-narrow);
    margin: 48px auto 0;
    padding: 32px;
    background: #f5f1ea;
    border-radius: var(--radius-md);
    display: flex; gap: 24px; align-items: center;
}
.author-box .avatar { flex: 0 0 80px; }
.author-box .avatar img { border-radius: 50%; }
.author-box h4 { margin-bottom: 6px; }
.author-box p { margin: 0; color: var(--color-text-soft); font-size: .92rem; }

/* Related posts */
.related-posts {
    margin-top: 80px;
    padding: 64px 0;
    background: #f5f1ea;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
    margin: 64px auto 0;
    text-align: center;
}
.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 14px; margin: 0 4px;
    border: 1px solid var(--color-line);
    background: #fff;
    color: var(--color-text);
    font-size: .88rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
    background: var(--color-text); color: #fff; border-color: var(--color-text);
}

/* ==========================================================================
   Sidebar widgets
   ========================================================================== */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.sidebar { font-size: .92rem; }
.widget { margin-bottom: 48px; }
.widget-title {
    font-family: var(--font-body);
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line);
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--color-line); }
.widget li:last-child { border-bottom: none; }
.widget a { color: var(--color-text); }
.widget a:hover { color: var(--color-accent); }
.widget_search input[type="search"] {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--color-line);
    background: #fff;
    font-family: inherit;
    border-radius: var(--radius-sm);
}
.widget_search input[type="search"]:focus {
    outline: none; border-color: var(--color-accent);
}

/* Newsletter widget */
.newsletter-widget {
    background: var(--color-accent-soft);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
}
.newsletter-widget h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.newsletter-widget p {
    font-size: .88rem;
    color: var(--color-text-soft);
    margin-bottom: 18px;
}
.newsletter-widget input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-family: inherit;
}
.newsletter-widget button { width: 100%; }

/* ==========================================================================
   Newsletter CTA (full width)
   ========================================================================== */
.newsletter-cta {
    background: var(--color-text);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}
.newsletter-cta h2 { color: #fff; font-size: 2rem; }
.newsletter-cta p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 28px; }
.newsletter-cta form { max-width: 480px; margin: 0 auto; display: flex; gap: 8px; }
.newsletter-cta input[type="email"] {
    flex: 1; padding: 14px 18px; border: none; border-radius: var(--radius-sm);
    font-family: inherit; font-size: .95rem;
}
.newsletter-cta .btn { background: var(--color-accent); border-color: var(--color-accent); }
.newsletter-cta .btn:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #1f1c1a;
    color: #cfc9c1;
    padding: 72px 0 0;
    font-size: .92rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px 56px;
}
.footer-brand .site-title { color: #fff; font-size: 1.8rem; }
.footer-brand p { color: #9c958c; margin-top: 12px; }
.footer-widget h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-widget ul { list-style: none; margin: 0; padding: 0; }
.footer-widget li { padding: 6px 0; }
.footer-widget a { color: #cfc9c1; }
.footer-widget a:hover { color: var(--color-accent); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid #3a3532;
    border-radius: 50%;
    color: #cfc9c1;
}
.footer-social a:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.footer-bottom {
    border-top: 1px solid #2a2623;
    padding: 24px;
    text-align: center;
    color: #807870;
    font-size: .82rem;
    letter-spacing: .04em;
}

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area {
    max-width: var(--container-narrow);
    margin: 64px auto 0;
    padding: 0 24px;
}
.comments-title { font-size: 1.6rem; margin-bottom: 32px; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-body { padding: 20px 0; border-bottom: 1px solid var(--color-line); }
.comment-author { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.comment-author img { border-radius: 50%; }
.comment-form input, .comment-form textarea {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--color-line);
    background: #fff;
    font-family: inherit; font-size: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.comment-form label { display: block; font-size: .85rem; margin-bottom: 6px; color: var(--color-text-soft); }

/* ==========================================================================
   404 / Search / Empty
   ========================================================================== */
.empty-state {
    text-align: center; padding: 96px 24px;
}
.empty-state h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--color-accent); }
.empty-state p { color: var(--color-text-soft); max-width: 480px; margin: 12px auto 28px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
    .content-with-sidebar { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
    .site-branding { grid-column: 2; }
    .primary-nav { display: none; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; background: none; border: none; padding: 8px; cursor: pointer; }
    .site-title { font-size: 1.5rem; }
    .topbar-tagline { display: none; }
    .section { padding: 48px 0; }
    .newsletter-cta form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .author-box { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero-side-item { grid-template-columns: 90px 1fr; }
    .post-grid { gap: 32px 20px; }
}

/* WordPress default classes */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.wp-caption-text { font-size: .85rem; color: var(--color-muted); text-align: center; margin-top: 8px; }
.sticky { position: relative; }
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
    height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute !important; word-wrap: normal !important;
}
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.gallery-item img { border-radius: var(--radius-sm); }
