:root{
  --bg:#f7f7f5;         /* krem/açık zemin */
  --surface:#ffffff;    /* kart/alan */
  --text:#101828;       /* koyu metin */
  --muted:#475467;      /* ikincil metin */
  --stroke:#e6e7ea;     /* ince border */
  --shadow:0 6px 18px rgba(16,24,40,.08); /* hafif gölge */
  --shadow2:0 10px 24px rgba(16,24,40,.10);
  --primary:#0b3a78;    /* lacivert */
  --primarySoft:#e8f0fb;/* soft mavi */
  --ok:#22c55e;
  --danger:#ef4444;
  --warn:#f59e0b;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Poppins", "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(540px 240px at 12% 8%, rgba(255,182,193,.10), transparent 64%),
    radial-gradient(620px 280px at 88% 4%, rgba(196,181,253,.07), transparent 66%),
    radial-gradient(680px 320px at 50% 100%, rgba(191,219,254,.06), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M38 34c-6 0-11 5-11 11 0 16 18 23 28 35 10-12 28-19 28-35 0-6-5-11-11-11-7 0-12 5-17 10-5-5-10-10-17-10Z' fill='rgba(244,114,182,0.05)'/%3E%3Cpath d='M150 60c-4 0-8 4-8 8 0 12 13 17 20 26 7-9 20-14 20-26 0-4-4-8-8-8-5 0-8 4-12 7-4-3-7-7-12-7Z' fill='rgba(59,130,246,0.04)'/%3E%3Cpath d='M86 148c-5 0-9 4-9 9 0 13 15 19 23 29 8-10 23-16 23-29 0-5-4-9-9-9-5 0-9 4-14 8-5-4-9-8-14-8Z' fill='rgba(168,85,247,0.04)'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg,#f9fbff 0%, #eef4ff 52%, #f7f8fc 100%);
  background-size:auto, auto, auto, 220px 220px, auto;
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--stroke);
  backdrop-filter:saturate(140%) blur(10px);
  box-shadow:0 8px 20px rgba(15,35,66,.06);
  transition:all .25s ease;
}
.site-header.shrink{background:rgba(255,255,255,.97);box-shadow:0 10px 26px rgba(15,35,66,.10)}
.site-header.shrink .nav{min-height:58px}
.nav{display:flex;align-items:center;gap:16px;min-height:64px}
.brand{
  font-weight:700;letter-spacing:.2px;
  color:var(--primary);
  display:flex;align-items:center;gap:10px;
}
.brand strong{display:block;line-height:1.05}
.brand small{display:block;font-size:11px;color:var(--muted);font-weight:500;line-height:1.2}
.brand .logo{
  width:34px;height:34px;border-radius:10px;
  object-fit:cover;
  display:block;
  background:linear-gradient(135deg, var(--primary), #1f6feb);
}
.menu{display:flex;gap:14px;flex:1;justify-content:center}
.menu a{color:var(--muted);padding:10px 12px;border-radius:10px;transition:.2s;white-space:nowrap}
.menu a:hover{color:var(--primary);background:var(--primarySoft)}
.menu a.active{
  color:var(--primary);
  background:linear-gradient(180deg,#eef4ff,#eaf2ff);
  border:1px solid #dbe8ff;
}
.nav-right{display:flex;align-items:center;gap:10px}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  color:#0f2342;
  border:1px solid #d7e5ff;
  background:linear-gradient(180deg, #f7faff, #edf3ff);
  padding:8px 12px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(11,58,120,.12), inset 0 1px 0 rgba(255,255,255,.85);
}
.pill-avatar{
  width:28px;
  height:28px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.85);
  box-shadow:0 2px 8px rgba(11,58,120,.22);
  flex:0 0 auto;
}
.pill-name{
  max-width:180px;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 12px;border-radius:12px;border:1px solid var(--stroke);
  background:var(--surface);color:var(--text);
  transition:.15s;cursor:pointer
}
.btn:hover{box-shadow:var(--shadow);border-color:#d8dae0}
.btn-primary{border-color:transparent;background:var(--primary);color:#fff}
.btn-primary:hover{box-shadow:var(--shadow2)}
.btn-ghost{background:transparent}
.btn-danger{background:rgba(239,68,68,.08);border-color:rgba(239,68,68,.25);color:#7a1616}

.burger{display:none;margin-left:auto;border:1px solid var(--stroke);background:var(--surface);
  color:var(--text);border-radius:12px;padding:10px 12px;cursor:pointer}
.mobile-menu{display:none;border-top:1px solid var(--stroke)}
.mobile-menu a{display:block;padding:12px 18px;color:var(--muted)}
.mobile-menu a:hover{background:var(--primarySoft);color:var(--primary)}

.site-main{padding:34px 0 58px}
@keyframes fadeIn{from{opacity:.0;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}
.site-main{animation:fadeIn .22s ease-out}

.hero{
  border:1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72)),
    radial-gradient(320px 160px at 20% 20%, rgba(244,114,182,.08), transparent 72%),
    radial-gradient(260px 140px at 80% 0%, rgba(125,211,252,.08), transparent 72%);
  border-radius:24px;
  padding:36px;
  box-shadow:0 16px 40px rgba(16,24,40,.10);
  overflow:hidden;
  position:relative;
  backdrop-filter:blur(14px);
}
.hero::after{
  content:"";
  position:absolute;inset:-90px -110px auto auto;
  width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(244,114,182,.10), transparent 62%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:auto auto -100px -80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(191,219,254,.10), transparent 62%);
  filter:blur(2px);
}
.hero h1{margin:0 0 12px;font-size:44px;line-height:1.08;letter-spacing:-.02em}
.hero p{margin:0;color:var(--muted);max-width:70ch}
.hero-actions{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}
.home-hero{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 520px;
  align-items:center;
  gap:26px;
}
.hero-side{position:relative;z-index:1}
.hero-badge,.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(219,232,255,.95);
  color:var(--primary);
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  box-shadow:var(--shadow);
}
.hero-badge{margin-bottom:14px}
.hero-slider-card{
  padding:14px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.54));
  border:1px solid rgba(230,231,234,.95);
  box-shadow:0 18px 46px rgba(16,24,40,.14);
  backdrop-filter:blur(18px);
}
.hero-slider-head{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:12px;
}
.hero-slider-head strong{
  font-size:22px;
  color:#0f2342;
}

.home-memories{
  display:flex;
  justify-content:center;
}
.home-memories-img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(226,232,240,.95);
  box-shadow:0 18px 42px rgba(16,24,40,.10);
}

.dev-note{
  background:linear-gradient(180deg, #fcfcfb, #f6f7f5);
  border:1px solid rgba(226,232,240,.95);
  border-radius:14px;
  box-shadow:0 12px 28px rgba(16,24,40,.08);
  padding:18px 18px 18px 16px;
  position:relative;
}
.dev-note::before{
  content:"";
  position:absolute;
  left:0;
  top:12px;
  bottom:12px;
  width:3px;
  border-radius:8px;
  background:linear-gradient(180deg, rgba(11,58,120,.75), rgba(244,114,182,.55));
}
.dev-note-kicker{
  color:#667085;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-left:10px;
}
.dev-note-body{
  margin-top:8px;
  margin-left:10px;
  color:#344054;
  line-height:1.9;
  font-style:italic;
  font-size:15px;
}

.grid{display:grid;gap:16px}
.grid-3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.grid-4{grid-template-columns:repeat(4, minmax(0, 1fr))}
.grid-2{grid-template-columns:repeat(2, minmax(0, 1fr))}

.spacer{height:28px}
.center{text-align:center}
.muted{color:var(--muted)}

.stat{
  padding:16px 16px;
  display:flex;flex-direction:column;gap:6px;
}
.stat .k{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.stat .v{font-size:26px;font-weight:700;color:var(--primary)}

.countdown{
  display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;max-width:520px;margin:10px auto 0;
}
.countdown-panel{
  background:
    linear-gradient(180deg,rgba(255,255,255,.90),rgba(245,249,255,.80)),
    radial-gradient(380px 140px at 10% 0%, rgba(11,58,120,.10), transparent 70%);
  backdrop-filter:blur(14px);
}
.countdown-rings{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  max-width:860px;
  margin:18px auto 0;
  direction:ltr;
}
.count-ring{
  position:relative;
  aspect-ratio:1/1;
  border-radius:24px;
  padding:12px;
  background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(244,247,255,.78));
  border:1px solid rgba(226,232,240,.95);
  box-shadow:0 16px 34px rgba(16,24,40,.10);
  direction:ltr;
}
.count-ring::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  background:conic-gradient(from 220deg, rgba(59,130,246,.95), rgba(125,211,252,.45), rgba(79,70,229,.92), rgba(59,130,246,.95));
}
.count-ring::after{
  content:"";
  position:absolute;
  inset:22px;
  border-radius:50%;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(242,247,255,.92));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.92);
}
.count-ring-inner{
  position:absolute;
  inset:22px;
  z-index:1;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:8px;
}
.count-ring .num{
  font-size:34px;
  font-weight:800;
  color:var(--primary);
  line-height:1;
}
.count-ring .lbl{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.07em;
  text-transform:uppercase;
}
.countbox{
  border:1px solid var(--stroke);
  background:var(--surface);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:var(--shadow);
}
.countbox .num{font-size:28px;font-weight:700;color:var(--primary);line-height:1}
.countbox .lbl{margin-top:6px;font-size:12px;color:var(--muted);letter-spacing:.06em;text-transform:uppercase}

.class-photo{overflow:hidden}
.class-photo-img{
  width:100%;
  max-height:560px;
  object-fit:cover;
  display:block;
}

.fade-slider{
  position:relative;
  border:1px solid var(--stroke);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--surface);
}
.fade-slider-stage{position:relative;aspect-ratio:16/7;min-height:260px}
.fade-slider-hero{
  border-radius:22px;
  box-shadow:none;
}
.fade-slider-hero .fade-slider-stage{
  aspect-ratio:16/10;
  min-height:420px;
}
.fade-slide{
  position:absolute;inset:0;
  opacity:0;
  transition:opacity .55s ease;
  pointer-events:none;
}
.fade-slide.is-active{
  opacity:1;
  pointer-events:auto;
}
.fade-slide img{
  width:100%;height:100%;
  object-fit:cover;display:block;
}
.slider-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  border:1px solid rgba(255,255,255,.7);
  background:rgba(255,255,255,.75);
  color:#0b1a33;
  width:38px;height:38px;border-radius:50%;
  cursor:pointer;
}
.slider-arrow.left{left:10px}
.slider-arrow.right{right:10px}

.timeline{
  position:relative;
  margin:8px 0 0;
  padding-left:18px;
}
.timeline:before{
  content:"";
  position:absolute;left:7px;top:0;bottom:0;
  width:2px;background:var(--stroke);
}
.tl-item{
  position:relative;
  padding:14px 14px 14px 18px;
  margin:0 0 12px 0;
  border:1px solid var(--stroke);
  background:var(--surface);
  border-radius:16px;
  box-shadow:var(--shadow);
}
.tl-item:before{
  content:"";
  position:absolute;left:-2px;top:18px;
  width:12px;height:12px;border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 0 4px var(--primarySoft);
}
.tl-year{font-weight:700;color:var(--primary)}
.tl-title{margin-top:4px;font-weight:600}
.tl-body{margin-top:8px;color:var(--muted);white-space:pre-wrap}

.card{
  border:1px solid var(--stroke);
  background:var(--surface);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(16,24,40,.08);
  transition:.25s ease;
}
.card:hover{box-shadow:0 14px 34px rgba(16,24,40,.12);transform:scale(1.02)}
.card-body{padding:14px}
.card-title{font-weight:700}
.card-sub{color:var(--muted);font-size:13px;margin-top:4px}

.thumb{
  width:100%;
  aspect-ratio:1/1;
  background:#f2f4f7;
  display:block;
  object-fit:cover;
}
.thumb-wide{aspect-ratio:16/9}

.section-title{margin:22px 0 12px;font-size:18px;color:var(--text)}
.section-title{font-size:20px}

.alert{
  border:1px solid var(--stroke);
  background:var(--surface);
  padding:12px 14px;border-radius:14px;margin:14px 0;
}
.alert.error{border-color:rgba(239,68,68,.35);background:rgba(239,68,68,.10)}
.alert.ok{border-color:rgba(34,197,94,.35);background:rgba(34,197,94,.10)}

.form{
  border:1px solid var(--stroke);
  background:var(--surface);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
  max-width:520px;
}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.field label{color:var(--muted);font-size:13px}
.field input,.field textarea,.field select{
  padding:12px 12px;border-radius:12px;
  border:1px solid var(--stroke);
  background:#fff;
  color:var(--text);
  outline:none;
}
.field textarea{min-height:110px;resize:vertical}
.help{color:var(--muted);font-size:12px}
.contact-hero{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,249,255,.82));
  box-shadow:0 18px 42px rgba(16,24,40,.10);
  backdrop-filter:blur(14px);
}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
.contact-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(226,232,240,.95);
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,248,255,.88));
  box-shadow:var(--shadow);
  transition:.2s ease;
}
.contact-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(16,24,40,.10);
}
.contact-icon,.footer-contact-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
  background:linear-gradient(180deg, #eff5ff, #e9f0ff);
  border:1px solid #d8e5ff;
  flex:0 0 auto;
}
.contact-icon svg,.footer-contact-icon svg{
  width:22px;
  height:22px;
}
.contact-meta{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.contact-meta strong{
  color:#0f2342;
  font-size:15px;
}
.contact-meta span{
  color:var(--muted);
  font-size:14px;
  word-break:break-word;
}

.profile{
  display:grid;gap:18px;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items:start;
}
.profile .avatar{
  width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:20px;border:1px solid var(--stroke);
  background:#f2f4f7;
}
.panel{
  border:1px solid var(--stroke);
  background:var(--surface);
  border-radius:18px;padding:18px;
}
.panel h2{margin:0 0 10px;font-size:18px}
.panel p{margin:0 0 12px;color:var(--muted);white-space:pre-wrap}

/* Student detail page improvements */
.profile-page{max-width:1160px}
.profile-modern{
  gap:28px;
  grid-template-columns:380px minmax(0, 1fr);
}
.profile-photo-wrap{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(16,24,40,.14);
}
.profile-avatar-modern{
  aspect-ratio:4/5;
  border-radius:24px;
  transition:transform .25s ease;
  border:0;
}
.profile-photo-wrap:hover .profile-avatar-modern{transform:scale(1.03)}

.profile-panel-modern{
  border-radius:22px;
  box-shadow:0 10px 24px rgba(16,24,40,.10);
  padding:24px;
}
.profile-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}
.profile-name{
  margin:0;
  font-size:30px;
  line-height:1.1;
  color:#0f2342;
}
.profile-number{font-size:12px}

.comment-card{
  background:#fafbfd;
  border:1px solid #eaedf2;
  border-radius:16px;
  padding:14px 16px;
  margin-bottom:14px;
}
.comment-title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:700;
  color:#142f57;
}
.comment-text{
  margin:0;
  color:#5a6475;
  line-height:1.75;
}

.btn-back-modern{
  border-radius:12px;
  background:#fff;
}

.profile-gallery{margin-top:6px}
.gallery-zoom{
  border-radius:16px;
  overflow:hidden;
}
.gallery-zoom img{transition:transform .25s ease}
.gallery-zoom:hover img{transform:scale(1.04)}

.gallery-item{
  position:relative;
}
.badge{
  position:absolute;left:10px;top:10px;
  padding:6px 10px;border-radius:999px;
  font-size:12px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.90);
}

.site-footer{
  border-top:1px solid rgba(255,255,255,.16);
  background:#0b1a33;
  color:rgba(255,255,255,.92);
  padding:34px 0 18px;
}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:22px;align-items:flex-start}
.footer-title{font-weight:700;margin-bottom:8px;color:#fff}
.footer-links{display:flex;flex-direction:column;gap:6px;color:rgba(255,255,255,.74)}
.footer-links a:hover{color:#fff}
.footer-contact-list{display:flex;flex-direction:column;gap:10px}
.footer-contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.78);
}
.footer-contact-item:hover{color:#fff}
.footer-contact-icon{
  width:38px;
  height:38px;
  border-radius:12px;
  color:#dbe8ff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.10);
}
.footer-note{color:rgba(255,255,255,.74);max-width:54ch}

.modal-overlay{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(9, 18, 36, .52);
  backdrop-filter:blur(8px);
  z-index:9999;
}
.modal-overlay[hidden]{display:none !important;}
.modal{
  width:min(520px, 96vw);
  border-radius:18px;
  border:1px solid rgba(226,232,240,.95);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,249,255,.92));
  box-shadow:0 22px 60px rgba(16,24,40,.22);
  overflow:hidden;
}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid rgba(226,232,240,.95);
}
.modal-title{
  font-weight:800;
  color:#0f2342;
}
.modal-close{
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.modal-body{
  padding:14px 16px 6px;
  color:var(--muted);
  line-height:1.75;
}
.modal-actions{
  padding:12px 16px 16px;
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
  color:rgba(255,255,255,.70);
  font-size:13px;
}

.map-frame{
  width:100%;
  height:450px;
  border:0;
  border-radius:16px;
  box-shadow:var(--shadow);
}
.school-about{
  display:grid;
  grid-template-columns:420px minmax(0, 1fr);
  gap:0;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.90), rgba(247,250,255,.84));
  backdrop-filter:blur(14px);
}
.school-about:hover{transform:none}
.school-about-media img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  display:block;
}
.school-about-body{
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.school-about-body .section-title{
  margin-top:10px;
  margin-bottom:14px;
}
.school-about-body p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.8;
}

/* Comments */
.comments-wrap{margin-top:26px}
.comment-form{
  max-width:none;
  border-radius:20px;
}
.comment-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
}
.comment-item{
  border:1px solid #e8ebf0;
  border-radius:14px;
  background:#f9f9f9;
  padding:14px 16px;
  box-shadow:0 8px 18px rgba(16,24,40,.06);
  min-height:140px;
  transition:.2s ease;
}
.comment-item:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 24px rgba(16,24,40,.10);
}
.comment-meta{
  display:flex;justify-content:space-between;gap:8px;flex-wrap:wrap;
  font-size:12px;color:#6a7383;
  margin-bottom:8px;
}
.comment-body{color:#3c4658;line-height:1.7;white-space:pre-wrap}

@media (max-width: 880px){
  .menu{display:none}
  .burger{display:inline-flex}
  .grid-4{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .grid-3{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .grid-2{grid-template-columns:1fr}
  .profile{grid-template-columns:1fr}
  .profile-modern{grid-template-columns:1fr}
  .home-hero{grid-template-columns:1fr}
  .fade-slider-hero .fade-slider-stage{min-height:320px}
  .countdown-rings{grid-template-columns:repeat(2, minmax(0, 1fr));direction:ltr}
  .contact-grid{grid-template-columns:1fr}
  .school-about{grid-template-columns:1fr}
  .profile-name{font-size:26px}
  .brand small{max-width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .footer-grid{grid-template-columns:1fr}
  .comment-list{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .grid-4,.grid-3{grid-template-columns:1fr}
  .hero{padding:24px}
  .hero h1{font-size:32px}
  .map-frame{height:380px}
  .countdown{grid-template-columns:1fr}
  .countdown-rings{grid-template-columns:1fr}
  .count-ring .num{font-size:30px}
  .fade-slider-hero .fade-slider-stage{min-height:240px}
  .school-about-body{padding:22px}
  .home-memories-img{height:400px}
}

