* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
:root {
  --bg: #f4f7fa;
  --surface: #ffffff;
  --surface-2: #f3f6f8;
  --text: #111827;
  --text-2: #374151;
  --muted: #6b7280;
  --border: rgba(17, 24, 39, 0.10);
  --border-2: rgba(17, 24, 39, 0.14);
  --shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  --shadow-sm: 0 3px 5px rgba(150, 153, 155, 0.10);
  --accent: #6162ec;
  --accent-soft: rgba(97, 98, 236, 0.10);
  --accent-soft-2: rgba(97, 98, 236, 0.08);
  --accent-border: rgba(97, 98, 236, 0.25);
}

[data-theme="dark"] {
  --bg: #0b1220;
  --surface: #0f1a2d;
  --surface-2: #0f1a2d;
  --text: #e5e7eb;
  --text-2: #cbd5e1;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.18);
  --border-2: rgba(148, 163, 184, 0.28);
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.25);
  --accent: #8b8cf6;
  --accent-soft: rgba(139, 140, 246, 0.16);
  --accent-soft-2: rgba(139, 140, 246, 0.12);
  --accent-border: rgba(139, 140, 246, 0.35);
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text-2);
    background-position: center;
    background-repeat: repeat;
}

/* Header Styling */
header {
    background: var(--surface-2);
    text-align: center;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06), 0 1px 0 rgba(0,0,0,0.04);
    border-bottom: 1px solid var(--border);
}

.header-top {
  position: relative;
  padding: 10px 0;
}

/* Logo */
.logo {
  display: inline-block;
}
.logo img {
  width: 160px;
  height: auto;
}

@media (min-width: 450px) {
  .logo img {
    width: 200px;
  }
}

/* Language dropdown positioned on top-right */
.theme-toggle {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.theme-btn {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.site-content.site-content-home {
  padding-top: 0px;
}

.breadcrumbs {
    font-size: 13px;
    margin: 5px 10px;
    padding: 3px 5px;
    color: var(--muted);
    margin: 1% 5%;
    letter-spacing: 2px;
}
.breadcrumbs a {
    font-size: 12px;	
    color: #6162ec;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
  .theme-toggle {
    right: 12px;
  }
}

/* Menu Toggle */
.menu-toggle {
  position: absolute;
  left: 15px;
  top: 15px;
  border: none;
  font-size: 26px;
  cursor: pointer;
  z-index: 1200;
  color: var(--text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  background: var(--surface-2);
  border-radius: 5px;
  padding-bottom: 3px;
}
.navigation-section {
  columns: 2;
  column-gap: 12px;
  list-style: none;
  padding: 0;
}

@media (max-width: 380px) {
  .navilink {
    font-size: 12px;
    padding: 8px 0;
  }
}
.navilink { 
  display: block;
  text-align: left;
  text-decoration: none;
  color: var(--text-2);
  font-size: 13px;
  width: 100%;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid var(--border);
}
.navilink:hover{
  color: var(--text);
  background: var(--accent-soft);
}
nav.main-nav.open {
    width: 313px;
    padding: 60px 5px 10px 10px;
}
/* X icon when menu is open */
body.menu-open .menu-toggle::before {
  content: "✕"; /* X icon */
}

body.menu-open .menu-toggle {
  position: fixed;
  top: 12px;
  left: 15px;
}

/* Hamburger icon when menu is closed */
body.menu-closed .menu-toggle::before {
  content: "☰"; /* Hamburger icon */
}

/* Navigation Menu - Use overlay approach */
nav.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06), 0 1px 0 rgba(0,0,0,0.04);
  transform: translateX(-260px); /* Start closed and hidden */
  transition: none; /* Remove transition initially */
  overflow-y: auto;
  padding-top: 63px;
  z-index: 1000;
}

/* After page loads, add transition for smooth toggling */
body.menu-ready nav.main-nav {
  transition: transform 0.3s ease;
}

/* When menu is open */
nav.main-nav.open {
  transform: translateX(0);
}

/* Page content - No margin changes needed */
.site-content {
  padding: 14px;
  width: 100%;
  /* Remove all margin-left transitions */
  transition: none !important;
}

.site-content-home {
  padding-top: 0;
}

@media (min-width: 600px) {
  .site-content {
    padding: 20px;
  }
}

body.menu-ready .site-content {
  /* No transition needed for content */
}

.menu-open .site-content {
  /* No margin change - content stays in place */
  margin-left: 0 !important;
}

/* Overlay for when menu is open */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.menu-ready .nav-overlay {
  transition: opacity 0.3s ease;
}

body.menu-open .nav-overlay {
  display: block;
  opacity: 1;
}

/* Ensure content stays behind overlay but above menu */
.site-content {
  position: relative;
  z-index: 1;
}

/* Page Styling */
.page-title {
    text-align: center;
    font-size: 25px;
    margin: 20px;
    color: #7189a2;
    text-transform: capitalize;
}

/* Footer Styling */
footer {
    padding: 15px;
    text-align: center;
    background: var(--surface-2);
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    color: var(--muted);
    letter-spacing: 0.5px;
    box-shadow: 0 -1px 0 var(--border);
    margin-top: 20px;
    display: inline-block;
    background-position: center;
    background-repeat: repeat;	
}

.footer-copy {
    color: var(--muted);
}

.footer-menu a {
    color: var(--text);
    letter-spacing: 0.5px;
    font-size: 13px;
    text-decoration: none;
    padding-bottom: 0px;
    margin: 0 7px 10px 7px;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--accent);
}

.site-content {
  text-align: center;
}
.title {
    font-size: 1.8rem;
  margin: 14px 0 0.5rem 0;
  background: linear-gradient(45deg, #7800fb 0%, #25c2fc 100%);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

@media (min-width: 600px) {
  .title {
    margin-top: 18px;
  }
}
.fontintro {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: .5px;
  margin-top: 10px;
}



/* Font Generator */
.font-head {
  font-size: 11px;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.7px;
  margin-left: 15px;
  color: #666;
  width: 150px;
  background: #ebeef2;
  border: 0;
  border-radius: 5px 5px 0 0;
  padding: 3px 0;
}

[data-theme="dark"] .font-head {
  background: rgba(148, 163, 184, 0.12);
  color: rgba(229, 231, 235, 0.78);
}

.details.details-plain {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pwa-install-toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.pwa-install-toast__text {
  font-size: 14px;
  line-height: 1.35;
  color: var(--text);
}

.pwa-install-toast__actions {
  display: flex;
  gap: 8px;
}

.pwa-install-toast__btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
}

.pwa-install-toast__btn--install {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 420px) {
  .pwa-install-toast {
    flex-direction: column;
    align-items: stretch;
  }
  .pwa-install-toast__actions {
    justify-content: flex-end;
  }
}
.font-block, .featured-example {
  font-size: 21px;
  white-space: normal;
  padding: 20px 5px 20px 25px;
  box-shadow: var(--shadow-sm);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-align: center;
  line-height: 33px;
  overflow: auto;
}
.copy-font {
  background: none;
  border: 0px;
  font-size: 18px;
  float: right;
  margin-right: 5px;
  cursor: pointer;
}
.output {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px 12px;
  padding: 10px;
}

@media (min-width: 700px) {
  .output {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.font-section {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.featured-font .copy-font {
  bottom: 50px;
  margin-right: 20px;
}
.font-h2 {
  font-size: 23px;
  word-spacing: 2px;
  padding: 1% 0 1% 0;
  font-weight: normal;
}
textarea{
  resize: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, 
"Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin: 15px 0;
  background: var(--surface);
  color: var(--text);
}
textarea:focus {
    border: 1px solid var(--accent);
    outline: none;
}
.enterhere {
  display: inline-block;
  width: 100%;
  background: var(--surface);
  padding: 7px 20px;
  border-radius: 12px;
  margin: 2% 0;
  box-shadow: 0px 2px 2px rgba(32, 44, 53, 0.1);
}

@media (min-width: 600px) {
  .enterhere {
    width: 92%;
  }
}
.textarea-container {
    position: relative;
    display: inline-block;
    width: 100%;
}
.clear-text {
  position: absolute;
  top: 20px;
  right: 5px;
  background: var(--surface-2);
  border: none;
  font-size: 12px;
  cursor: pointer;
  color: var(--muted);
  border-radius: 50px;
  z-index: 10;
  width: 25px;
  height: 25px;
}

.clear-text:hover {
    color: var(--text);
    background-color: var(--accent-soft);
}
.enter-symbol {
    width: 100%;
    padding-right: 10px; /* Make space for the clear button */
    box-sizing: border-box;
}
.border {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--border-2), rgba(0, 0, 0, 0));
}
.featured-font .copy-font {position: relative;}
.featured-font {
  width: 90%;
  display: inline-block;
}

.details {
  max-width: 1200px;
  font-size: 14px;
  padding: 18px 16px;
  box-shadow: var(--shadow);
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: left;
  line-height: 26px;
  color: var(--text-2);
  margin: 16px auto;
}

.details h3 {
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 5px 0;
  color: var(--text);
  letter-spacing: -0.2px;
}

.details h3:not(:first-child) {
  margin-top: 25px;
}

.details p {
  margin: 0 0 12px 0;
}

.details a {
  color: var(--accent);
  text-decoration: none;
}

.details a:hover {
  text-decoration: underline;
}

.details ul {
  padding-left: 18px;
  margin: 10px 0 14px 0;
}

.details li {
  margin: 7px 0;
}

.details .faq {
  margin-top: 14px;
}

.details .faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin: 10px 0;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(37, 194, 252, 0.10) 100%);
  overflow: visible;
  box-shadow: none;
  padding: 12px 12px;
}

.details .faq details:last-child {
  margin-bottom: 0;
}

.details .faq details[open] {
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(37, 194, 252, 0.10) 100%);
}

.details .faq summary {
  font-weight: 600;
  color: var(--text);
  display: block;
  padding: 0;
  line-height: 22px;
  font-size: 15px;
  background: transparent;
  border-bottom: 0;
  cursor: text;
}

.details .faq summary::marker {
  content: "";
}

.details .faq summary::-webkit-details-marker {
  display: none;
}

.details .style-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0 0;
  max-height: 190px;
  overflow: auto;
  padding: 2px;
}

.details .style-jump-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #f3f4f6;
  color: #111827;
  text-decoration: none;
  font-size: 13px;
  line-height: 18px;
}

.details .style-jump-link:hover {
  background: #eef4ff;
  border-color: rgba(97, 98, 236, 0.35);
  color: #6162ec;
}

.details .faq details > :not(summary) {
  padding: 8px 0 0 0;
}

.details .faq p {
  margin: 0;
  color: var(--muted);
  line-height: 24px;
}

@media (min-width: 600px) {
  .details {
    padding: 26px 22px;
    margin: 20px auto;
  }
}

.home-hero {
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.home-hero-copy {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  padding: 0;
  background: linear-gradient(135deg, rgba(97, 98, 236, 0.14) 0%, rgba(37, 194, 252, 0.12) 100%);
  border: 1px solid var(--border);
  text-align: center;
}

.home-hero-copy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px 16px 10px;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  width: 100%;
  justify-content: center;
}

[data-theme="dark"] .home-hero-badge {
  background: rgba(15, 26, 45, 0.65);
}

.home-hero-title {
  font-size: 26px;
  line-height: 32px;
  margin: 10px 0 0 0;
  font-weight: 500;
  color: var(--text);
}

.home-hero-subtitle {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}


.home-hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-2);
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.2px;
}

.home-guide {
  max-width: 1200px;
  margin: 28px auto 0 auto;
  padding: 0 10px;
  text-align: left;
}

.home-guide-head {
  margin: 0 0 12px 0;
  text-align: center;
}

.home-guide-title {
  margin: 0;
  font-size: 22px;
  line-height: 26px;
  color: var(--text);
  font-weight: 700;
}

.home-guide-subtitle {
  margin: 8px 0 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.home-guide-title {
  text-align: center;
}

.home-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-guide-grid-3 {
  margin-top: 16px;
}

.home-guide-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 20px 18px;
}

.home-guide-card-soft {
  background: linear-gradient(135deg, rgba(97, 98, 236, 0.12) 0%, rgba(37, 194, 252, 0.10) 100%);
}

.home-guide-card-title {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  color: var(--text);
  font-weight: 700;
}

.home-guide-text {
  margin: 10px 0 0 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 21px;
}

.home-guide-list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 21px;
}

.home-guide-list li {
  margin: 9px 0;
}

.home-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: none;
}

.home-chip:hover {
  border-color: var(--accent-border);
  background: var(--accent-soft);
}

@media (min-width: 720px) {
  .home-guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-guide-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .home-hero-preview {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 18px;
    text-align: left;
    box-shadow: var(--shadow-sm);
  }
}

.home-hero-preview {
  display: none;
}

.home-preview-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-preview-label {
  font-size: 12px;
  color: var(--muted);
}


.home-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.home-preview-style {
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  color: var(--muted);
  white-space: nowrap;
}

.home-preview-text {
  font-size: 18px;
  line-height: 26px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-results {
  margin-top: 10px;
  padding-bottom: 10px;
}

.home-results #featuredFontsContainer {
  margin-top: 6px;
}

.home-results .output {
  margin-top: 14px;
  gap: 32px 16px;
  padding: 14px 10px;
}

.home-features {
  max-width: 1200px;
  margin: 18px auto 0 auto;
  padding: 0 10px;
  text-align: left;
}

.home-features-head {
  margin-bottom: 12px;
}

.home-features-title {
  font-size: 20px;
  line-height: 26px;
  color: var(--text);
  font-weight: 750;
  margin: 0;
}

.home-features-subtitle {
  margin: 8px 0 0 0;
  font-size: 13px;
  line-height: 20px;
  color: var(--muted);
}

.home-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-feature-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 14px;
  background: linear-gradient(135deg, rgba(97, 98, 236, 0.16) 0%, rgba(37, 194, 252, 0.12) 100%);
  box-shadow: var(--shadow-sm);
}

.home-feature-kicker {
  font-size: 12px;
  letter-spacing: 0.2px;
  color: var(--accent);
  font-weight: 700;
}

.home-feature-name {
  margin-top: 6px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 750;
  color: var(--text);
}

.home-feature-text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-2);
}

.home-extra {
  max-width: 1200px;
  margin: 14px auto 0 auto;
  padding: 0 10px;
  text-align: left;
}

.home-extra-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.home-extra-title {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 750;
  color: var(--text);
}

.home-extra-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: grid;
  gap: 10px;
}

.home-extra-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.home-extra-bullet {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.home-extra-item b {
  color: var(--text);
}

.home-extra-item p {
  margin: 2px 0 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

@media (min-width: 720px) {
  .home-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.home-section {
  max-width: 1200px;
  margin: 22px auto 0 auto;
  padding: 0 10px;
  text-align: left;
}

.home-section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 12px 0;
}

.home-section-title {
  font-size: 20px;
  line-height: 26px;
  color: var(--text);
  font-weight: 700;
}

.home-section-subtitle {
  font-size: 13px;
  line-height: 20px;
  color: var(--muted);
}

.home-card-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.home-card-grid-compact {
  margin-top: 12px;
}

.home-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 3px 5px rgba(150, 153, 155, 0.08);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-card:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.10);
}

.home-card:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.home-card-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.home-card-cta {
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.home-card-subtitle {
  margin-top: 2px;
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
}

.home-more {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 10px 12px;
}

.home-more summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.home-more summary::-webkit-details-marker {
  display: none;
}

.home-more[open] {
  background: var(--surface);
}

@media (min-width: 900px) {
  .home-hero-inner {
    grid-template-columns: 1.25fr 0.75fr;
  }
}
