/* Design system */
:root {
  --bg: #0f1221;
  --bg-alt: #0a0c18;
  --surface: #141833;
  --card: #171c3f;
  --text: #e6e9ff;
  --muted: #aab0d6;
  --primary: #7c6cff;
  --primary-600: #6a59ff;
  --accent: #38e8b0;
  --danger: #ff6584;
  --ring: 0 0 0 3px rgba(124,108,255,.35);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(124,108,255,.25), transparent 60%),
              radial-gradient(1200px 600px at 90% 10%, rgba(56,232,176,.18), transparent 60%),
              var(--bg);
  line-height: 1.6;
}

/* Layout */
.container { width: min(1120px, 90%); margin: 0 auto; }
.section { padding: 56px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); }
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
@media (max-width: 920px) { .grid-2 { grid-template-columns: 1fr; } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%;
  background: rgba(10,12,24,.7);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.brand-logo { display: block; width: 28px; height: 28px; border-radius: 6px; box-shadow: var(--shadow); }
.brand-text { font-weight: 800; letter-spacing: .2px; }
.uni-badge { margin-left: auto; display: inline-flex; align-items: center; padding: 6px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.uni-badge img { display: block; }

.site-nav ul { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.site-nav a { color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 8px; }
.site-nav a:hover, .site-nav a.active { color: var(--text); background: rgba(124,108,255,.12); }

.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; }
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .2s ease; }
@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .site-nav { position: absolute; right: 5%; top: 58px; background: var(--surface); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 10px; display: none; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 4px; }
}

/* Hero */
.hero { position: relative; padding: 96px 0 56px; overflow: hidden; }
.hero.compact { padding: 64px 0 32px; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.32)); z-index: 0; }
.hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: -2; }
.hero-bg { position: absolute; inset: -20% -10%; background:
  radial-gradient(600px 280px at 10% 20%, rgba(124,108,255,.25), transparent 60%),
  radial-gradient(700px 300px at 90% 10%, rgba(56,232,176,.18), transparent 60%);
  filter: blur(30px); z-index: -1; }
.hero .hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.05; margin: 0 0 10px; letter-spacing: -0.02em; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.subtitle { color: var(--muted); font-size: 18px; margin: 0 0 24px; text-shadow: 0 1px 2px rgba(0,0,0,.35); }

.countdown { display: inline-grid; grid-auto-flow: column; gap: 12px; padding: 8px 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; }
.countdown .time { display: grid; place-items: center; min-width: 72px; padding: 8px 10px; background: var(--surface); border-radius: 10px; box-shadow: var(--shadow); }
.countdown .time span { font-size: 28px; font-weight: 700; }
.countdown .time small { color: var(--muted); }

.hero-ctas { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 12px; text-decoration: none; font-weight: 600; letter-spacing: .2px; border: 1px solid transparent; transition: transform .05s ease, box-shadow .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-600)); color: #fff; box-shadow: 0 10px 24px rgba(124,108,255,.35); }
.btn-primary:hover { box-shadow: 0 12px 26px rgba(124,108,255,.45); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.btn-secondary { background: transparent; color: var(--accent); border-color: rgba(56,232,176,.3); }
.btn-secondary:hover { background: rgba(56,232,176,.1); border-color: rgba(56,232,176,.5); }
.hero .btn-primary { background: #11162e; box-shadow: 0 12px 26px rgba(0,0,0,.35); }
.hero .btn-primary:hover { box-shadow: 0 14px 28px rgba(0,0,0,.45); }
.hero .btn-ghost { color: #11162e; background: rgba(255,255,255,.85); border-color: rgba(17,22,46,.25); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.95); }
.btn-elevated { box-shadow: 0 14px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08) inset; }
.btn-outline { border-color: rgba(255,255,255,.28); }

/* Content */
h2 { font-size: 32px; margin: 0 0 14px; letter-spacing: -.02em; }
.bulleted { color: var(--muted); }
.about-card, .contact-card { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.about-art, .contact-art { height: 180px; border-radius: 12px; background: linear-gradient(135deg, rgba(124,108,255,.22), rgba(56,232,176,.18)); margin-bottom: 14px; }
.about-card .about-img { width: 100%; height: auto; display: block; border-radius: 10px; margin: 0 0 12px; box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.file-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); }
.file-link:hover { background: rgba(255,255,255,.06); }

.callout { background: rgba(124,108,255,.08); border: 1px solid rgba(124,108,255,.25); border-left: 4px solid var(--primary); border-radius: 12px; padding: 16px; }
.callout h3 { margin: 0 0 8px; }
.callout p { margin: 8px 0; color: var(--text); }
.contact-mini { margin-top: 12px; display: grid; gap: 4px; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 920px) { .cards { grid-template-columns: 1fr; } }
.card { display: block; background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); color: var(--text); text-decoration: none; transition: transform .05s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { border-color: rgba(124,108,255,.35); box-shadow: 0 14px 28px rgba(124,108,255,.18); transform: translateY(-1px); }
.card h3 { margin-top: 0; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); color: var(--muted); text-decoration: none; background: rgba(255,255,255,.04); font-size: 12px; }
.chip:hover { color: var(--text); border-color: rgba(124,108,255,.35); background: rgba(124,108,255,.1); }

.rules-groups { display: grid; gap: 26px; }
.rules-group { background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.rules-group h2 { margin: 0 0 12px; font-size: 22px; }

.catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
@media (max-width: 1024px) { .catalog { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .catalog { grid-template-columns: 1fr; } }
.catalog-col { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.catalog-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.catalog-list li { padding: 10px 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; }
.catalog-list li a { display: block; color: inherit; text-decoration: none; }
.catalog-list li:hover { border-color: rgba(124,108,255,.35); }

.timeline { border-left: 2px solid rgba(255,255,255,.1); margin-left: 8px; padding-left: 16px; display: grid; gap: 12px; }
.t-item { display: grid; grid-template-columns: 120px 1fr; gap: 10px; align-items: start; }
.t-time { color: var(--muted); font-weight: 600; }
.t-body { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 10px 12px; }

.logo-row { display: flex; gap: 12px; flex-wrap: wrap; }
.logo-chip { display: inline-flex; padding: 10px 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: var(--text); text-decoration: none; }
.logo-chip:hover { background: rgba(255,255,255,.08); }

/* Announcements */
.ann-list { max-height: 280px; overflow-y: auto; overflow-x: hidden; display: grid; gap: 8px; padding-right: 4px; }
.ann-list::-webkit-scrollbar { width: 4px; }
.ann-list::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 2px; }
.ann-list::-webkit-scrollbar-thumb { background: rgba(124,108,255,.3); border-radius: 2px; }
.ann-list::-webkit-scrollbar-thumb:hover { background: rgba(124,108,255,.5); }
.ann-item { text-align: left; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 10px 12px; cursor: pointer; transition: border-color .2s ease; }
.ann-item:hover { border-color: rgba(124,108,255,.25); }
.ann-item h4 { margin: 0 0 4px; font-size: 15px; font-weight: 700; letter-spacing: .1px; color: var(--text); }
.ann-item p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* Modal */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 100; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px); }
.modal-dialog { position: relative; width: min(640px, 92%); background: var(--surface); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; box-shadow: var(--shadow); padding: 16px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.modal-title { margin: 0; font-size: 18px; }
.modal-body { color: var(--muted); margin-top: 8px; }
.modal-close { background: transparent; border: 0; color: var(--text); font-size: 20px; cursor: pointer; }

/* Profile */
.profile-wrap { display: grid; place-items: center; }
.profile-card { width: min(760px, 96%); background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; box-shadow: var(--shadow); padding: 28px 24px; text-align: center; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.profile-card:hover { transform: translateY(-10px); box-shadow: 0 18px 40px rgba(0,0,0,.45); border-color: rgba(0,122,255,.45); }
.profile-avatar { width: 190px; height: 190px; border-radius: 999px; border: 6px solid #007AFF; box-shadow: 0 10px 24px rgba(0,0,0,.35); overflow: hidden; background: #0b0e1c; margin: 0 auto; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-name { margin: 16px 0 4px; letter-spacing: .2px; }
.profile-role { margin: 0 0 10px; color: #3aa0ff; font-weight: 700; }
.profile-bio { max-width: 640px; margin: 0 auto 18px; color: var(--muted); }
.profile-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.btn-blue { background: transparent; color: #007AFF; border: 1px solid #007AFF; }
.btn-blue:hover { background: #007AFF; color: #000; box-shadow: 0 5px 15px rgba(0,122,255,.3); transform: translateY(-3px); }
@media (max-width: 480px) {
  .profile-avatar { width: 150px; height: 150px; }
}

/* Form */
.form { margin-top: 10px; }
.hidden { display: none; }
.form-row { display: grid; gap: 6px; margin-bottom: 10px; }
label { color: var(--muted); font-size: 14px; }
input, textarea { width: 100%; padding: 12px 14px; background: rgba(255,255,255,.06); color: var(--text); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; outline: none; }
input:focus, textarea:focus { box-shadow: var(--ring); border-color: var(--primary); }
.form-actions { margin-top: 10px; }

/* PDF frame */
.pdf-frame { width: 100%; height: 60vh; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.pdf-frame iframe { width: 100%; height: 100%; border: 0; }

/* Rules (Text) */
.rules-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 20px; }
@media (max-width: 1024px) { .rules-wrap { grid-template-columns: 1fr; } .toc { order: -1; } }
.toc { position: sticky; top: 74px; align-self: start; }
.toc-inner { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
.toc-inner h2 { margin: 0 0 8px; font-size: 18px; }
#toc-list { display: grid; gap: 6px; }
#toc-list a { color: var(--muted); text-decoration: none; padding: 6px 8px; border-radius: 8px; }
#toc-list a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.rules-text { background: var(--surface); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); white-space: normal; }
.rules-text p { margin: 10px 0; }
.rules-text ul, .rules-text ol { margin: 8px 0 8px 18px; }
.rules-text li { margin: 6px 0; }
.content-offset { margin-left: 260px; }
@media (max-width: 1024px) { .content-offset { margin-left: 0; } }
.rules-text .section-title { font-weight: 800; color: var(--text); margin: 18px 0 6px; font-size: 20px; }
.rules-text .sub-title { font-weight: 700; color: var(--text); margin: 14px 0 4px; font-size: 16px; }
.rules-text .rule-line { color: var(--text); }
.rules-text .meta { color: var(--muted); }
.rules-text .loading { color: var(--muted); }
.rules-text[dir="rtl"] { direction: rtl; text-align: right; }

/* Tables */
.table { width: 100%; border-collapse: collapse; border-spacing: 0; overflow: hidden; border-radius: 12px; }
.table th, .table td { padding: 10px 12px; text-align: left; }
.table thead th { background: rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.12); color: var(--text); }
.table tbody tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.table tbody tr:last-child { border-bottom: 0; }
.table tbody td { color: var(--text); background: rgba(255,255,255,.03); }
.table .muted { color: var(--muted); font-weight: 500; }

/* Registration Page Styles */
.registration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.registration-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.registration-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.literature-card {
  border: 2px solid var(--secondary);
}

.category-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.category-badge.literature {
  background: var(--secondary);
}

.callout-important {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--text);
}

.callout-important h3 {
  color: var(--primary);
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

.callout-important ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.callout-important li {
  margin: 0.5rem 0;
  color: var(--text);
}

.callout-important a {
  color: var(--primary);
  text-decoration: none;
}

.callout-important a:hover {
  text-decoration: underline;
}

/* Ambassador Page Styles */
.ambassador-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.eligibility-section {
  margin-bottom: 4rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.requirement-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.requirement-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.requirement-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.requirement-card h3 {
  color: var(--text);
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

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

.application-section {
  margin-bottom: 4rem;
}

.application-steps {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  background: var(--primary);
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--text);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.step-content p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cta-section {
  margin-bottom: 4rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.cta-card h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
}

.cta-card p {
  margin: 0 0 2rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.contact-item h3 {
  color: var(--text);
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

.contact-item p {
  color: var(--muted);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.phone-numbers {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.phone-numbers a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.phone-numbers a:hover {
  background: rgba(59, 130, 246, 0.2);
}

.instagram-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 6px;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.instagram-link:hover {
  background: rgba(147, 51, 234, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .registration-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .cta-card h2 {
    font-size: 1.5rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .phone-numbers {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; background: rgba(10,12,24,.5); }
.footer-inner { display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.footer-inner p { margin: 0; }
.footer-inner p a { color: var(--muted); text-decoration: none; }
.footer-inner p a:hover { color: var(--text); }
.footer-inner p a:hover .rights-hover { text-decoration: underline; }
.dev-link { color: var(--muted); text-decoration: none; }
.dev-link:hover { text-decoration: underline; color: var(--text); }
.site-footer nav a { color: var(--muted); text-decoration: none; margin-left: 12px; }
.site-footer nav a:hover { color: var(--text); }

@media (max-width: 640px) {
  .hero { padding: 64px 0 28px; }
  .hero { min-height: 58vh; }
  .hero .hero-img { object-fit: contain; object-position: top center; }
  .container { padding-left: 16px; padding-right: 16px; }
  .grid-2 { grid-template-columns: 1fr !important; gap: 16px; }
  .cards { grid-template-columns: 1fr; gap: 12px; }
  .section { padding: 28px 0; }
  .callout { padding: 12px 14px; }
  .about-card { padding: 12px; }
  .about-card .about-img { margin-bottom: 10px; }
  .ann-list .ann-item { text-align: left; }
}


