/*
Theme Name: Aurelia
Theme URI: https://example.com/aurelia
Author: Aurelia
Author URI: https://example.com
Description: A modern, professional lifestyle blog theme with light/dark mode, interactive filtering & search, per-article reading progress, and an editorial serif/sans pairing. Converted from the Aurelia static site.
Version: 1.1.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: aurelia
Tags: blog, lifestyle, dark-mode, custom-menu, featured-images, translation-ready, two-columns, right-sidebar
*/

/* ============================================================
   Aurelia — Lifestyle Blog
   Design tokens, light/dark themes, layout & components
   ============================================================ */

:root {
  /* Brand */
  --accent: #c2703d;
  --accent-soft: #e8a87c;
  --accent-ink: #9a5528;

  /* Light theme (default) */
  --bg: #faf7f2;
  --bg-elev: #ffffff;
  --bg-subtle: #f2ede4;
  --text: #211d1a;
  --text-soft: #5c554e;
  --text-muted: #8a827a;
  --border: #e6ded2;
  --shadow: 0 10px 40px -12px rgba(60, 45, 30, 0.18);
  --shadow-sm: 0 4px 16px -6px rgba(60, 45, 30, 0.14);
  --ring: rgba(194, 112, 61, 0.35);

  /* Type */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Layout */
  --max: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --accent: #e39a63;
  --accent-soft: #b9713f;
  --accent-ink: #f0b184;

  --bg: #16130f;
  --bg-elev: #201b16;
  --bg-subtle: #26201a;
  --text: #f3ede4;
  --text-soft: #c3b8aa;
  --text-muted: #938a7d;
  --border: #362e26;
  --shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 6px 20px -8px rgba(0, 0, 0, 0.5);
  --ring: rgba(227, 154, 99, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

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

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }

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

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.8rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 1px solid transparent; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px -8px var(--accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px var(--accent); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  z-index: 100; transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

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

.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 700; }
.brand-mark { color: var(--accent); font-size: 1.25rem; }
.brand-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; letter-spacing: -0.02em; }

.nav { display: flex; gap: 0.4rem; }
.nav-link {
  position: relative; padding: 0.5rem 0.9rem; border-radius: 999px;
  font-weight: 500; font-size: 0.95rem; color: var(--text-soft);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--bg-subtle); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.icon-btn {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--border); background: var(--bg-elev);
  color: var(--text); cursor: pointer; transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* Theme toggle icon swap */
.theme-toggle { position: relative; overflow: hidden; }
.theme-toggle svg { position: absolute; transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s; }
[data-theme="light"] .icon-moon { transform: translateY(150%) rotate(-90deg); opacity: 0; }
[data-theme="light"] .icon-sun { transform: none; opacity: 1; }
[data-theme="dark"] .icon-sun { transform: translateY(-150%) rotate(90deg); opacity: 0; }
[data-theme="dark"] .icon-moon { transform: none; opacity: 1; }

/* Menu toggle (mobile) */
.menu-toggle { display: none; flex-direction: column; gap: 4px; }
.menu-toggle span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 82% 12%, color-mix(in srgb, var(--accent-soft) 32%, transparent), transparent 70%),
    radial-gradient(50% 45% at 10% 90%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
}
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); margin-bottom: 1.2rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text-soft); max-width: 46ch; margin-bottom: 2rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero-stats { display: flex; gap: 2.2rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-serif); font-size: 1.7rem; }
.hero-stats span { font-size: 0.85rem; color: var(--text-muted); }

.hero-visual { display: flex; justify-content: center; }
.hero-card {
  position: relative; background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; max-width: 340px; box-shadow: var(--shadow);
  transform: rotate(1.5deg); transition: transform var(--transition);
}
.hero-card:hover { transform: rotate(0deg) translateY(-4px); }
.hero-card-glow { position: absolute; inset: -1px; border-radius: var(--radius); background: linear-gradient(135deg, var(--accent-soft), transparent 60%); opacity: 0.18; z-index: 0; }
.hero-card > * { position: relative; }
.hero-card-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem; }
.hero-card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.hero-card p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.hero-card-meta { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head { margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-sub { color: var(--text-muted); margin-top: 0.5rem; }

/* ---------- Featured ---------- */
.featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.featured:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.featured-media { min-height: 340px; background: var(--bg-subtle) var(--img) center/cover no-repeat; }
.featured-body { padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.featured-body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0.8rem 0 0.9rem; }
.featured-body p { color: var(--text-soft); margin-bottom: 1.6rem; }

.chip { align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); background: color-mix(in srgb, var(--accent-soft) 30%, transparent); padding: 0.3rem 0.7rem; border-radius: 999px; }

.post-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.4rem; }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.85rem; }
.post-meta strong { display: block; font-size: 0.92rem; }
.post-meta span { font-size: 0.82rem; color: var(--text-muted); }

.read-more { align-self: flex-start; font-weight: 600; color: var(--accent); transition: gap var(--transition); }
.read-more:hover { text-decoration: underline; }

/* ---------- Toolbar (filters + search) ---------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 2.4rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter {
  padding: 0.5rem 1.1rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg-elev); color: var(--text-soft); font-weight: 500; font-size: 0.9rem;
  cursor: pointer; transition: all var(--transition);
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }

.search { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-elev); color: var(--text-muted); transition: border-color var(--transition), box-shadow var(--transition); }
.search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }
.search input { border: none; background: transparent; color: var(--text); font-family: inherit; font-size: 0.92rem; outline: none; width: 190px; }
.search input::placeholder { color: var(--text-muted); }

/* ---------- Post grid ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }

.card {
  display: flex; flex-direction: column; background: var(--bg-elev);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.card-link { display: flex; flex-direction: column; flex: 1; color: inherit; }
.card:hover .card-body h3 { color: var(--accent); }
.card-body h3 { transition: color var(--transition); }
.card-media { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.card-media .chip { position: absolute; top: 0.9rem; left: 0.9rem; backdrop-filter: blur(4px); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.card-body p { color: var(--text-soft); font-size: 0.92rem; flex: 1; margin-bottom: 1.1rem; }
.card-foot { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); }
.card-foot .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); display: inline-block; margin: 0 0.5rem; vertical-align: middle; }

.no-results { text-align: center; color: var(--text-muted); padding: 3rem 0; font-size: 1.05rem; }

/* ---------- Topics ---------- */
.topic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.topic {
  position: relative; padding: 1.6rem 1.4rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-elev); cursor: pointer;
  overflow: hidden; transition: transform var(--transition), border-color var(--transition);
  text-align: left; font-family: inherit; color: inherit; width: 100%;
}
.topic:hover { transform: translateY(-4px); border-color: var(--accent); }
.topic::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 90px; height: 90px; border-radius: 50%; background: color-mix(in srgb, var(--accent-soft) 26%, transparent); transition: transform var(--transition); }
.topic:hover::after { transform: scale(1.5); }
.topic-emoji { font-size: 1.6rem; }
.topic h3 { font-size: 1.15rem; margin: 0.6rem 0 0.2rem; position: relative; }
.topic span { font-size: 0.82rem; color: var(--text-muted); position: relative; }

/* ---------- Newsletter ---------- */
.newsletter-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  padding: clamp(2rem, 4vw, 3.4rem); border-radius: var(--radius);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, var(--bg-elev)), var(--bg-elev));
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.newsletter-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.6rem; }
.newsletter-copy p { color: var(--text-soft); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 0.85rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  font-family: inherit; font-size: 0.95rem; outline: none; transition: border-color var(--transition), box-shadow var(--transition);
}
.newsletter-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }
.form-msg { flex-basis: 100%; font-size: 0.88rem; min-height: 1.2em; color: var(--accent-ink); }
.form-msg.error { color: #d0402c; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-elev); padding-top: 3rem; margin-top: 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-name { margin-left: 0.4rem; }
.footer-brand p { color: var(--text-muted); margin-top: 0.6rem; font-size: 0.92rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-links h4 { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.9rem; }
.footer-links a { display: block; color: var(--text-soft); font-size: 0.92rem; padding: 0.25rem 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 0; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); }
.to-top { background: none; border: none; color: var(--text-soft); font-weight: 600; cursor: pointer; font-family: inherit; transition: color var(--transition); }
.to-top:hover { color: var(--accent); }

/* ---------- Article (post page) ---------- */
.article-loading { padding: 6rem 0; text-align: center; color: var(--text-muted); }

.article-head { padding: clamp(2.2rem, 5vw, 3.5rem) 0 1.5rem; }
.article-head-inner { max-width: 760px; }
.back-link { display: inline-block; color: var(--text-muted); font-weight: 500; font-size: 0.9rem; margin-bottom: 1.4rem; transition: color var(--transition); }
.back-link:hover { color: var(--accent); }
.article-head h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0.9rem 0 1rem; }
.article-excerpt { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-soft); margin-bottom: 1.8rem; }

.article-hero { max-width: 900px; margin: 0 auto; aspect-ratio: 16/8; border-radius: var(--radius); background: var(--bg-subtle) center/cover no-repeat; box-shadow: var(--shadow-sm); }

.article-body { max-width: 720px; margin: clamp(2rem, 5vw, 3.2rem) auto 0; font-size: 1.12rem; line-height: 1.85; }
.article-body p { margin-bottom: 1.4rem; color: var(--text-soft); }
.article-body .lead-para { font-size: 1.28rem; line-height: 1.7; color: var(--text); }
.article-body h2 { font-size: 1.6rem; margin: 2.4rem 0 0.9rem; color: var(--text); }
.article-body blockquote {
  margin: 2rem 0; padding: 0.4rem 0 0.4rem 1.6rem;
  border-left: 3px solid var(--accent); font-family: var(--font-serif);
  font-size: 1.4rem; font-style: italic; line-height: 1.4; color: var(--text);
}

.article-foot { display: flex; align-items: center; gap: 1rem; max-width: 720px; margin: 3rem auto 0; padding: 1.6rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-elev); }
.avatar-lg { width: 56px; height: 56px; font-size: 1.05rem; }
.article-foot strong { display: block; font-family: var(--font-serif); font-size: 1.15rem; }
.article-foot p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.2rem; }

.related { padding-top: clamp(2.5rem, 6vw, 4rem); }

/* Floating reading-progress ring */
.reading-ring {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: 60px; height: 60px; display: grid; place-items: center;
  border: none; border-radius: 50%; cursor: pointer; padding: 0;
  background: var(--bg-elev); box-shadow: var(--shadow); color: var(--text);
  z-index: 80; opacity: 0; transform: translateY(16px) scale(0.85); pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.reading-ring.visible { opacity: 1; transform: none; pointer-events: auto; }
.reading-ring:hover { transform: translateY(-3px); }
.reading-ring svg { position: absolute; transform: rotate(-90deg); }
.reading-ring .ring-track { fill: none; stroke: var(--border); stroke-width: 3; }
.reading-ring .ring-fill { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; transition: stroke-dashoffset 0.12s linear; }
.reading-ring .ring-label { font-size: 0.72rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.reading-ring.is-done { color: var(--accent); }
.reading-ring.is-done .ring-label { font-size: 1rem; }

.not-found { max-width: 620px; margin: 0 auto; text-align: center; padding: clamp(4rem, 12vw, 8rem) 0; }
.not-found h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 1rem 0 0.8rem; }
.not-found p { color: var(--text-soft); margin-bottom: 2rem; }
.not-found .chip { display: inline-block; }

/* WordPress pagination */
.pagination { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 0.6rem;
  border: 1px solid var(--border); border-radius: 999px; background: var(--bg-elev);
  color: var(--text-soft); font-weight: 600; transition: all var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* WordPress core helpers */
.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;
}
.aligncenter { margin-inline: auto; }
.alignright { float: right; margin-left: 1.4rem; }
.alignleft { float: left; margin-right: 1.4rem; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); }
.sticky, .bypostauthor { }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--bg-elev); border-bottom: 1px solid var(--border);
    padding: 0.5rem var(--gutter) 1rem; transform: translateY(-120%);
    transition: transform var(--transition); box-shadow: var(--shadow);
  }
  .nav.open { transform: none; }
  .nav-link { padding: 0.9rem 0.4rem; border-radius: var(--radius-sm); }
  .menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-card { transform: none; }

  .featured { grid-template-columns: 1fr; }
  .featured-media { min-height: 220px; }

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

@media (max-width: 520px) {
  .hero-stats { gap: 1.3rem; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .search input { width: 100%; }
  .search { flex: 1; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
