﻿:root {
  --red: #c9262c;
  --red-dark: #8f1822;
  --green: #087b45;
  --blue: #173f78;
  --ink: #18212f;
  --muted: #5e6877;
  --line: #dfe5ec;
  --soft: #f3f6f8;
  --paper: #ffffff;
  --gold: #d6a63c;
  --shadow: 0 20px 50px rgba(19, 35, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #344154;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-drop-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 310px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #344154;
  font-size: 13px;
  line-height: 1.25;
}

.nav-menu a:hover {
  color: var(--red);
  background: var(--soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.top-social {
  position: sticky;
  top: 83px;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--ink);
}

.top-social > span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.social-link.instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c 52%, #f77737);
}

.social-link.facebook {
  background: #1877f2;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: auto;
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px) clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 20%, rgba(8, 123, 69, 0.12), transparent 28%),
    linear-gradient(120deg, rgba(23, 63, 120, 0.08), transparent 36%),
    linear-gradient(310deg, rgba(8, 123, 69, 0.12), transparent 38%),
    #fbfcfd;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 680px;
}

.hero-programs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(143, 24, 34, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  background: #065f36;
}

.button.secondary {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-photo {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24, 33, 47, 0.72));
}

.hero-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}

.visual-card,
.visual-grid div,
.feature-row article,
.campus-card,
.course-panel,
.contact-grid div,
.logo-grid article,
.subsite-grid a,
.photo-gallery figure,
.leader-grid article,
.office-grid article,
.institute-logo-grid article,
.payment-grid article,
.affiliation-strip,
.table-wrap,
.inquiry-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-card.main {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-top: 5px solid var(--red);
}

.overview-photo-card {
  display: block;
  padding: 0;
  border-top: 0;
  overflow: hidden;
}

.hero-visual .overview-photo-card img {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  min-height: 260px;
  object-fit: cover;
  object-position: center center;
}

.visual-card img {
  width: 112px;
  height: 96px;
  object-fit: contain;
}

.visual-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}

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

.visual-grid div {
  min-height: 108px;
  padding: 16px;
  box-shadow: none;
}

.visual-grid strong,
.visual-grid span {
  display: block;
}

.visual-grid strong {
  margin-bottom: 8px;
}

.visual-grid span {
  color: var(--muted);
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.stats div {
  padding: 28px clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.icon-sprite {
  display: none;
}

.section.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  max-width: none;
  align-items: end;
}

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

.feature-row article,
.campus-card,
.contact-grid div {
  padding: 24px;
  box-shadow: none;
}

.icon,
.campus-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 48px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.feature-row p,
.campus-card p,
.course-panel p,
.contact-grid p {
  color: var(--muted);
}

.experience-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.experience-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
}

.experience-panel h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.experience-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.institute-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.institute-logo-grid article {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  place-items: center;
  gap: 12px;
  min-height: 174px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: none;
}

.institute-logo-grid img {
  max-width: 104px;
  max-height: 90px;
  object-fit: contain;
}

.program-badge {
  --badge-main: #963033;
  --badge-panel: #0b4f93;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 5px solid var(--badge-main);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 48%, transparent 49%),
    linear-gradient(145deg, #fff 0 8%, transparent 24%),
    var(--badge-main);
  box-shadow: 0 10px 18px rgba(10, 37, 64, 0.16);
  color: var(--badge-main);
  text-align: center;
  justify-self: center;
  position: relative;
}

.program-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid #f2c314;
  border-radius: 50%;
}

.program-badge::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--badge-panel);
  border: 2px solid #fff;
}

.program-badge span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--badge-main);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-5px);
}

.program-badge small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(13px);
}

.badge-college,
.badge-pharmacy {
  --badge-main: #963033;
  --badge-panel: #0b4f93;
}

.badge-nursing,
.badge-ayush {
  --badge-main: #963033;
  --badge-panel: #0b4f93;
}

.badge-naturopathy {
  --badge-main: #963033;
  --badge-panel: #0b4f93;
}

.badge-naturopathy span,
.badge-ayush span {
  font-size: 23px;
}

.badge-naturopathy small,
.badge-ayush small {
  font-size: 7px;
}

.institute-logo-grid strong {
  font-size: 14px;
  line-height: 1.25;
}

.affiliation-strip {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  box-shadow: none;
}

.affiliation-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border-radius: 8px;
  background: var(--soft);
}

.affiliation-logo img {
  max-width: 132px;
  max-height: 90px;
  object-fit: contain;
}

.affiliation-graphic {
  width: 104px;
  height: 104px;
}

.affiliation-graphic .graphic-ring {
  fill: #eaf4ff;
  stroke: #0f5f9f;
  stroke-width: 4;
}

.affiliation-graphic .graphic-document {
  fill: #fff;
  stroke: #16365f;
  stroke-linejoin: round;
  stroke-width: 4;
}

.affiliation-graphic .graphic-fold,
.affiliation-graphic .graphic-line {
  fill: none;
  stroke: #4d6b86;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.affiliation-graphic .graphic-check {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.affiliation-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.affiliation-strip p {
  margin: 0;
  color: var(--muted);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.logo-grid article {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 154px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: none;
}

.logo-grid img {
  max-width: 118px;
  max-height: 78px;
  object-fit: contain;
}

.logo-grid .mgsu-logo-card {
  min-height: 178px;
}

.logo-grid .mgsu-logo-card img {
  max-width: 168px;
  max-height: 116px;
}

.logo-grid strong {
  font-size: 13px;
  line-height: 1.25;
}

.text-logo span {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.subsite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.subsite-grid a {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.subsite-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 38, 44, 0.45);
}

.subsite-grid a > span:not(.program-badge) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.subsite-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  justify-self: start;
}

.program-badge.subsite-logo {
  width: 74px;
  height: 74px;
  border-width: 4px;
  justify-self: start;
}

.program-badge.subsite-logo::before {
  inset: 10px;
}

.program-badge.subsite-logo::after {
  right: 12px;
  bottom: 10px;
  left: 12px;
  height: 13px;
}

.program-badge.subsite-logo span {
  font-size: 21px;
}

.program-badge.subsite-logo.badge-naturopathy span,
.program-badge.subsite-logo.badge-ayush span {
  font-size: 15px;
}

.program-badge.subsite-logo small {
  margin-top: 5px;
  font-size: 7px;
  transform: translateY(10px);
}

.subsite-grid strong {
  font-size: 19px;
  line-height: 1.22;
}

.subsite-grid a > small {
  align-self: end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.brochure-courses {
  background:
    linear-gradient(180deg, #fff, #f8fbfa),
    var(--paper);
}

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

.course-brochure-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 265px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 120, 0.16);
  border-radius: 8px;
  background: #fff;
}

.course-brochure-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.course-brochure-card span {
  justify-self: start;
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-brochure-card h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.course-brochure-card p {
  margin: 0;
  color: var(--blue);
  font-weight: 900;
}

.course-brochure-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.course-brochure-card dl div {
  padding: 10px;
  border-radius: 6px;
  background: var(--soft);
}

.course-brochure-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-brochure-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.course-brochure-card small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.facilities-section {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #112c52);
}

.facilities-section .eyebrow,
.facilities-section .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.facilities-grid article {
  display: grid;
  gap: 10px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.facilities-grid span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  min-height: 30px;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.facilities-grid strong {
  font-size: 17px;
  line-height: 1.2;
}

.college-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #27435e);
}

.college-hero h1 {
  font-size: clamp(36px, 6vw, 68px);
}

.college-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0 14px;
}

.college-title-row h1 {
  margin: 0;
}

.college-title-logo {
  flex: 0 0 auto;
  width: clamp(58px, 7vw, 84px);
  height: clamp(58px, 7vw, 84px);
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.college-hero p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.college-logo-card {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #fff;
}

.college-logo-card img {
  max-width: 220px;
  max-height: 160px;
  object-fit: contain;
}

.college-logo-card .program-badge {
  width: 148px;
  height: 148px;
  border-width: 7px;
}

.college-logo-card .program-badge::before {
  inset: 22px;
}

.college-logo-card .program-badge::after {
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: 23px;
}

.college-logo-card .program-badge span {
  font-size: 42px;
}

.college-logo-card .program-badge.badge-naturopathy span,
.college-logo-card .program-badge.badge-ayush span {
  font-size: 32px;
}

.college-logo-card .program-badge small {
  margin-top: 10px;
  font-size: 12px;
  transform: translateY(19px);
}

.college-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 38px rgba(18, 32, 58, 0.18);
}

.college-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
}

.college-photo-card figcaption {
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(18, 32, 58, 0.78);
}

.bnys-page .college-hero {
  background:
    linear-gradient(135deg, rgba(19, 67, 76, 0.96), rgba(27, 80, 66, 0.9)),
    radial-gradient(circle at 85% 20%, rgba(214, 166, 60, 0.24), transparent 34%);
}

.bnys-hero-photo img {
  aspect-ratio: 5 / 4;
}

.bnys-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: center;
}

.bnys-intro h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 48px);
}

.bnys-intro p {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}

.bnys-metrics {
  display: grid;
  gap: 12px;
}

.bnys-metrics article {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid #1f7a63;
  border-radius: 8px;
  background: #fff;
}

.bnys-metrics strong {
  display: block;
  color: #1f5f53;
  font-size: 24px;
}

.bnys-metrics span {
  color: var(--muted);
  font-size: 14px;
}

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

.bnys-learning-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.bnys-learning-grid h3 {
  padding: 18px 18px 0;
  font-size: 20px;
}

.bnys-learning-grid p {
  padding: 0 18px 20px;
  color: var(--muted);
  font-size: 15px;
}

.college-details {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 18px;
}

.detail-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  font-weight: 700;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.course-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.college-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.leader-grid article {
  min-height: 190px;
  padding: 22px;
  box-shadow: none;
}

.leader-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.leader-grid p {
  color: var(--muted);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.office-grid.top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.office-grid article {
  padding: 24px;
  box-shadow: none;
}

.profile-photo {
  display: block;
  width: 108px;
  height: 124px;
  margin-bottom: 16px;
  border: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.office-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.office-grid.top span {
  background: var(--red);
}

.office-grid p {
  color: var(--muted);
}

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

.eligibility-grid article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.eligibility-grid h3 {
  font-size: 18px;
}

.eligibility-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.disclosure-hero {
  background: linear-gradient(135deg, #173f78, #8f1822);
}

.disclosure-note {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 166, 60, 0.45);
  border-radius: 8px;
  background: rgba(214, 166, 60, 0.12);
}

.disclosure-note strong {
  color: var(--red-dark);
}

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

.document-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.document-list a,
.detail-list a {
  color: var(--red);
  font-weight: 800;
}

.leader-profile {
  max-width: 920px;
  box-shadow: none;
}

.leader-profile p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.table-wrap {
  overflow-x: auto;
  box-shadow: none;
}

.institute-table {
  width: 100%;
  min-width: 1220px;
  border-collapse: collapse;
  font-size: 14px;
}

.institute-table th,
.institute-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.institute-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.institute-table tbody tr:nth-child(even) {
  background: #f9fbfc;
}

.institute-table a {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.institute-table .table-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
}

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

.campus-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.campus-card:nth-child(2) span {
  background: var(--green);
}

.campus-card:nth-child(3) span {
  background: var(--red);
}

.campus-card:nth-child(4) span {
  background: var(--gold);
}

.campus-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
}

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

.course-panel {
  padding: 26px;
  box-shadow: none;
}

.course-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.course-panel li + li {
  margin-top: 8px;
}

.course-panel.accent {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.course-panel.accent p {
  color: rgba(255, 255, 255, 0.78);
}

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

.course-directory article {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.course-directory span {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.course-directory h3 {
  margin: 0;
  font-size: 21px;
}

.course-directory p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.course-directory a {
  align-self: end;
  margin-top: 4px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.course-info-section {
  background: #fff;
}

.course-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.course-info-grid article {
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.course-info-grid span {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.course-info-grid article:nth-child(2) span {
  background: var(--blue);
}

.course-info-grid article:nth-child(3) span {
  background: var(--red);
}

.course-info-grid article:nth-child(4) span {
  color: var(--ink);
  background: var(--gold);
}

.course-info-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.course-info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.payment-qr-panel {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.payment-qr-panel img {
  width: 100%;
  max-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #f5f5f5;
}

.payment-qr-panel span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.payment-qr-panel h3 {
  font-size: clamp(26px, 4vw, 42px);
}

.payment-qr-panel p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

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

.photo-gallery figure {
  overflow: hidden;
  box-shadow: none;
}

.photo-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gallery-identity {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--soft);
}

.gallery-identity .program-badge {
  width: 116px;
  height: 116px;
  border-width: 6px;
}

.gallery-identity .program-badge::before {
  inset: 17px;
}

.gallery-identity .program-badge::after {
  right: 21px;
  bottom: 18px;
  left: 21px;
  height: 19px;
}

.gallery-identity .program-badge span {
  font-size: 34px;
}

.gallery-identity .program-badge.badge-naturopathy span,
.gallery-identity .program-badge.badge-ayush span {
  font-size: 25px;
}

.gallery-identity .program-badge small {
  font-size: 10px;
  transform: translateY(15px);
}

.photo-gallery figcaption {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
}

.admissions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #223b58);
}

.admissions p {
  color: rgba(255, 255, 255, 0.76);
}

.admission-copy img {
  width: 100%;
  margin-top: 24px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  object-fit: cover;
}

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

.payment-grid article {
  padding: 26px;
  box-shadow: none;
}

.payment-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.payment-grid p,
.payment-note {
  color: var(--muted);
}

.payment-grid .button {
  margin: 6px 8px 0 0;
}

.payment-grid .button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.72;
}

.payment-note {
  margin: 18px 0 0;
  font-weight: 700;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
}

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

.placement-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.placement-card-copy p:not(.eyebrow) {
  color: var(--muted);
}

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

.placement-highlights article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.placement-highlights span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.placement-highlights article:nth-child(2) span {
  background: var(--blue);
}

.placement-highlights article:nth-child(3) span {
  background: var(--red);
}

.placement-highlights strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.placement-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

.inquiry-form label,
.placement-form label {
  display: grid;
  gap: 7px;
  color: #344154;
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.placement-form input,
.placement-form select,
.placement-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.inquiry-form textarea,
.placement-form textarea {
  resize: vertical;
}

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

.checkbox-field {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.alumni-section {
  background: #fff;
}

.section-heading.compact {
  margin-top: 44px;
}

.alumni-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 22px;
  align-items: start;
}

.alumni-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: none;
}

.alumni-panel {
  padding: 26px;
  border: 1px solid rgba(8, 123, 69, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(8, 123, 69, 0.08), rgba(214, 166, 60, 0.12));
}

.alumni-panel h3 {
  margin-top: 0;
  color: var(--ink);
}

.alumni-panel p {
  color: var(--muted);
}

.alumni-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.alumni-chips span,
.alumni-board span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.alumni-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.alumni-board article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.alumni-photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(143, 24, 34, 0.12), rgba(8, 123, 69, 0.14));
  color: var(--red-dark);
  font-weight: 900;
  overflow: hidden;
}

.alumni-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alumni-board h3 {
  margin: 12px 0 4px;
}

.alumni-board p {
  margin: 0 0 8px;
  color: var(--muted);
}

.alumni-board strong {
  color: var(--ink);
}

.page-hero {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, var(--red-dark), var(--ink));
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.95;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.awards-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.awards-grid .award-photo-card {
  grid-column: span 2;
}

.college-award-card {
  max-width: 980px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.award-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.awards-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214, 166, 60, 0.18);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
}

.awards-grid p {
  color: var(--muted);
}

.award-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.award-link:hover {
  background: #065f36;
}

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

.contact a,
.site-footer a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.whatsapp-chat,
.call-chat {
  position: fixed;
  right: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

.whatsapp-chat {
  bottom: 22px;
  background: #128c7e;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.34);
}

.call-chat {
  bottom: 88px;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(201, 38, 44, 0.28);
}

.whatsapp-chat span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #25d366;
  line-height: 1;
}

.whatsapp-chat svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}

.call-chat span {
  display: inline-grid;
  place-items: center;
  height: 36px;
  min-width: 46px;
  padding: 0 8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: var(--red-dark);
  font-size: 12px;
  line-height: 1;
}

.whatsapp-chat strong,
.call-chat strong {
  white-space: nowrap;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .admissions,
  .placement-layout,
  .alumni-layout,
  .experience-panel,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .stats,
  .campus-grid,
  .course-layout,
  .brochure-course-grid,
  .subsite-grid,
  .facilities-grid,
  .placement-highlights,
  .institute-logo-grid,
  .payment-grid,
  .leader-grid,
  .office-grid,
  .office-grid.top,
  .eligibility-grid,
  .course-directory,
  .course-info-grid,
  .payment-qr-panel,
  .college-details,
  .college-hero,
  .bnys-intro,
  .bnys-learning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row,
  .contact-grid,
  .alumni-board,
  .placement-layout,
  .awards-grid,
  .logo-grid,
  .photo-gallery,
  .disclosure-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .awards-grid .award-photo-card {
    grid-column: auto;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .top-social {
    position: static;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .top-social > span {
    flex: 1 0 100%;
  }

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

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-drop-link {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu {
    position: static;
    min-width: 0;
    padding: 6px 0 10px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    transform: none;
  }

  .nav-menu a {
    padding: 9px 0;
    border-bottom: 0;
    color: var(--muted);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .visual-card.main {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 260px;
  }

  .visual-grid,
  .stats,
  .campus-grid,
  .course-layout,
  .brochure-course-grid,
  .subsite-grid,
  .facilities-grid,
  .photo-gallery,
  .form-row,
  .alumni-layout,
  .alumni-board,
  .awards-grid,
  .payment-grid,
  .leader-grid,
  .office-grid,
  .office-grid.top,
  .eligibility-grid,
  .course-directory,
  .course-info-grid,
  .payment-qr-panel,
  .college-details,
  .college-hero,
  .bnys-intro,
  .bnys-learning-grid {
    grid-template-columns: 1fr;
  }

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

  .college-title-row {
    align-items: flex-start;
    gap: 12px;
  }

  .college-title-logo {
    width: 56px;
    height: 56px;
    padding: 6px;
  }

  .affiliation-strip {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-chat,
  .call-chat {
    right: 14px;
    min-height: 48px;
    padding-right: 12px;
  }

  .whatsapp-chat {
    bottom: 14px;
  }

  .call-chat {
    bottom: 76px;
  }

  .whatsapp-chat strong,
  .call-chat strong {
    max-width: 132px;
    white-space: normal;
    line-height: 1.15;
  }
}


.hero-visual .overview-photo-card .hero-main-photo {
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  min-height: 260px;
  object-fit: cover;
  object-position: center center;
}

.hero-visual .visual-card.main.overview-photo-card {
  display: block;
  grid-template-columns: none;
  padding: 0;
  border-top: 0;
}

.hero-visual .visual-card.main.overview-photo-card .hero-main-photo {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  min-height: 260px;
  object-fit: cover;
  object-position: center center;
}