:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #1b2330;
  --muted: #5c6a7d;

  --blue: #3c4f9a;
  --blue-2: #2f3f82;
  --red: #d94b3f;
  --orange: #e07a2f;

  --border: rgba(27, 35, 48, 0.12);
  --shadow: 0 18px 50px rgba(10, 18, 35, 0.12);

  --radius: 16px;
  --radius-sm: 12px;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.skip:focus {
  left: 12px;
  z-index: 10;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 251, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 35, 48, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.header__stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--orange));
}

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

.brand__logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 2px solid rgba(217, 75, 63, 0.18);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(10, 18, 35, 0.12);
  background: #fff;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--blue);
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.nav__link {
  font-weight: 600;
  font-size: 14px;
  color: rgba(27, 35, 48, 0.78);
  padding: 8px 10px;
  border-radius: 999px;
}

.nav__link:hover {
  background: rgba(60, 79, 154, 0.1);
  color: var(--blue);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 75, 63, 0.22);
  background: rgba(217, 75, 63, 0.08);
  color: rgba(27, 35, 48, 0.82);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    background 120ms ease,
    border-color 120ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(60, 79, 154, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 18px 42px rgba(60, 79, 154, 0.28);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 75, 63, 0.18);
}

.btn--secondary:hover {
  box-shadow: 0 18px 42px rgba(217, 75, 63, 0.24);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(27, 35, 48, 0.12);
  color: rgba(27, 35, 48, 0.86);
}

.btn--ghost:hover {
  border-color: rgba(60, 79, 154, 0.25);
  background: rgba(60, 79, 154, 0.08);
}

.hero {
  position: relative;
  padding: 54px 0 32px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
}

.hero__frame {
  position: absolute;
  inset: 18px 0 auto;
  height: 300px;
  border-top: 3px solid rgba(217, 75, 63, 0.25);
  border-bottom: 3px solid rgba(60, 79, 154, 0.12);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(27, 35, 48, 0.12);
  color: rgba(27, 35, 48, 0.78);
  font-weight: 600;
  margin: 0 0 16px;
}

.hero__title {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.6px;
}

.hero__subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

.stat {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: 0 10px 30px rgba(10, 18, 35, 0.08);
}

.stat__num {
  font-weight: 800;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: 0.2px;
}

.stat__label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.hero__card {
  position: relative;
  align-self: stretch;
}

.hero-card {
  height: 100%;
  background: var(--surface);
  border: 2px solid rgba(217, 75, 63, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.hero-card__top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(27, 35, 48, 0.12);
  background: rgba(60, 79, 154, 0.08);
  color: rgba(27, 35, 48, 0.82);
  font-weight: 700;
  font-size: 13px;
}

.badge--accent {
  background: rgba(217, 75, 63, 0.1);
  border-color: rgba(217, 75, 63, 0.22);
}

.hero-card__title {
  font-weight: 800;
  font-size: 18px;
  color: var(--blue);
}

.hero-card__text {
  color: var(--muted);
  margin-top: 8px;
}

.hero-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.link {
  font-weight: 700;
  color: rgba(27, 35, 48, 0.82);
}

.link:hover {
  color: var(--blue);
}

.section {
  padding: 44px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(27, 35, 48, 0.08);
  border-bottom: 1px solid rgba(27, 35, 48, 0.08);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.section__desc {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

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

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

.card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(10, 18, 35, 0.08);
}

.service-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 34px rgba(10, 18, 35, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: rgba(27, 35, 48, 0.92);
}

.service-card__lead {
  margin: 8px 0 0;
  font-weight: 800;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.35;
}

.service-card__text {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-card__cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.service-card__cta .btn {
  height: 40px;
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 24px rgba(217, 75, 63, 0.18);
}

.card__title {
  margin: 12px 0 6px;
  font-size: 16px;
}

.card__text {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(27, 35, 48, 0.12);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  color: rgba(27, 35, 48, 0.82);
}

.pill--accent {
  border-color: rgba(217, 75, 63, 0.22);
  background: rgba(217, 75, 63, 0.08);
}

.panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(10, 18, 35, 0.08);
}

.panel__title {
  font-weight: 800;
  color: var(--blue);
}

.panel__text {
  margin-top: 8px;
  color: var(--muted);
}

.panel__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.bullets {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(27, 35, 48, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(10, 18, 35, 0.06);
}

.bullet__dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  flex: 0 0 auto;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.swatch {
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(27, 35, 48, 0.12);
}

.swatch--blue {
  background: var(--blue);
}

.swatch--red {
  background: var(--red);
}

.swatch--orange {
  background: var(--orange);
}

.swatch--gray {
  background: #e9edf4;
}

.contact-quick {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.contact-quick__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(60, 79, 154, 0.18);
  background: rgba(60, 79, 154, 0.06);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.contact-quick__item:hover {
  background: rgba(60, 79, 154, 0.1);
}

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

.doctor {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 34px rgba(10, 18, 35, 0.08);
}

.doctor__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 1px solid rgba(27, 35, 48, 0.1);
  box-shadow: 0 12px 26px rgba(10, 18, 35, 0.12);
}

.doctor__name {
  margin-top: 12px;
  font-weight: 900;
  color: rgba(27, 35, 48, 0.92);
}

.doctor__role {
  margin-top: 4px;
  font-weight: 800;
  color: var(--blue);
  font-size: 13px;
}

.doctor__text {
  margin-top: 10px;
  color: var(--muted);
}

.doctor__tags {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(27, 35, 48, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(27, 35, 48, 0.8);
  font-weight: 800;
  font-size: 12px;
}

.note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(217, 75, 63, 0.18);
  background: rgba(217, 75, 63, 0.06);
  color: rgba(27, 35, 48, 0.78);
  font-weight: 600;
}

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

.gallery__item {
  border-radius: var(--radius);
  border: 1px solid rgba(27, 35, 48, 0.1);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 34px rgba(10, 18, 35, 0.08);
  min-height: 150px;
}

.gallery__item:nth-child(1),
.gallery__item:nth-child(2),
.gallery__item:nth-child(3),
.gallery__item:nth-child(4),
.gallery__item:nth-child(5),
.gallery__item:nth-child(6) {
  grid-column: span 6;
  min-height: 580px;
  overflow: visible;
}

.gallery__item .instagram-media {
  width: 100% !important;
  min-width: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* Gallery toggle - hide items 3+ by default */
.gallery:not(.gallery--expanded) .gallery__item:nth-child(n+3) {
  display: none;
}

.gallery__toggle {
  margin-top: 24px;
  text-align: center;
}

.gallery__toggle-btn {
  background: var(--surface);
  border: 2px solid rgba(60, 79, 154, 0.2);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-family: inherit;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.gallery__toggle-btn:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.gallery__toggle-icon {
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.ph {
  background:
    radial-gradient(240px 140px at 20% 30%, rgba(60, 79, 154, 0.18), transparent 60%),
    radial-gradient(260px 160px at 80% 40%, rgba(217, 75, 63, 0.14), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.65));
}

.ph--2 {
  background:
    radial-gradient(240px 140px at 20% 30%, rgba(217, 75, 63, 0.18), transparent 60%),
    radial-gradient(260px 160px at 80% 40%, rgba(224, 122, 47, 0.14), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.65));
}

.ph--3 {
  background:
    radial-gradient(240px 140px at 20% 30%, rgba(47, 63, 130, 0.2), transparent 60%),
    radial-gradient(260px 160px at 80% 40%, rgba(224, 122, 47, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.65));
}

.ph--4 {
  background:
    radial-gradient(240px 140px at 20% 30%, rgba(60, 79, 154, 0.18), transparent 60%),
    radial-gradient(260px 160px at 80% 40%, rgba(224, 122, 47, 0.14), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.65));
}

.ph--5 {
  background:
    radial-gradient(240px 140px at 20% 30%, rgba(217, 75, 63, 0.16), transparent 60%),
    radial-gradient(260px 160px at 80% 40%, rgba(60, 79, 154, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.65));
}

.ph--6 {
  background:
    radial-gradient(240px 140px at 20% 30%, rgba(224, 122, 47, 0.16), transparent 60%),
    radial-gradient(260px 160px at 80% 40%, rgba(47, 63, 130, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.65));
}

.gallery__footer {
  margin-top: 14px;
}

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

.review {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 34px rgba(10, 18, 35, 0.08);
}

.review__stars {
  color: rgba(224, 122, 47, 0.95);
  font-weight: 900;
  letter-spacing: 1px;
}

.review__text {
  margin-top: 10px;
  color: rgba(27, 35, 48, 0.84);
  font-weight: 600;
}

.review__author {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 10px;
}

.qa {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 12px 34px rgba(10, 18, 35, 0.06);
}

.qa__q {
  cursor: pointer;
  font-weight: 900;
  color: rgba(27, 35, 48, 0.9);
}

.qa__a {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.contact-link {
  color: rgba(27, 35, 48, 0.88);
}

.contact-link:hover {
  color: var(--blue);
}

.sep {
  margin: 0 8px;
  color: rgba(27, 35, 48, 0.35);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact__items {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.contact__map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact__map iframe {
  flex: 1;
  min-height: 280px;
}

.contact__map-link {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--surface);
  border-top: 1px solid rgba(27, 35, 48, 0.1);
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact__map-link:hover {
  background: rgba(60, 79, 154, 0.1);
}

.contact-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 35, 48, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.contact-item__label {
  font-size: 12px;
  color: var(--muted);
}

.contact-item__value {
  margin-top: 3px;
  font-weight: 700;
}

.form {
  background: var(--surface);
  border: 2px solid rgba(60, 79, 154, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.form__title {
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 10px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.field__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.field__input {
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(27, 35, 48, 0.14);
  background: rgba(255, 255, 255, 0.85);
  outline: none;
  font-weight: 600;
}

.field__input:focus {
  border-color: rgba(60, 79, 154, 0.38);
  box-shadow: 0 0 0 4px rgba(60, 79, 154, 0.12);
}

.form__hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid rgba(27, 35, 48, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
}

.footer__brand {
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.4px;
}

.footer__copy {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    grid-column: span 1;
    min-height: 580px;
  }

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

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

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

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

  .nav {
    display: none;
  }

  .brand {
    min-width: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header__actions .chip {
    display: none;
  }

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

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

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

  .gallery__item,
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    grid-column: auto;
    min-height: 580px;
  }

  .contact__map {
    min-height: 280px;
    order: -1;
  }

  .hero {
    padding-top: 34px;
  }

  .gallery__toggle-btn {
    width: 100%;
    max-width: 300px;
  }
}
