:root {
  --bg: #0c1310;
  --bg-soft: #132019;
  --paper: #edf2eb;
  --ink: #e4eee5;
  --muted: #acc0b3;
  --accent: #c9a96e;
  --accent-deep: #a8844a;
  --line: #25342a;
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% -10%, rgba(201, 169, 110, 0.16), transparent 38%),
    radial-gradient(circle at 10% 16%, rgba(64, 111, 82, 0.22), transparent 42%),
    var(--bg);
  line-height: 1.6;
}

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

.site-header {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(7, 12, 9, 0.62), rgba(7, 12, 9, 0.22)),
    url("../assets/img/doberman_zahlavi-foto.png") center 30%/cover no-repeat;
  position: relative;
  isolation: isolate;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28vh;
  background: linear-gradient(to bottom, rgba(16, 18, 16, 0), var(--bg));
  z-index: -1;
}

.nav-wrap {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  background: rgba(16, 18, 16, 0.72);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.nav-wrap.nav-scrolled {
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.04em;
}

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

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.hero {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 13vh 0 14vh;
}

.hero-kicker {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero h1 {
  margin: 0.8rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 6.2vw, 5.2rem);
  max-width: 14ch;
  line-height: 0.95;
  text-wrap: balance;
}

.hero p {
  margin: 0;
  max-width: 62ch;
  color: #d4d8cf;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-weight: 700;
  font-size: 0.94rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #231f14;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #dbc07b;
}

.btn-ghost {
  border-color: #787b71;
  color: #e4e6de;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: #a8ab9e;
  background: rgba(255, 255, 255, 0.06);
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4.8rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.overline {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.section h2 {
  margin: 0.4rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  text-wrap: balance;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-grid article,
.contact-grid article,
.facts,
.puppy-note {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem;
}

.about-grid h3,
.contact-grid h3,
.facts h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.about-grid p,
.puppy-note p,
.contact-grid p,
.facts dd {
  margin-bottom: 0;
  color: var(--muted);
}

.dog-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dogs-section-header {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dogs-section-header img {
  width: 100%;
  aspect-ratio: 21 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dog-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.dog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.dog-card div {
  padding: 1rem;
}

.dog-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.dog-card p {
  margin: 0;
  color: var(--muted);
}

.section-puppies {
  background:
    linear-gradient(130deg, rgba(196, 123, 69, 0.13), transparent 42%),
    linear-gradient(220deg, rgba(30, 63, 45, 0.52), transparent 55%);
  border-radius: 1.2rem;
  padding-inline: clamp(1rem, 2.8vw, 2rem);
}

.puppies-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
}

.puppy-note ul {
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.facts dl {
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.facts dt {
  font-weight: 700;
  color: var(--paper);
}

.facts dd {
  margin: 0.2rem 0 0;
}

/* ── Litter gallery pages ── */
.gallery-intro {
  max-width: 74ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 0.85rem 0.95rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Contact layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
}

.contact-info-item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.contact-info-item a,
.contact-info-item p {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--ink);
  font-weight: 400;
}

/* ── Contact form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #4a5248;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}

/* ── Section "more" link ── */
.section-more {
  margin-top: 1.75rem;
}

/* ── Sub-page hero (smaller header) ── */
.page-header {
  background:
    linear-gradient(120deg, rgba(7, 12, 9, 0.72), rgba(7, 12, 9, 0.36)),
    url("../assets/img/zahlavi_forest.png") center center/cover no-repeat;
  position: relative;
  isolation: isolate;
  padding-top: 0;
}

.page-header.page-header-dogs {
  background:
    linear-gradient(120deg, rgba(7, 12, 9, 0.72), rgba(7, 12, 9, 0.36)),
    url("../assets/img/zahlavi_s_dobrmany.png") 86% center/cover no-repeat;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12vh;
  background: linear-gradient(to bottom, rgba(16, 18, 16, 0), var(--bg));
  z-index: -1;
}

.page-hero {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 6rem 0 5rem;
}

.page-hero .hero-kicker {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.page-hero h1 {
  margin: 0.6rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  text-wrap: balance;
}

/* ── Dog profile (subpage) ── */
.dog-profile {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.dog-profile:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.dog-profile img {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.dog-profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dog-profile-info h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.dog-profile-info p {
  color: var(--muted);
  margin: 0;
}

.dog-meta {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dog-meta li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.dog-meta li strong {
  color: var(--ink);
}

/* ── Litter / štěňata subpage ── */
.litter-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.litter-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
}

.litter-info p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.litter-info ul {
  padding-left: 1.2rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.litter-info ul li {
  margin-bottom: 0.4rem;
}

.puppy-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.puppy-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
}

/* ── O nás subpage ── */
.about-full p {
  color: var(--muted);
  max-width: 72ch;
  margin: 0 0 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.values-grid article {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
}

.values-grid h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.values-grid p {
  color: var(--muted);
  margin: 0;
}

/* ── Responsive additions ── */
@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .dog-profile {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 740px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .puppy-photos {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.portfolio-disclaimer {
  margin: 0.55rem auto 0;
  max-width: 72ch;
  font-size: 0.86rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--muted) 88%, #ffffff 12%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .about-grid,
  .dog-cards,
  .contact-grid,
  .puppies-layout,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 8vh;
  }

  .page-header.page-header-dogs {
    background-position: 80% center;
  }
}

@media (max-width: 740px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.24rem;
    background: transparent;
    color: var(--ink);
    border: 1px solid #4a4f48;
    border-radius: 0.7rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.7rem;
  }

  .menu-toggle span {
    width: 16px;
    height: 2px;
    background: var(--ink);
    display: block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: #131613;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .about-grid,
  .dog-cards,
  .contact-grid,
  .puppies-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-header.page-header-dogs {
    background-position: 87% center;
  }
}

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

/* ══════════════════════════════════════════
   AWARDS – výsledky soutěží & výstav
══════════════════════════════════════════ */
.awards {
  margin-top: 1.5rem;
}

.awards-title {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.award-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.award-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 0.6rem;
  border-left: 3px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.award-item.award-gold {
  border-left-color: #c9a96e;
  background: rgba(201, 169, 110, 0.08);
}

.award-item.award-silver {
  border-left-color: #9ab3a2;
  background: rgba(154, 179, 162, 0.07);
}

.award-item.award-sport {
  border-left-color: #6e9fc9;
  background: rgba(110, 159, 201, 0.08);
}

.award-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.award-event {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
}

/* ══════════════════════════════════════════
   LITTER OVERVIEW – přehled vrhů
══════════════════════════════════════════ */
.litter-overview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.litter-card {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.litter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.litter-card-archive {
  opacity: 0.75;
}

.litter-card-archive:hover {
  opacity: 1;
}

.litter-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.litter-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.litter-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-planned {
  background: var(--accent);
  color: #1a1208;
}

.badge-archive {
  background: rgba(255, 255, 255, 0.12);
  color: var(--muted);
  border: 1px solid var(--line);
}

.litter-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.litter-card-kicker {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

.litter-card-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.litter-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.litter-card-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.litter-card-meta strong {
  color: var(--ink);
}

.litter-card-body .btn {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 0.6rem;
}

/* ══════════════════════════════════════════
   LITTER PARENTS – vrh detail
══════════════════════════════════════════ */
.litter-parents {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.litter-times {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  opacity: 0.7;
}

.parent-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-soft);
}

.parent-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.parent-card-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.parent-role {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

.parent-card-info h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.parent-card-info .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════════
   LITTER TIMELINE – časová osa vrhu
══════════════════════════════════════════ */
.litter-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.75rem;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-marker {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg-soft);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-step.step-done .timeline-marker {
  background: var(--accent);
  border-color: var(--accent);
}

.timeline-step.step-done .timeline-marker::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #1a1208;
  font-weight: 900;
}

.timeline-step.step-active .timeline-marker {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
  animation: pulse-timeline 2s ease infinite;
}

@keyframes pulse-timeline {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2); }
  50%       { box-shadow: 0 0 0 8px rgba(201, 169, 110, 0.08); }
}

.timeline-content {
  padding-top: 0.1rem;
}

.timeline-content h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════
   Responsive – doplněk
══════════════════════════════════════════ */
@media (max-width: 740px) {
  .litter-parents {
    grid-template-columns: 1fr;
  }

  .litter-times {
    padding-top: 0;
    font-size: 2rem;
    justify-content: flex-start;
  }

  .award-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .award-event {
    text-align: left;
  }
}
