@charset "UTF-8";

.subpage {
  background:
    radial-gradient(circle at top left, rgba(220, 182, 144, 0.38), transparent 28%),
    radial-gradient(circle at top right, rgba(104, 124, 93, 0.18), transparent 24%),
    linear-gradient(180deg, #f9f4ec 0%, #f5eee1 55%, #f1e7d8 100%);
}

.subpage .page-shell::before {
  top: 24px;
  right: -180px;
}

.subpage .page-shell::after {
  top: 540px;
  left: -120px;
}

.subpage .home-nav-bar {
  padding-top: 0;
}

.subpage .home-nav-panel {
  box-shadow: 0 12px 30px rgba(85, 54, 40, 0.08);
}

.subpage .panel {
  background: rgba(255, 250, 244, 0.9);
}

.clean-content {
  display: grid;
  gap: 26px;
}

.page-prose {
  display: grid;
  gap: 18px;
  line-height: 1.75;
  color: var(--text);
}

.page-prose p {
  margin: 0;
}

.contact-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(247, 239, 228, 0.96));
  box-shadow: 0 12px 28px rgba(85, 54, 40, 0.06);
}

.contact-banner img {
  width: 88px;
  height: auto;
}

.contact-banner h2 {
  margin: 0 0 6px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.5rem;
}

.contact-banner p {
  margin: 0;
  line-height: 1.7;
}

.contact-banner-note {
  margin-top: 8px !important;
  color: #b03333;
  font-weight: 700;
}

.litter-list {
  display: grid;
  gap: 26px;
}

.litter-section {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 12px 28px rgba(85, 54, 40, 0.05);
}

.litter-heading {
  text-align: center;
  line-height: 1.75;
}

.litter-heading p {
  margin: 0;
}

.litter-heading a {
  color: var(--accent-deep);
}

.litter-table-wrap {
  overflow-x: auto;
}

.litter-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.litter-table th,
.litter-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(95, 63, 49, 0.12);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.litter-table th {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1rem;
}

.litter-table td a {
  color: var(--accent-deep);
}

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

.catalog-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 12px 28px rgba(85, 54, 40, 0.05);
}

.catalog-image {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.catalog-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.catalog-section {
  display: grid;
  gap: 16px;
}

.catalog-section-heading h2 {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.memory-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 12px 28px rgba(85, 54, 40, 0.05);
}

.memory-image {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.memory-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.memory-copy {
  display: grid;
  gap: 6px;
  line-height: 1.7;
}

.memory-copy a {
  color: var(--accent-deep);
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 12px 28px rgba(85, 54, 40, 0.05);
}

.content-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.content-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 244, 235, 0.94), rgba(242, 230, 214, 0.92));
}

.content-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 14px;
}

.content-card-copy {
  display: grid;
  gap: 8px;
  line-height: 1.7;
}

.content-card-copy a {
  color: var(--accent-deep);
}

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

.content-facts {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(246, 236, 221, 0.72);
}

.content-facts p {
  margin: 0;
}

.page-layout {
  display: grid;
  gap: 20px;
  padding: 8px 0 40px;
}

.page-heading {
  padding: 28px;
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(104, 124, 93, 0.12);
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-heading h1 {
  margin: 0 0 10px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.page-heading p {
  margin: 0;
  max-width: 74ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.page-content {
  padding: 24px;
  overflow-x: auto;
}

.news-year-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.news-year-nav a,
.news-year-nav span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: rgba(255, 250, 244, 0.75);
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
}

.news-year-nav span[aria-current="page"] {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff9f4;
  border-color: transparent;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-entry {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 12px 28px rgba(85, 54, 40, 0.05);
}

.news-entry-date {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-entry-body {
  display: grid;
  gap: 10px;
  line-height: 1.7;
}

.news-entry-body > :first-child {
  margin-top: 0;
}

.news-entry-body > :last-child {
  margin-bottom: 0;
}

.news-entry-body a {
  color: var(--accent-deep);
}

.news-entry-body img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin: 8px 10px 8px 0;
  border-radius: 18px;
}

.legacy-content {
  color: var(--text);
}

.legacy-content > :first-child {
  margin-top: 0 !important;
}

.legacy-content p,
.legacy-content td,
.legacy-content li,
.legacy-content div,
.legacy-content span,
.legacy-content font,
.legacy-content b {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif !important;
  color: inherit;
}

.legacy-content p,
.legacy-content td,
.legacy-content li,
.legacy-content div {
  line-height: 1.65;
}

.legacy-content a {
  color: var(--accent-deep);
}

.legacy-content table {
  margin: 18px 0;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: table;
  border-collapse: separate !important;
  border-spacing: 12px !important;
  table-layout: auto;
}

.legacy-content tr {
  vertical-align: top;
}

.legacy-content tr,
.legacy-content td,
.legacy-content th {
  height: auto !important;
}

.legacy-content td,
.legacy-content th {
  padding: 12px 14px;
  width: auto !important;
  max-width: none !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.legacy-content table[width],
.legacy-content tbody[width],
.legacy-content tr[width],
.legacy-content td[width],
.legacy-content th[width] {
  width: auto !important;
}

.legacy-content table[border]:not([border="0"]):not([id^="fpGalleryTable"]) {
  border-spacing: 14px !important;
}

.legacy-content table[border]:not([border="0"]):not([id^="fpGalleryTable"]) td,
.legacy-content table[border]:not([border="0"]):not([id^="fpGalleryTable"]) th {
  border: 1px solid rgba(95, 63, 49, 0.14) !important;
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.94);
  box-shadow: 0 8px 20px rgba(85, 54, 40, 0.04);
}

.legacy-content table[border="0"]:not([id^="fpGalleryTable"]) td,
.legacy-content table[border="0"]:not([id^="fpGalleryTable"]) th,
.legacy-content table:not([border]):not([id^="fpGalleryTable"]) td,
.legacy-content table:not([border]):not([id^="fpGalleryTable"]) th {
  padding: 10px 12px;
}

.legacy-content table[id^="fpGalleryTable"],
.legacy-content table[id^="fpGalleryTable"] table {
  margin: 0;
  min-width: 0;
  width: auto !important;
  border-spacing: 0 !important;
}

.legacy-content table[id^="fpGalleryTable"] td,
.legacy-content table[id^="fpGalleryTable"] th,
.legacy-content table[id^="fpGalleryTable"] table td,
.legacy-content table[id^="fpGalleryTable"] table th {
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legacy-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 16px;
}

.legacy-content img.legacy-upgraded-thumb {
  width: min(180px, 100%) !important;
  max-width: 100% !important;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(85, 54, 40, 0.08);
}

.legacy-content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.page-footer {
  padding: 0 0 48px;
}

.page-footer-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-footer-bar p {
  margin: 0;
  color: var(--muted);
}

.page-footer-bar .footer-badge {
  justify-self: end;
}

.dog-portrait-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.5fr) minmax(180px, 0.72fr);
  gap: 20px;
  align-items: start;
}

.dog-photo-column {
  display: grid;
  gap: 18px;
}

.dog-photo-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.92);
  box-shadow: 0 14px 30px rgba(85, 54, 40, 0.06);
}

.dog-photo-link {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 244, 235, 0.94), rgba(242, 230, 214, 0.92));
}

.dog-photo-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dog-photo-card p {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--muted);
}

.dog-main-column {
  display: grid;
  gap: 18px;
}

.dog-main-card,
.dog-stat-grid,
.dog-notes,
.pedigree-table-block {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 12px 28px rgba(85, 54, 40, 0.05);
}

.dog-main-card {
  display: grid;
  gap: 18px;
}

.dog-main-image {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.dog-main-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(250, 244, 235, 0.94), rgba(242, 230, 214, 0.92));
}

.dog-main-copy {
  display: grid;
  gap: 6px;
  text-align: center;
}

.dog-main-copy h2 {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.dog-main-copy p {
  margin: 0;
  font-weight: 700;
}

.dog-main-age {
  color: var(--accent-deep);
}

.dog-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dog-stat {
  padding: 14px 16px;
  text-align: center;
  border-radius: 18px;
  background: rgba(246, 236, 221, 0.72);
  font-weight: 700;
}

.dog-notes {
  display: grid;
  gap: 14px;
  line-height: 1.7;
}

.dog-notes a,
.pedigree-table-card a {
  color: var(--accent-deep);
}

.pedigree-table-block {
  display: grid;
  gap: 16px;
}

.pedigree-table-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr 1fr;
  gap: 10px;
}

.pedigree-table-card {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: rgba(246, 236, 221, 0.72);
  line-height: 1.6;
}

.pedigree-table-card.is-parent {
  background: linear-gradient(180deg, rgba(239, 224, 203, 0.92), rgba(246, 236, 221, 0.84));
}

.pedigree-table-card p {
  margin: 0;
}

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

.dog-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.92);
  box-shadow: 0 14px 32px rgba(85, 54, 40, 0.08);
}

.dog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(250, 244, 235, 0.94), rgba(242, 230, 214, 0.92));
}

.dog-card-body {
  padding: 18px;
}

.dog-card-body h3 {
  margin: 0 0 6px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.25rem;
}

.dog-meta {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.dog-note {
  color: var(--accent-deep);
  font-weight: 700;
}

.section-copy {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.subsection-title {
  margin: 8px 0 8px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.7rem;
}

.pedigree-block {
  margin: 28px 0 34px;
  padding: 24px;
  border: 1px solid rgba(95, 63, 49, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(248, 240, 228, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.pedigree-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
}

.pedigree-heading h2 {
  margin: 0 0 6px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.65rem;
}

.pedigree-heading p {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(104, 124, 93, 0.12);
  color: var(--leaf);
  font-weight: 700;
}

.pedigree-table-scroll {
  overflow-x: auto;
  padding-bottom: 4px;
}

.pedigree-native-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 12px 10px;
  table-layout: fixed;
}

.pedigree-native-table tbody,
.pedigree-native-table tr {
  background: transparent;
}

.pedigree-native-cell {
  padding: 14px 16px;
  vertical-align: top;
  border: 1px solid rgba(95, 63, 49, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.95);
  box-shadow: 0 10px 24px rgba(85, 54, 40, 0.05);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.55;
}

.pedigree-native-cell.is-parent {
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.98) 0%, rgba(247, 235, 217, 0.95) 100%);
}

.pedigree-native-cell p {
  margin: 0;
}

.pedigree-native-cell a {
  color: var(--accent-deep);
}

.pedigree-native-cell b,
.pedigree-native-cell strong {
  font-size: 1.04rem;
}

.pedigree-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 1fr;
  gap: 14px;
}

.pedigree-card {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(95, 63, 49, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.95);
  box-shadow: 0 10px 24px rgba(85, 54, 40, 0.05);
}

.pedigree-card strong,
.pedigree-card a {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.05rem;
}

.pedigree-card a {
  color: var(--accent-deep);
  text-decoration: none;
}

.pedigree-card a:hover {
  text-decoration: underline;
}

.pedigree-card p {
  margin: 0;
  line-height: 1.5;
}

.pedigree-stack {
  display: grid;
  gap: 14px;
}

.pedigree-card.is-parent {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 260px;
  padding: 22px;
  border-color: rgba(95, 63, 49, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.98) 0%, rgba(247, 235, 217, 0.95) 100%);
}

.pedigree-card.is-parent strong,
.pedigree-card.is-parent a {
  font-size: 1.2rem;
  line-height: 1.45;
}

.legacy-content > table[width="1160"][style*="border-width: 0px"] {
  display: none;
}

.legacy-content > table#table3 {
  display: none;
}

.puppy-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 16px 0 26px;
}

.puppy-pair-card {
  display: grid;
  gap: 16px;
  align-content: start;
  grid-template-rows: auto 1fr;
}

.puppy-pair-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250, 244, 235, 0.94), rgba(242, 230, 214, 0.92));
  box-shadow: 0 12px 26px rgba(85, 54, 40, 0.08);
}

.puppy-pair-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.puppy-pair-copy {
  display: grid;
  gap: 6px;
  align-content: start;
  text-align: center;
}

.puppy-pair-copy h2 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 3.8rem;
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.35;
}

.puppy-pair-copy h2 a {
  color: var(--accent-deep);
  text-decoration: none;
}

.puppy-pair-copy h2 a:hover {
  text-decoration: underline;
}

.puppy-pair-copy p {
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
}

.puppy-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 8px;
}

.puppy-info-card {
  padding: 24px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.9);
  box-shadow: 0 12px 28px rgba(85, 54, 40, 0.06);
}

.puppy-info-card h2 {
  margin: 0 0 14px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.puppy-info-card ul {
  margin: 0;
  padding-left: 20px;
}

.puppy-info-card li {
  margin: 0 0 10px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .page-heading,
  .page-content {
    padding: 20px;
  }

  .clean-content {
    gap: 20px;
  }

  .contact-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pedigree-block {
    padding: 18px;
    border-radius: 20px;
  }

  .legacy-content table {
    border-spacing: 8px !important;
  }

  .legacy-content > table:not([id^="fpGalleryTable"]),
  .legacy-content > div > table:not([id^="fpGalleryTable"]) {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .legacy-content td,
  .legacy-content th {
    padding: 10px 12px;
  }

  .legacy-content p,
  .legacy-content td,
  .legacy-content li,
  .legacy-content div {
    font-size: 0.97rem !important;
    line-height: 1.55;
  }

  .legacy-content img.legacy-upgraded-thumb {
    width: min(132px, 100%) !important;
  }

  .page-heading h1 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    line-height: 1.12;
  }

  .page-heading p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .news-year-nav {
    gap: 8px;
  }

  .news-year-nav a,
  .news-year-nav span {
    padding: 8px 11px;
    font-size: 0.94rem;
  }

  .page-footer-bar {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

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

  .content-card-grid,
  .content-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .dog-portrait-layout {
    grid-template-columns: 1fr;
  }

  .dog-photo-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pedigree-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .pedigree-card.is-parent {
    min-height: auto;
  }

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

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

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

@media (max-width: 720px) {
  .dog-photo-column,
  .dog-stat-grid,
  .pedigree-table-scroll {
    margin-inline: -4px;
  }

  .dog-main-card,
  .dog-stat-grid,
  .dog-notes,
  .pedigree-table-block {
    padding: 18px;
  }

  .dog-main-image img {
    max-height: none;
  }

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