/* ============================================
   AMBER CHRONICLE — Theme CSS
   Design DNA: Charitize-inspired warm editorial
   Palette: Amber gold + Deep teal + Cream
   Typography: Geometric sans-serif
   ============================================ */

:root {
  --amber: #FFAC00;
  --amber-light: #FFD166;
  --teal: #1A685B;
  --teal-dark: #0F4A40;
  --cream: #FDF8EA;
  --cream-deep: #F5EDDA;
  --dark: #051311;
  --dark-mid: #0A2622;
  --gray: #797E88;
  --gray-light: #B8BCC4;
  --white: #FFFFFF;

  --font-heading: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gap: 2rem;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; transition: color .3s; }
a:hover { color: var(--amber); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ---- SECTION LABEL (decorative lines) ---- */
.section-label {
  display: inline-block;
  position: relative;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0 1rem;
  margin-bottom: 0.75rem;
}

.section-label::before,
.section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 0;
  border-top: 2px solid var(--amber);
}
.section-label::before { right: 100%; width: 40px; }
.section-label::after  { left: 100%;  width: 60px; }

.section-label--center { display: block; text-align: center; }
.section-label--center::before { right: calc(50% + 4em); width: 50px; }
.section-label--center::after  { left:  calc(50% + 4em); width: 50px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all .35s;
  text-align: center;
}

.btn--primary {
  background: var(--amber);
  color: var(--dark);
}
.btn--primary:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  box-shadow: inset 0 0 0 2px var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--teal);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--dark);
  position: relative;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-brand img {
  height: 40px;
  width: auto;
}

.site-brand__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
}

.site-brand__name a { color: inherit; }
.site-brand__name a:hover { color: var(--amber-light); }

.header-email {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.875rem;
}

.header-email svg { flex-shrink: 0; }
.header-email a { color: var(--amber); }
.header-email a:hover { color: var(--amber-light); }

@media (min-width: 768px) {
  .header-email { display: flex; }
}

/* Nav bar */
.nav-bar {
  background: var(--teal);
  padding: 0;
}

.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav {
  display: none;
  flex-direction: column;
  list-style: none;
  width: 100%;
  padding: 0;
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  display: block;
  padding: 0.875rem 0;
  color: rgba(255,255,255,.8);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .3s;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--amber);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: auto;
  }
  .main-nav a {
    padding: 1.125rem 1.25rem;
    border-bottom: none;
    position: relative;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 1.25rem; right: 1.25rem;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transition: transform .3s;
  }
  .main-nav a:hover::after,
  .main-nav a:focus::after {
    transform: scaleX(1);
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--teal);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero__title em {
  font-style: normal;
  color: var(--amber);
}

.hero__subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__subtitle p { margin-bottom: 0; }

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Geometric corner decoration */
.hero__decor {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; height: 0;
  border-bottom: 100px solid var(--amber);
  border-right: 100px solid transparent;
  z-index: 3;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 55% 1fr;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .hero__decor { display: block; }
}

@media (min-width: 1024px) {
  .hero .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* ============================================
   TOPICS (thematic categories)
   ============================================ */
.topics-section {
  padding: 5rem 0;
  background: var(--white);
}

.topics-section__header {
  margin-bottom: 3rem;
}

.topics-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 600px;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.topic-card {
  display: flex;
  padding: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s;
  position: relative;
}

.topic-card:last-child { border-bottom: none; }

.topic-card:hover {
  background: var(--cream);
}

.topic-card__index {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1.5rem;
  transition: background .3s;
}

.topic-card:hover .topic-card__index {
  background: var(--teal);
  color: var(--white);
}

.topic-card__body {}

.topic-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.topic-card__desc {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.topic-card__desc p { margin: 0; }

@media (min-width: 768px) {
  .topics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .topic-card:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,.06);
  }
  /* Remove bottom border from last row */
  .topic-card:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================
   LATEST POSTS
   ============================================ */
.posts-section {
  padding: 5rem 0;
  background: var(--cream);
  position: relative;
}

/* Decorative corner triangle (DNA from Charitize) */
.posts-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 80px solid var(--teal);
  border-left: 80px solid transparent;
}

.posts-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
}

.posts-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Post card — horizontal layout like Charitize's donation cards */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
  transition: box-shadow .4s, transform .4s;
  overflow: hidden;
}

.post-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.post-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

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

.post-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__date {
  font-size: 0.8125rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-card__date::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--amber);
}

.post-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.post-card__title a {
  color: var(--dark);
  transition: color .3s;
}

.post-card__title a:hover {
  color: var(--teal);
}

.post-card__excerpt {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.post-card__excerpt p { margin: 0; }

.post-card__link {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.post-card__link::after {
  content: "→";
  transition: transform .3s;
}

.post-card__link:hover { color: var(--amber); }
.post-card__link:hover::after { transform: translateX(4px); }

/* Featured post (first post larger) */
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .posts-grid .post-card:first-child {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .posts-grid .post-card:first-child .post-card__image {
    width: 45%;
    height: auto;
    min-height: 300px;
    flex-shrink: 0;
  }
  .posts-grid .post-card:first-child .post-card__body {
    padding: 2.5rem;
  }
  .posts-grid .post-card:first-child .post-card__title {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .posts-grid .post-card:first-child {
    grid-column: 1 / 3;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.faq-sidebar {
  padding: 2.5rem;
  background: var(--teal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Corner triangle decoration */
.faq-sidebar::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 80px solid var(--amber);
  border-left: 80px solid transparent;
}

.faq-sidebar__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.faq-sidebar__text {
  color: rgba(255,255,255,.7);
  font-size: 0.9375rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  gap: 1rem;
  transition: color .3s;
}

.faq-question:hover { color: var(--teal); }

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  transition: transform .3s, background .3s;
}

.faq-item.is-active .faq-question__icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.is-active .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 0 1.5rem;
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-answer__inner p { margin: 0; }

@media (min-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr 2fr;
  }
}

/* ============================================
   BLOG INDEX
   ============================================ */
.blog-index {
  padding: 5rem 0;
  background: var(--cream);
}

.blog-index__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--gray);
  background: var(--white);
  transition: all .3s;
}

.pagination a:hover {
  background: var(--teal);
  color: var(--white);
}

.pagination a.active,
.pagination .active {
  background: var(--amber);
  color: var(--dark);
}

.pagination__prev,
.pagination__next {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8125rem !important;
}

/* ============================================
   SINGLE POST
   ============================================ */
.post-hero {
  background: var(--dark);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.post-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 0;
  border-bottom: 60px solid var(--cream);
  border-right: 60px solid transparent;
}

.post-hero__date {
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.post-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  max-width: 800px;
  line-height: 1.15;
}

.post-hero__excerpt {
  margin-top: 1.25rem;
  color: rgba(255,255,255,.65);
  max-width: 650px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.post-hero__excerpt p { margin: 0; }

.post-cover {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.post-cover img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.post-content {
  padding: 3rem 0 5rem;
  background: var(--cream);
}

.post-content__inner {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--dark-mid);
}

.post-content__inner h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--amber);
}

.post-content__inner h3 {
  font-size: 1.375rem;
  margin: 2rem 0 0.75rem;
}

.post-content__inner p { margin-bottom: 1.25rem; }

.post-content__inner ul, .post-content__inner ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.post-content__inner blockquote {
  border-left: 4px solid var(--amber);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--white);
  font-style: italic;
  color: var(--teal-dark);
}

.post-content__inner img {
  margin: 2rem 0;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.post-content__inner a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   PAGE (static)
   ============================================ */
.page-header-section {
  background: var(--dark);
  padding: 4rem 0 3rem;
  position: relative;
}

.page-header-section::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 60px solid var(--cream);
  border-left: 60px solid transparent;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.page-body {
  padding: 3.5rem 0 5rem;
  background: var(--cream);
}

.page-body__inner {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--dark-mid);
}

.page-body__inner h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--amber);
}

.page-body__inner h3 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.page-body__inner p { margin-bottom: 1.25rem; }
.page-body__inner ul, .page-body__inner ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }

.page-body__inner blockquote {
  border-left: 4px solid var(--amber);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--white);
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: var(--gray);
  position: relative;
  overflow: hidden;
}

/* Background texture overlay */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(255,255,255,.01) 50px,
    rgba(255,255,255,.01) 51px
  );
  pointer-events: none;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.footer-brand__tagline {
  font-size: 0.9375rem;
  color: var(--gray-light);
  margin-bottom: 1.25rem;
}

.footer-contact a {
  color: var(--amber);
  font-size: 0.9375rem;
}

.footer-nav__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav__list a {
  color: var(--gray);
  font-size: 0.9375rem;
  transition: color .3s, padding-left .3s;
}

.footer-nav__list a::before {
  content: "—";
  margin-right: 0.5rem;
  color: var(--amber);
  opacity: 0;
  transition: opacity .3s;
}

.footer-nav__list a:hover {
  color: var(--white);
  padding-left: 0.25rem;
}

.footer-nav__list a:hover::before { opacity: 1; }

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-copyright { color: var(--gray); }

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--dark);
  font-size: 1.25rem;
  z-index: 90;
  border: none;
  cursor: pointer;
  transition: background .3s;
}

.back-to-top.is-visible { display: flex; }
.back-to-top:hover { background: var(--teal); color: var(--white); }

/* ============================================
   FOCUS & ACCESSIBILITY
   ============================================ */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .site-footer, .back-to-top { display: none; }
  body { background: white; color: black; }
}
