:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-2: #f0efe8;
  --text: #1f2a28;
  --muted: #5c6d68;
  --line: rgba(20, 70, 60, 0.12);
  --primary: #0b8f88;
  --primary-dark: #0b5b56;
  --accent: #d9efe8;
  --shadow: 0 20px 50px rgba(17, 37, 32, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
input, select, textarea, button, label {
  font-family: inherit;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 2.5rem 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem .85rem; border-radius: 999px;
  background: rgba(11, 143, 136, 0.09); color: var(--primary-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--primary);
}
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 1rem; font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; font-weight: 500; letter-spacing: -0.005em; }
h1 { font-size: clamp(3rem, 7vw, 5.25rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
p { margin: 0 0 1rem; color: var(--muted); }
.lead { font-size: 1.14rem; max-width: 68ch; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.3rem; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-weight: 600; border: 1px solid transparent;
  transition: .22s ease; cursor: pointer;
}
.btn-primary { background: var(--primary-dark); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: white; border-color: var(--line); }
.btn-secondary:hover { background: var(--surface-2); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px); background: rgba(247, 246, 242, 0.78); border-bottom: 1px solid rgba(11, 91, 86, 0.08);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 1rem; }
.brand img { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; background: white; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.brand-text strong { display: block; font-size: 1.08rem; }
.brand-text span { color: var(--muted); font-size: .96rem; }
.nav-links {
  display: flex; list-style: none; gap: .35rem; padding: 0; margin: 0;
}
.nav-links a {
  display: inline-flex; padding: .72rem 1rem; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-weight: 500; color: var(--muted);
}
.nav-links a.active, .nav-links a:hover { background: white; color: var(--text); }
.mobile-toggle { display: none; background: white; border: 1px solid var(--line); border-radius: 12px; padding: .8rem .95rem; }
.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid, .split-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 2rem; align-items: center; }
.hero-panel, .feature-card, .testimonial, .team-card, .news-card, .contact-card, .price-card, .instrument-card, .legal-card, .photo-card {
  background: rgba(255,255,255,.86); border: 1px solid rgba(11,91,86,.08); box-shadow: var(--shadow); border-radius: var(--radius);
}
.hero-panel { padding: 1.35rem; }

.hero-stage { padding: 4.5rem 0 5rem; }
.hero-stage-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 2.5rem;
  align-items: start;
}
.hero-stage-text > * + * {
  margin-top: 4rem;
}
.hero-stage-panel {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 980px) {
  .hero-stage-grid {
    grid-template-columns: 1fr;
  }
  .hero-stage-panel {
    position: static;
    top: auto;
  }
  .hero-stage-text > * + * {
    margin-top: 3rem;
  }
}
.hero-image {
  position: relative;
  min-height: 520px;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  background: #e9ece7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::after {
  content: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  cursor: zoom-in;
  background: #f3f3f0;
}

.kpi-grid, .card-grid, .team-grid, .news-grid, .instrument-grid, .pricing-grid, .footer-grid { display: grid; gap: 1.25rem; }
.kpi-grid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 1.5rem; }
.kpi {
  padding: 1.2rem; border-radius: 20px; background: white; border: 1px solid var(--line);
}
.kpi strong { display: block; font-size: 1.9rem; color: var(--primary-dark); }
.card-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.feature-card, .testimonial, .contact-card, .price-card, .instrument-card, .legal-card, .photo-card { padding: 1.5rem; }
.feature-card p:last-child, .testimonial p:last-child { margin-bottom: 0; }
.feature-icon {
  width: 3rem; height: 3rem; border-radius: 16px; display: grid; place-items: center;
  background: var(--accent); font-size: 1.35rem; margin-bottom: 1rem;
}
.quote-mark { font-size: 3rem; line-height: .8; color: rgba(11,143,136,.25); }
.testimonial cite { display: block; font-style: normal; color: var(--primary-dark); font-weight: 700; margin-top: 1rem; }
.section-head { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1.6rem; }
.section-head p { margin-bottom: 0; max-width: 52ch; }
.team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.team-card { overflow: hidden; }
.team-card .card-inner { padding: 1.5rem; }
.portrait {
  aspect-ratio: 16/10; display: flex; align-items: end; padding: 1.25rem;
  background: linear-gradient(135deg, rgba(11,91,86,.95), rgba(11,143,136,.72)); color: white;
}

.badges { display: flex; flex-wrap: wrap; gap: .55rem; margin: .8rem 0 1rem; }
.badge {
  padding: .36rem .7rem; border-radius: 999px; background: var(--surface-2); color: var(--primary-dark); font-size: .9rem; font-weight: 600;
}
.instrument-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.instrument-card .emoji { font-size: 2rem; margin-bottom: 1rem; }
.pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.price-card .price-label {
  display: inline-flex; padding: .35rem .7rem; border-radius: 999px; background: var(--accent); color: var(--primary-dark); font-weight: 700; margin-bottom: 1rem;
}
.notice {
  padding: 1rem 1.2rem; border-radius: 18px; background: #fff8df; border: 1px solid rgba(174, 130, 8, 0.18); color: #6e5712;
}
.news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.news-card .date { color: var(--primary-dark); font-weight: 700; margin-bottom: .65rem; display: block; }
.news-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 16px; margin-bottom: 1rem; background: var(--surface-2); }
.contact-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.5rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
label { display: block; font-weight: 700; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; padding: .95rem 1rem; border-radius: 16px; border: 1px solid rgba(11,91,86,.14);
  background: white; font: inherit; color: var(--text);
}
textarea { min-height: 160px; resize: vertical; }
.form-full { grid-column: 1 / -1; }
.footer {
  margin-top: 4rem; padding: 3rem 0; background: #17312d; color: rgba(255,255,255,.86);
}
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
.footer h3, .footer h4, .footer p, .footer a { color: inherit; }
.footer a { color: rgba(255,255,255,.82); }
.footer a:hover { color: white; }
.small { font-size: .94rem; }
.photo-stack { display: grid; gap: 1rem; }
.photo-card img { width: 100%; border-radius: 18px; background: var(--surface-2); aspect-ratio: 16/10; object-fit: contain; }
.room-photo {
  width: min(100%, 480px);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: var(--surface-2);
  overflow: hidden;
}
.room-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  max-height: none;
  border-radius: 18px;
  display: block;
  background: var(--surface-2);
}
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { margin-bottom: .6rem; color: var(--muted); }
.spaced > * + * { margin-top: .9rem; }
.anchor-card { display: flex; gap: .85rem; align-items: start; }
.anchor-card strong { display: block; margin-bottom: .2rem; }
.page-hero { padding: 3.5rem 0 2rem; }
.muted-box { background: var(--surface-2); border-radius: 18px; padding: 1.15rem; }
.legal-card h3 { margin-top: 1.5rem; }
.legal-card h3:first-child { margin-top: 0; }
@media (max-width: 980px) {
  .hero-grid, .split-grid, .contact-layout, .footer-grid, .instrument-grid, .pricing-grid, .card-grid, .team-grid, .news-grid { grid-template-columns: 1fr; }
  .navbar { min-height: 78px; }
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); display: none; flex-direction: column;
    background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 22px; padding: .6rem; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .brand img { width: 56px; height: 56px; }
  .kpi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 3.4rem 0; }
  .hero { padding-top: 2.6rem; }
  .form-grid { grid-template-columns: 1fr; }
}

/* === TEAM CARD LAYOUT === */

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card .card-inner {
  width: 100%;
  padding: 1.5rem;
}

.team-card .portrait {
  width: 250px;
  height: 250px;
  margin: 1.5rem auto 1rem auto;
  border-radius: 32px;
  overflow: hidden;
  background: #f3f3f3;
  padding: 0;
  aspect-ratio: 1 / 1;
  display: block;
}

.team-card .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 13%;
  display: block;
}

.bio-preview {
  margin-bottom: 0.6rem;
}

.bio-more {
  margin-top: 0.25rem;
}

.bio-more > summary {
  list-style: none;
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0;
  border-radius: 6px;
}

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

.bio-more > summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.bio-more .bio-more-label::before {
  content: "siehe mehr";
  border-bottom: 1px dotted currentColor;
}

.bio-more[open] .bio-more-label::before {
  content: "weniger anzeigen";
}

.bio-more > summary::after {
  content: "▾";
  font-size: 0.8em;
  transition: transform 0.18s ease;
}

.bio-more[open] > summary::after {
  transform: rotate(180deg);
}

.bio-more > p {
  margin-top: 0.6rem;
  margin-bottom: 0;
}

/* === INSTRUMENT CARD LAYOUT === */

.instrument-card {
  display: flex;
  flex-direction: column;
}

.instrument-card img,
.instrument-card .instrument-icon {
  width: min(100%, 280px);
  height: 220px;
  border-radius: 20px;
  margin: 0 auto 1rem auto;
  display: block;
  background: var(--surface-2);
}

.instrument-card img {
  object-fit: cover;
}

.instrument-card .instrument-icon {
  display: grid;
  place-items: center;
  font-size: 4.5rem;
  line-height: 1;
  background: linear-gradient(135deg, rgba(217, 239, 232, 0.8), rgba(240, 239, 232, 1));
}

/* === HERO SLIDESHOW === */

.hero-slideshow {
  position: relative;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
}

.hero-arrow-left {
  left: 14px;
}

.hero-arrow-right {
  right: 14px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 91, 86, 0.25);
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: var(--primary-dark);
}

/* === LIGHTBOX === */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 24, 22, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: min(1400px, 94vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #17312d;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.35rem;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 980px) {
  .hero-image {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hero-image {
    min-height: 320px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
}

/* === SLIDESHOW === */

/* === HERO SLIDESHOW === */

.hero-slideshow {
  position: relative;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  opacity: 0.92;
}

.hero-arrow-left {
  left: 14px;
}

.hero-arrow-right {
  right: 14px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 91, 86, 0.25);
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: var(--primary-dark);
}

/* === LIGHTBOX === */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 24, 22, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: min(1400px, 94vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #17312d;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.35rem;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 980px) {
  .hero-image {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hero-image {
    min-height: 320px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
}

.hero-image img {
  transition: opacity 0.3s ease;
}

/* === PRICING TABLES === */

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
  border: 2px solid #111;
  border-bottom: 0;
  border-radius: 14px;
  overflow: hidden;
}

.pricing-head {
  background: #4b957c;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 0.9rem 0.75rem;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  line-height: 1.25;
}

.pricing-head:nth-child(3) {
  border-right: 0;
}

.pricing-cell {
  text-align: center;
  padding: 1.15rem 0.75rem;
  font-size: 1.2rem;
  color: #333;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  background: #fff;
}

.pricing-cell:nth-child(6) {
  border-right: 0;
}

.pricing-note {
  text-align: center;
  font-size: 1.05rem;
  margin-top: 1rem;
  color: var(--text);
}

.pricing-table-single {
  grid-template-columns: 1fr;
  width: min(100%, 360px);
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #111;
}

.pricing-table-single .pricing-head,
.pricing-table-single .pricing-cell {
  border-right: 0;
}

@media (max-width: 760px) {
  .pricing-table {
    grid-template-columns: 1fr;
    border-bottom: 2px solid #111;
  }

  .pricing-head,
  .pricing-cell {
    border-right: 0;
  }

  /* Interleave heads and prices on narrow screens so each duration label
     stays visually paired with its price. Source order: 3 heads then 3 cells.
     `order` rewrites the visual flow into head/cell pairs. */
  .pricing-table .pricing-head:nth-child(1) { order: 1; }
  .pricing-table .pricing-cell:nth-child(4) { order: 2; }
  .pricing-table .pricing-head:nth-child(2) { order: 3; }
  .pricing-table .pricing-cell:nth-child(5) { order: 4; }
  .pricing-table .pricing-head:nth-child(3) { order: 5; }
  .pricing-table .pricing-cell:nth-child(6) { order: 6; }

  .pricing-table-single {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* === BATCH 003 ADDITIONS === */

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text);
  max-width: 60ch;
}

.hero-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.45;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--primary);
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text);
}

.plain-list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.5;
}

.plain-list li::before {
  content: "•";
  position: absolute;
  left: .15rem;
  top: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-map {
  padding: 0;
  overflow: hidden;
  display: flex;
  min-height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 980px) {
  .contact-map {
    min-height: 280px;
  }
  .contact-map iframe {
    min-height: 280px;
  }
}



/* === BATCH 006: News poster card === */

.news-card-poster {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.news-card-poster .news-poster-link {
  display: block;
  background: var(--surface-2);
  border-radius: 16px;
  overflow: hidden;
}

.news-card-poster img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 0;
  background: var(--surface-2);
  display: block;
}

/* === BATCH 007: Veranstaltungen vertical stack === */

.news-grid.news-grid-stack {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.news-card-copy {
  padding: 1.5rem;
}

.news-card-copy p {
  margin: 0;
}
