@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf);
  font-weight: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg-milk: #FDF6EE;
  --bg-warm: #FAF3EA;
  --bg-cream: #F7EFE4;
  --text-graphite: #2B2B2B;
  --text-muted: #5A5A5A;
  --text-light: #8A8A8A;
  --accent-navy: #1B2A4A;
  --accent-navy-light: #2C4270;
  --accent-navy-dark: #111D35;
  --gold-soft: #C8A96B;
  --gold-dark: #A8874A;
  --border-light: #E8DFD4;
  --border-medium: #D4C8B8;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.1);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-milk);
  color: var(--text-graphite);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  flex: 1;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-navy);
  letter-spacing: -0.5px;
}

.header-badge {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-navy);
  background: linear-gradient(135deg, rgba(200, 169, 107, 0.15), rgba(200, 169, 107, 0.08));
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--gold-soft);
  letter-spacing: 0.5px;
}

.featured-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 32px;
}

.featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.featured-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.featured-link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
}

.featured-img {
  position: relative;
  overflow: hidden;
}

.featured-img img {
  transition: transform 0.7s ease;
}

.featured-card:hover .featured-img img {
  transform: scale(1.04);
}

.featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.1), transparent);
}

.featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
}

.tag-pill {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-navy), var(--accent-navy-light));
  color: var(--white);
}

.tag-pill-sm {
  font-size: 0.65rem;
  padding: 4px 11px;
}

.featured-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.featured-meta i {
  color: var(--gold-soft);
  margin-right: 4px;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--accent-navy);
}

.featured-excerpt {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-navy);
  margin-top: auto;
}

.featured-cta i {
  transition: transform var(--transition);
}

.featured-card:hover .featured-cta i {
  transform: translateX(5px);
}

.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium));
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--border-medium), transparent);
}

.divider-icon {
  color: var(--gold-soft);
  font-size: 0.8rem;
}

.divider-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  white-space: nowrap;
}

.archive-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.archive-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.archive-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-soft);
}

.archive-img {
  height: 180px;
  overflow: hidden;
}

.archive-img img {
  transition: transform 0.5s ease;
}

.archive-link:hover .archive-img img {
  transform: scale(1.05);
}

.archive-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.archive-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-graphite);
}

.archive-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.archive-meta i {
  color: var(--gold-soft);
  margin-right: 3px;
}

.subscribe-band {
  background: linear-gradient(135deg, var(--accent-navy-dark) 0%, var(--accent-navy) 50%, var(--accent-navy-light) 100%);
  padding: 48px 24px;
}

.subscribe-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-deco {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.7rem;
  color: var(--gold-soft);
}

.subscribe-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 10px;
}

.subscribe-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.subscribe-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
textarea {
  resize: none;
  width: 100%;
}
.full-w {
  width: 100%;
}

.subscribe-fields input, textarea {
  width: 100%;
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.subscribe-fields input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-fields input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.12);
}

.subscribe-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.subscribe-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--gold-soft);
}

.btn-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  align-self: center;
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 169, 107, 0.4);
}

.site-footer {
  margin-top: auto;
  background: var(--accent-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo span {
  color: var(--white);
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.footer-company {
  font-weight: 600;
  color: var(--white);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold-soft);
}

.footer-disclaimer {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.article-page {
  padding: 48px 24px 40px;
}

.article-container {
  max-width: 780px;
  margin: 0 auto;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.article-ornament {
  color: var(--gold-soft);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--accent-navy);
  margin-bottom: 16px;
}

.article-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--gold-soft);
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.article-byline i {
  color: var(--gold-soft);
  margin-right: 5px;
}

.article-hero-img {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.article-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-graphite);
}

.article-body p {
  margin-bottom: 18px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-navy);
  margin: 32px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.recommendations-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-ornament {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-soft);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--accent-navy);
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rec-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.rec-card-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--gold-soft);
}

.rec-card-img {
  height: 150px;
  overflow: hidden;
}

.rec-card-img img {
  transition: transform 0.5s ease;
}

.rec-card-link:hover .rec-card-img img {
  transform: scale(1.05);
}

.rec-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rec-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-graphite);
}

.comment-section {
  padding: 0 24px 48px;
}

.comment-container {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.comment-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-navy);
  margin-bottom: 20px;
}

.comment-title i {
  color: var(--gold-soft);
  margin-right: 8px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border: 1px solid var(--border-light);
  background: var(--bg-warm);
  color: var(--text-graphite);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-navy-light);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-navy);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-navy), var(--accent-navy-light));
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 42, 74, 0.3);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(17, 29, 53, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}

.modal-icon {
  font-size: 3rem;
  color: var(--gold-soft);
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-navy);
  margin-bottom: 10px;
}

.modal-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-close {
  align-self: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 2px solid var(--gold-soft);
  box-shadow: 0 -4px 24px rgba(27, 42, 74, 0.12);
  padding: 18px 24px;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-banner.cookie-hidden {
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-text i {
  font-size: 1.4rem;
  color: var(--gold-soft);
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.btn-cookie-accept {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-navy), var(--accent-navy-light));
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-cookie-reject {
  padding: 10px 22px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-reject:hover {
  border-color: var(--text-muted);
  color: var(--text-graphite);
}

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 48px 24px;
  background: linear-gradient(180deg, var(--bg-cream), var(--bg-milk));
}

.thanks-container {
  text-align: center;
  max-width: 500px;
}

.thanks-logo {
  margin-bottom: 24px;
}

.thanks-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto;
}

.thanks-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.thanks-title {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-navy);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-navy);
  margin-bottom: 8px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-navy);
  margin: 28px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-graphite);
  margin-bottom: 12px;
}

.legal-content strong {
  color: var(--accent-navy);
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 900px) {
  .featured-link {
    grid-template-columns: 1fr;
  }

  .featured-img {
    height: 280px;
  }

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

  .rec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .featured-block {
    padding: 28px 16px 24px;
  }

  .featured-img {
    height: 200px;
  }

  .featured-body {
    padding: 24px 20px;
  }

  .archive-section {
    padding: 24px 16px 36px;
  }

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

  .subscribe-fields {
    flex-direction: column;
  }

  .article-hero-img {
    height: 240px;
  }

  .comment-container {
    padding: 24px 18px;
  }

  .form-row {
    flex-direction: column;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-reject {
    flex: 1;
    text-align: center;
  }

  .header-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .legal-content {
    padding: 32px 16px;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

  .legal-content h2 {
    font-size: 1.2rem;
  }
  body {
    word-break: break-word;
  }
    .logo span {
      font-size: 1rem;
    }
}
.cst-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 4px;
  padding: 16px 0;
}
.cst-box p {
  color: var(--accent-navy-dark);
  background-color: var(--border-medium);
  border: 2px solid var(--gold-dark);
  border-radius: 30px;
  padding: 2px 8px;
}
.cst-box img {
  width: 1000px;
  max-width: 100%;
  border-radius: 12px;
}