:root {
  --bg: #f7f9fc;
  --card: #ffffff;
  --text: #172033;
  --muted: #667085;
  --line: #e6ebf3;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-2: #0ea5e9;
  --cyan: #06b6d4;
  --accent: #7c3aed;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #f43f5e;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.08);
  --header-height: 78px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(231,235,243,.86);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.logo img {
  width: 48px;
  height: 48px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item {
  position: relative;
}
.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 13px;
  border: 0;
  border-radius: 999px;
  color: #263044;
  background: transparent;
  font-weight: 750;
  font-size: 15px;
  cursor: pointer;
  transition: .2s ease;
}
.nav-link:hover,
.dropdown-toggle:hover,
.nav-link.is-active,
.dropdown-toggle.is-active {
  color: var(--primary);
  background: rgba(37,99,235,.08);
}
.dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: .2s ease;
}
.nav-item:hover .dropdown-toggle::after {
  transform: rotate(225deg) translate(-2px, -1px);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 290px;
  padding: 12px;
  border: 1px solid rgba(231,235,243,.9);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 26px 70px rgba(15,23,42,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: #30384d;
  font-weight: 650;
}
.dropdown-menu a:hover,
.dropdown-menu a.is-active {
  color: var(--primary);
  background: rgba(37,99,235,.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn,
.menu-btn,
.close-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .2s ease;
}
.icon-btn:hover,
.menu-btn:hover,
.close-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.menu-btn { display: none; }

/* Mobile menu */
.mobile-shadow {
  position: fixed;
  inset: 0;
  z-index: 1700;
  display: none;
  background: rgba(15, 23, 42, .52);
}
.mobile-shadow.is-open { display: block; }
.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1800;
  width: min(390px, 90vw);
  padding: 20px;
  background: white;
  transform: translateX(105%);
  transition: .25s ease;
  box-shadow: -24px 0 80px rgba(15,23,42,.18);
  overflow-y: auto;
}
.mobile-panel.is-open { transform: translateX(0); }
.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.mobile-nav {
  display: grid;
  gap: 8px;
}
.mobile-nav a,
.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: #f8fafc;
  color: #263044;
  text-align: left;
  font-weight: 800;
}
.mobile-nav a.is-active,
.mobile-dropdown-btn.is-active {
  color: var(--primary);
  background: rgba(37,99,235,.1);
}
.mobile-submenu {
  display: none;
  padding: 6px 0 6px 14px;
}
.mobile-submenu.is-open { display: grid; gap: 6px; }
.mobile-submenu a {
  min-height: 42px;
  font-weight: 700;
  background: transparent;
  color: var(--muted);
}

/* Hero */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.17), transparent 25%),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(135deg, #3445d4 0%, #1b79c2 48%, #15aba9 100%);
}
.hero {
  padding: 92px 0 132px;
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -72px;
  height: 150px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 14px;
  font-weight: 800;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 1.02;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 78px);
}
.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 19px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.hero-card img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 26px;
}
.page-hero {
  padding: 95px 0 132px;
  text-align: center;
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(42px, 6vw, 70px);
}
.page-hero p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.82);
}

/* Common */
.section { padding: 88px 0; }
.section.compact { padding-top: 48px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.section-desc {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--muted);
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 16px;
  font-weight: 850;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 16px 34px rgba(37,99,235,.26);
}
.btn-light {
  color: var(--text);
  background: white;
}
.btn-ghost {
  color: var(--primary);
  background: rgba(37,99,235,.08);
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(37,99,235,.09);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.bg-white { background: white; }
.text-muted { color: var(--muted); }

/* Home */

.announcement-section {
  padding-top: 58px;
}
.announcements-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 22px;
  align-items: stretch;
}
.announcement-main {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 30px;
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(135deg, var(--primary), var(--accent));
}
.announcement-main::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.announcement-main > * {
  position: relative;
  z-index: 1;
}
.announcement-main h2 {
  max-width: 720px;
  margin: 18px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.announcement-main p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.84);
}
.badge-light {
  color: white;
  background: rgba(255,255,255,.16);
}
.announcement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.announcement-list {
  display: grid;
  gap: 14px;
}
.announcement-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  transition: .2s ease;
}
.announcement-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15,23,42,.13);
}
.announcement-date {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  text-align: center;
  line-height: 1.1;
}
.announcement-date b {
  display: block;
  font-size: 24px;
  line-height: 1;
}
.announcement-date span {
  font-size: 12px;
  font-weight: 850;
}
.announcement-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.25;
}
.announcement-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -62px;
}
.stat-card {
  padding: 24px;
}
.stat-num {
  font-size: 40px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: var(--primary);
}
.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 42px;
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.feature-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}
.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.photo-collage img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.photo-collage img:nth-child(2) {
  transform: translateY(36px);
}
.news-band {
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.16), transparent 18%),
    radial-gradient(circle at 78% 60%, rgba(255,255,255,.14), transparent 22%),
    linear-gradient(135deg, #4f46e5, #7c3aed 52%, #0ea5e9);
}
.news-band .section-desc { color: rgba(255,255,255,.78); }

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card {
  overflow: hidden;
}
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card img {
  object-position: center;
}
.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.news-body .btn {
  align-self: flex-start;
  margin-top: auto;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.page-btn {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #263044;
  background: white;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
  transition: .2s ease;
}
.page-btn:hover {
  color: var(--primary);
  transform: translateY(-1px);
}
.page-btn.is-active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.page-btn.is-disabled {
  pointer-events: none;
  opacity: .45;
  box-shadow: none;
}

.news-body {
  padding: 24px;
}
.news-body h2,
.news-body h3 {
  margin: 14px 0 10px;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -0.04em;
}
.news-body p {
  color: var(--muted);
  margin: 0 0 18px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
  align-items: start;
}
.article-card {
  padding: 30px;
}
.article-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 22px;
  margin: 24px 0;
}
.article-side {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 20px;
}
.side-list {
  display: grid;
  gap: 10px;
}
.side-list a {
  padding: 12px;
  border-radius: 14px;
  color: var(--muted);
  background: #f8fafc;
  font-weight: 750;
}
.side-list a:hover { color: var(--primary); }
.comment-card {
  padding: 18px;
  margin-top: 14px;
  box-shadow: none;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}
.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: white;
  color: var(--text);
  outline: none;
}
.field:focus {
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.1);
}
textarea.field {
  min-height: 132px;
  resize: vertical;
}

/* Groups */
.clubs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: start;
}
.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 18px;
}
.filter-panel h3 { margin: 0 0 12px; }
.filter-btn {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  padding: 12px;
  margin-top: 8px;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
.filter-btn.is-active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.club-card {
  padding: 24px;
}
.club-card h2,
.club-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.club-card p { color: var(--muted); }
.club-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 20px 0;
}
.club-info div {
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 14px;
}
.club-info b { color: var(--text); }

/* Teachers */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}
.teacher-card {
  position: relative;
  padding: 14px;
  text-align: center;
  overflow: hidden;
  border-radius: 28px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
}
.teacher-photo {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  background: #eef5ff;
}
.teacher-card .teacher-info {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  padding: 4px 8px 8px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.teacher-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.teacher-card p {
  margin: 0 auto;
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Schedule */
.schedule-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
}
.schedule-table {
  width: 100%;
  min-width: 980px;
  table-layout: fixed;
  border-collapse: collapse;
  background: white;
}
.schedule-table th,
.schedule-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}
.schedule-table th {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  white-space: nowrap;
}
.schedule-table th:first-child,
.schedule-table td:first-child {
  width: 76px;
  text-align: center;
}
.schedule-table td:first-child {
  color: var(--primary);
  font-weight: 950;
}
.schedule-table td {
  height: 72px;
}
.lesson-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 3px 0;
  padding: 7px 10px;
  border-radius: 12px;
  color: #1d4ed8;
  background: rgba(37,99,235,.09);
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
}


/* Today schedule block on home */
.today-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.16), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.13), transparent 24%),
    linear-gradient(135deg, #6d28d9 0%, #7c3aed 45%, #2563eb 100%);
}
.today-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.14) 0 20%, transparent 20% 100%),
    radial-gradient(circle, rgba(255,255,255,.18) 0 16px, transparent 17px);
  background-size: 260px 260px, 180px 180px;
  pointer-events: none;
}
.today-section .container {
  position: relative;
  z-index: 1;
}
.today-head .section-desc,
.today-section .section-desc {
  color: rgba(255,255,255,.78);
}
.section-kicker.light {
  color: #67e8f9;
}
.today-board {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.96);
  color: var(--text);
  box-shadow: 0 30px 80px rgba(17, 24, 39, .2);
}
.today-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}
.today-row:last-child {
  border-bottom: 0;
}
.today-row-head {
  min-height: auto;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-weight: 950;
}
.today-row-head > div,
.today-room,
.today-lessons {
  padding: 18px 22px;
}
.today-room {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  font-weight: 950;
  background: #f8fafc;
}
.today-lessons {
  display: grid;
  gap: 12px;
}
.today-lesson {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
}
.today-lesson strong {
  color: #111827;
  font-size: 16px;
}
.today-lesson a {
  color: #2563eb;
  font-weight: 850;
}
.today-lesson a:hover {
  text-decoration: underline;
}
.today-lesson span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 680px) {
  .today-row {
    grid-template-columns: 1fr;
  }
  .today-room {
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .today-row-head {
    display: none;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-card {
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: .25s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card h2,
.gallery-card h3 {
  margin: 0;
  padding: 17px;
  font-size: 19px;
  line-height: 1.25;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.album-photo {
  overflow: hidden;
  border-radius: 6px;
  background: #dbeafe;
}
.album-photo img {
  width: 100%;
  aspect-ratio: 1 / .92;
  object-fit: cover;
  transition: .25s ease;
}
.album-photo:hover img { transform: scale(1.035); }


/* Stable image crops */
.news-card img,
.gallery-card img,
.album-photo img,
.teacher-photo,
.article-cover,
.photo-collage img {
  object-fit: cover;
  object-position: center;
}

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
}
.map-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.2)),
    url("../img/gallery-daily.svg") center/cover;
}
.map-box {
  width: min(420px, calc(100% - 32px));
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.contact-card { padding: 28px; }
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item b { color: var(--text); }

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 28px;
  color: #e5ecff;
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 99, 235, .35), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(6, 182, 212, .25), transparent 30%),
    #101828;
}
.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.08) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 30% 80%, rgba(124,58,237,.22), transparent 28%);
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.footer-brand {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.footer-logo {
  margin-bottom: 16px;
  color: #fff;
}
.footer-logo img {
  width: 48px;
  height: 48px;
}
.footer p,
.footer a {
  color: rgba(229,236,255,.78);
}
.footer p {
  margin: 0;
}
.footer h3 {
  position: relative;
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
  letter-spacing: -.03em;
}
.footer h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s ease;
}
.footer-links a::before {
  content: "›";
  color: var(--primary-2);
  font-weight: 900;
}
.footer-links a:hover,
.footer-contact:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.social-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: .2s ease;
}
.social-link:hover {
  transform: translateY(-3px) scale(1.04);
}
.social-facebook { background: linear-gradient(135deg, #4f46e5, #2563eb); }
.social-youtube { background: linear-gradient(135deg, #ff3131, #ff7a18); }
.social-telegram { background: linear-gradient(135deg, #38bdf8, #06b6d4); }
.social-viber { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.footer-contacts {
  display: grid;
  gap: 12px;
}
.footer-contact {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  transition: .2s ease;
}
.footer-contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(229,236,255,.7);
  font-size: 14px;
}
.footer-bottom a {
  color: rgba(229,236,255,.86);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15,23,42,.68);
  backdrop-filter: blur(8px);
}
.modal-backdrop.is-open { display: flex; }
.modal {
  width: min(720px, 100%);
  max-height: min(760px, 90vh);
  overflow: auto;
  border-radius: 28px;
  background: white;
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
  animation: modalIn .22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.modal-head h2 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.modal-body { padding: 24px; }

/* Utils */
.is-hidden { display: none !important; }
.desktop-only { display: initial; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .hero-grid,
  .about-grid,
  .article-layout,
  .contacts-grid,
  .clubs-layout,
  .announcements-grid {
    grid-template-columns: 1fr;
  }
  .article-side,
  .filter-panel { position: static; }
  .stats-grid,
  .people-grid,
  .gallery-grid,
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid,
  .clubs-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root { --header-height: 68px; }
  .container { width: min(100% - 22px, 1180px); }
  .logo { font-size: 19px; }
  .logo img { width: 42px; height: 42px; }
  .hero,
  .page-hero {
    padding: 62px 0 100px;
  }
  .hero p { font-size: 16px; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .stats-grid,
  .news-grid,
  .clubs-grid,
  .club-info,
  .people-grid,
  .gallery-grid,
  .album-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .photo-collage img:nth-child(2) { transform: none; }
  .hero-card img { min-height: 250px; }
  .news-card img,
  .gallery-card img { height: 190px; }
  .article-card,
  .contact-card,
  .club-card,
  .announcement-main { padding: 20px; }
  .announcement-item { grid-template-columns: 60px 1fr; }
  .announcement-date { min-height: 60px; }
  .teacher-card { max-width: 340px; margin-inline: auto; }
}


/* Why / partners block from the old home page, redesigned */
.why-section {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
  background:
    radial-gradient(circle at 8% 16%, rgba(37,99,235,.08), transparent 28%),
    linear-gradient(180deg, #eef5ff 0%, #f7f9fc 72%);
}
.why-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 36px;
  align-items: center;
}
.why-illustration img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}
.compact-head {
  display: block;
  margin-bottom: 24px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(37,99,235,.09);
  font-size: 14px;
  font-weight: 900;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  min-height: 255px;
  padding: 28px 24px;
  text-align: center;
}
.why-icon {
  width: 92px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: -58px auto 22px;
  border-radius: 40px 46px 34px 46px;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 20px 40px rgba(37,99,235,.20);
  font-size: 34px;
}
.why-icon.cyan { background: linear-gradient(135deg, var(--cyan), var(--primary-2)); }
.why-icon.green { background: linear-gradient(135deg, #34d399, #10b981); }
.why-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.why-card p {
  margin: 0;
  color: var(--muted);
}
.partners-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 18px;
  align-items: center;
  margin-top: 58px;
  padding: 28px 0;
}
.partner-logo {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  color: white;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 900;
  text-align: center;
}
.why-section .partners-strip {
  width: 100%;
  max-width: none;
  background: linear-gradient(135deg, var(--accent), #5b21b6);
  box-shadow: 0 -1px 0 rgba(255,255,255,.08) inset;
}
.why-section .partners-strip::before,
.why-section .partners-strip::after {
  content: "";
}

/* Hymn block */
.hymn-section {
  background: #fff;
}
.hymn-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 26px;
  align-items: stretch;
}
.hymn-text,
.hymn-video {
  padding: 28px;
}
.hymn-lyrics {
  margin-top: 22px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.08));
  color: #344054;
  font-weight: 650;
}
.hymn-lyrics p {
  margin: 0 0 16px;
}
.hymn-lyrics p:last-child {
  margin-bottom: 0;
}
.hymn-more-btn {
  margin-top: 18px;
}
.modal-large {
  width: min(860px, 100%);
}
.hymn-full-text {
  display: grid;
  gap: 18px;
  padding: 6px;
  color: #344054;
  font-size: 18px;
  line-height: 1.85;
}
.hymn-full-text p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(6,182,212,.06));
}
.hymn-video {
  display: grid;
  gap: 16px;
}
.hymn-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  border-radius: 22px;
  background: #0f172a;
  object-fit: cover;
}
.video-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
}
.video-note strong {
  color: var(--text);
}
.video-note code {
  padding: 2px 6px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #1d4ed8;
}

.schedule-wrap {
  max-width: 1180px;
  margin-inline: auto;
  box-shadow: var(--shadow);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.schedule-table {
  min-width: 1320px;
  table-layout: fixed;
}
.schedule-table th,
.schedule-table td {
  word-break: normal;
  overflow-wrap: normal;
}
.schedule-table th:first-child,
.schedule-table td:first-child {
  width: 72px;
}
.schedule-table td:not(:first-child) {
  min-width: 170px;
}
.lesson-pill {
  display: block;
  width: 100%;
  max-width: none;
  padding: 10px 12px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
  text-align: left;
}
.lesson-time {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
  font-weight: 950;
}
.lesson-name {
  display: block;
  color: #1d4ed8;
  font-weight: 900;
  line-height: 1.32;
}
.lesson-teacher {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 1024px) {
  .why-grid,
  .hymn-grid {
    grid-template-columns: 1fr;
  }
  .why-cards {
    grid-template-columns: 1fr 1fr;
  }
  .partners-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .why-cards,
  .partners-strip {
    grid-template-columns: 1fr;
  }
  .why-card {
    min-height: auto;
  }
  .why-icon {
    margin-top: 0;
  }
  .hymn-text,
  .hymn-video {
    padding: 20px;
  }
}

/* Error page */
.error-area {
  padding: 74px 0 100px;
}
.error-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.error-illustration {
  width: min(520px, 92vw);
  margin: 0 auto 28px;
}
.error-code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 8px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #1d4ed8;
  background: rgba(37, 99, 235, .09);
  font-weight: 950;
  letter-spacing: .04em;
}
.error-content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}
.error-content p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
}
.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.error-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  text-align: left;
}
.error-help-card {
  padding: 20px;
}
.error-help-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.error-help-card p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 780px) {
  .error-help-grid {
    grid-template-columns: 1fr;
  }
  .error-area {
    padding: 52px 0 72px;
  }
}


@media (max-width: 680px) {
  .footer {
    padding-top: 44px;
  }
  .footer-brand {
    padding: 18px;
  }
  .footer-bottom {
    display: grid;
    justify-items: start;
  }
}

/* Group detail page — richer layout */
.group-page-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.12);
  font-weight: 850;
  font-size: 14px;
}
.group-detail-section {
  padding-top: 78px;
}
.group-detail-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}
.group-main-card {
  position: relative;
  overflow: hidden;
}
.group-main-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.14), transparent 68%);
  pointer-events: none;
}
.group-info-strip {
  position: relative;
  z-index: 1;
  margin-top: 0;
}
.group-info-strip div {
  position: relative;
  padding-left: 48px;
  min-height: 72px;
}
.info-icon {
  position: absolute;
  left: 14px;
  top: 15px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-size: 14px;
  font-weight: 950;
}
.group-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 20px;
  align-items: stretch;
  margin: 26px 0;
}
.group-lead-card h2 {
  margin-top: 12px;
}
.group-lead-accent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 86% 15%, rgba(255,255,255,.28), transparent 24%),
    linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 18px 45px rgba(37,99,235,.22);
}
.group-lead-accent strong {
  font-size: 18px;
  line-height: 1.2;
}
.group-lead-accent span {
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.55;
}
.learning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 18px 0 30px;
}
.learning-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}
.learning-item span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-weight: 950;
  font-size: 14px;
}
.learning-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.schedule-mini-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 32px;
}
.schedule-mini-item {
  display: grid;
  grid-template-columns: 120px 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.schedule-mini-item span {
  display: inline-flex;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(37,99,235,.08);
  font-weight: 900;
}
.schedule-mini-item strong {
  color: var(--text);
}
.schedule-mini-item em {
  color: var(--muted);
  font-style: normal;
}
.section-mini-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 8px 0 16px;
}
.section-mini-head h2 {
  margin: 0;
}
.section-mini-head a,
.side-widget-head a {
  color: var(--primary);
  font-weight: 850;
  font-size: 14px;
}
.group-gallery-inline,
.related-inline {
  margin: 34px 0;
}
.group-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.group-gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #dbeafe;
}
.group-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  transition: .25s ease;
}
.group-gallery-grid a:hover img {
  transform: scale(1.04);
}
.related-clubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.related-club-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(14,165,233,.11), transparent 30%),
    #fff;
  box-shadow: var(--shadow-soft);
  transition: .2s ease;
}
.related-club-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.related-club-card strong {
  font-size: 18px;
  line-height: 1.25;
}
.related-club-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.group-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 18px;
}
.group-sidebar .article-side {
  position: static;
}
.group-teacher-side {
  text-align: center;
}
.group-teacher-side .teacher-photo {
  max-width: 220px;
  margin: 0 auto 16px;
}
.group-teacher-side h3 {
  margin: 0 0 8px;
  line-height: 1.25;
}
.side-widget {
  padding: 18px;
}
.side-widget h3 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -.03em;
}
.side-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.side-widget-head h3 {
  margin: 0;
}
.side-clubs-list {
  display: grid;
  gap: 10px;
}
.side-clubs-list a {
  display: grid;
  gap: 4px;
  padding: 13px;
  border-radius: 16px;
  background: #f8fafc;
  transition: .2s ease;
}
.side-clubs-list a:hover {
  color: var(--primary);
  transform: translateX(3px);
}
.side-clubs-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.side-clubs-list strong {
  line-height: 1.3;
}
.side-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.side-gallery-grid a {
  overflow: hidden;
  border-radius: 14px;
  background: #dbeafe;
}
.side-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / .9;
  object-fit: cover;
  transition: .25s ease;
}
.side-gallery-grid a:hover img {
  transform: scale(1.05);
}
@media (max-width: 1080px) {
  .group-detail-layout,
  .group-lead-card {
    grid-template-columns: 1fr;
  }
  .group-sidebar {
    position: static;
  }
}
@media (max-width: 680px) {
  .learning-grid,
  .related-clubs-grid,
  .group-gallery-grid {
    grid-template-columns: 1fr;
  }
  .schedule-mini-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .section-mini-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Threaded comments */
.comments-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.comment-thread {
  display: grid;
  gap: 12px;
}
.comment-item {
  position: relative;
  margin-top: 0;
}
.comment-item p {
  margin: 12px 0 0;
  color: var(--muted);
}
.comment-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.comment-reply-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  cursor: pointer;
  font-weight: 850;
}
.comment-reply-btn:hover {
  background: rgba(37, 99, 235, 0.14);
}
.comment-replies {
  position: relative;
  display: grid;
  gap: 12px;
  margin-left: 34px;
  padding-left: 22px;
}
.comment-replies::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  bottom: 10px;
  width: 2px;
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(37,99,235,.26), rgba(124,58,237,.08));
}
.comment-replies .comment-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 35px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: rgba(37,99,235,.22);
}
.comment-item--reply {
  background: #fbfdff;
}
.avatar--admin {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
}
.comment-form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 680px) {
  .comment-replies {
    margin-left: 12px;
    padding-left: 16px;
  }
  .comment-replies .comment-item::before {
    left: -16px;
    width: 12px;
  }
}