/* ============================================================
   SCHOLARSHIPS PAGE — Apple-style UI  |  HST 2026
   ============================================================ */

:root {
  --blue:          #007aff;
  --blue-light:    #0a84ff;
  --blue-dark:     #0055cc;
  --green:         #34c759;
  --orange:        #ff9500;
  --red:           #ff3b30;
  --label:         #000000;
  --label-2:       #3c3c43cc;   /* 80% */
  --label-3:       #3c3c4399;   /* 60% */
  --label-4:       #3c3c4366;   /* 40% */
  --fill-1:        rgba(120,120,128,.2);
  --fill-2:        rgba(120,120,128,.16);
  --fill-3:        rgba(120,120,128,.12);
  --bg:            #ffffff;
  --bg-2:          #f2f2f7;
  --bg-3:          #e5e5ea;
  --separator:     rgba(60,60,67,.18);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-xl:     20px;
  --radius-pill:   50px;
  --t-spring:      all .28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--label);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; padding: 0 20px; margin: 0 auto; }

/* ── HERO ──────────────────────────────────────────────────── */
.scholarships-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(145deg, #005ecb 0%, #0a84ff 55%, #30a5ff 100%);
  padding: 110px 0 72px;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(255,255,255,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(0,200,255,.12) 0%, transparent 50%);
  pointer-events: none;
}

.floating-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.shape-1 { width: 320px; height: 320px; top: -80px; right: -60px; }
.shape-2 { width: 200px; height: 200px; bottom: -40px; left: -40px; }
.shape-3 { width: 140px; height: 140px; top: 40%; left: 30%; }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto; padding: 0 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Search */
.search-container { margin-bottom: 20px; }
.search-box {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  pointer-events: none;
}
.search-box input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: var(--t-spring);
}
.search-box input::placeholder { color: rgba(255,255,255,.65); }
.search-box input:focus {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,.15);
}

/* Learn Button */
.learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--t-spring);
  margin-bottom: 32px;
  letter-spacing: -.01em;
}
.learn-btn:hover {
  background: rgba(255,255,255,.32);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.learn-btn:active { transform: scale(.97); }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 16px 32px;
  max-width: 420px;
  margin: 0 auto;
}
.stat-item { text-align: center; flex: 1; }
.stat-number { display: block; font-size: 1.7rem; font-weight: 700; color: #fff; letter-spacing: -.02em; line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: .75rem; color: rgba(255,255,255,.78); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.25); margin: 0 16px; }

/* ── FILTER SECTION ────────────────────────────────────────── */
.filter-section { padding: 28px 0 0; }

.filter-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--separator);
  box-shadow: 0 2px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
  padding: 20px 24px 24px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--separator);
}

.filter-title-group {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--label);
}
.filter-title-group svg { color: var(--blue); }

.reset-filters-btn {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--t-spring);
  font-family: inherit;
}
.reset-filters-btn:hover { background: rgba(0,122,255,.08); }

.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.filter-group { display: flex; flex-direction: column; gap: 6px; }
.filter-label { font-size: .78rem; font-weight: 600; color: var(--label-3); letter-spacing: .01em; }

.select-wrap { position: relative; }
.filter-select {
  width: 100%;
  padding: 10px 34px 10px 12px;
  border: 1px solid var(--bg-3);
  border-radius: var(--radius-md);
  background: var(--bg-2);
  color: var(--label);
  font-size: .86rem;
  font-family: inherit;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: var(--t-spring);
}
.filter-select:hover { border-color: var(--blue); }
.filter-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,122,255,.12); }

.select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--label-3);
  pointer-events: none;
}

/* ── RESULTS SECTION ───────────────────────────────────────── */
.results-section { padding: 28px 0 64px; }

.results-header {
  margin-bottom: 20px;
}
.results-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--label);
}
.results-header h2 span { color: var(--blue); }

/* ── SCHOLARSHIP CARDS ─────────────────────────────────────── */
.scholarships-list { display: flex; flex-direction: column; gap: 14px; }

.scholarship-card-horizontal {
  display: flex;
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--separator);
  box-shadow: 0 2px 10px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  overflow: hidden;
  transition: var(--t-spring);
}
.scholarship-card-horizontal:hover {
  box-shadow: 0 8px 28px rgba(0,122,255,.13), 0 2px 6px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

/* Image */
.card-image {
  position: relative;
  width: 156px;
  min-width: 156px;
  height: 156px;
  background: var(--bg-2);
  overflow: hidden;
  flex-shrink: 0;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.scholarship-card-horizontal:hover .card-image img { transform: scale(1.06); }

.card-flag {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.countdown-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  background: rgba(0,0,0,.5);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: .01em;
}
.countdown-badge.open         { background: rgba(52,199,89,.85); }
.countdown-badge.closing-soon { background: rgba(255,149,0,.85); }
.countdown-badge.critical     { background: rgba(255,59,48,.88); }
.countdown-badge.expired      { background: rgba(0,0,0,.35); }
.countdown-badge.rolling      { background: rgba(0,122,255,.85); }

/* Main content */
.card-main-content {
  padding: 16px 16px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  gap: 10px;
}

.card-category {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  background: var(--fill-2);
  color: var(--label-2);
}
.card-category.government { background: rgba(0,122,255,.15); color: var(--blue); }
.card-category.university { background: rgba(52,199,89,.15); color: #1e8a3c; }
.card-category.private    { background: rgba(255,149,0,.15); color: #b86b00; }
.card-category.regional   { background: rgba(90,200,250,.2); color: #007aaa; }

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--label);
  line-height: 1.3;
  margin-bottom: 3px;
}
.card-organization {
  font-size: .78rem;
  color: var(--label-3);
  font-weight: 500;
  margin-bottom: 8px;
}
.card-description {
  font-size: .82rem;
  color: var(--label-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.highlight-tag {
  font-size: .72rem;
  padding: 3px 9px;
  background: rgba(0,122,255,.07);
  color: var(--blue);
  border-radius: 10px;
  border: 1px solid rgba(0,122,255,.14);
  font-weight: 500;
}

.card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag {
  font-size: .68rem;
  padding: 2px 8px;
  background: var(--fill-3);
  color: var(--label-3);
  border-radius: 8px;
  border: 1px solid var(--separator);
}

/* Sidebar */
.card-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 16px 16px 14px;
  min-width: 176px;
  max-width: 176px;
  border-left: 1px solid var(--separator);
  background: var(--bg-2);
  gap: 10px;
}

.amount-label, .deadline-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--label-4);
  margin-bottom: 3px;
}
.amount-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}
.amount-period {
  font-size: .72rem;
  color: var(--label-3);
  margin-top: 2px;
}
.deadline-date {
  font-size: .86rem;
  font-weight: 600;
  color: var(--label);
  margin-bottom: 2px;
}
.deadline-days-left {
  font-size: .75rem;
  font-weight: 600;
}
.deadline-days-left.open         { color: #1e8a3c; }
.deadline-days-left.closing-soon { color: #b86b00; }
.deadline-days-left.critical     { color: var(--red); }
.deadline-days-left.expired      { color: var(--label-4); text-decoration: line-through; }
.deadline-days-left.rolling      { color: var(--blue); }

.view-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t-spring);
  white-space: nowrap;
}
.view-details-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,122,255,.28);
}

/* ── NO RESULTS ────────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 56px 20px;
  color: var(--label-3);
}
.no-results-icon {
  margin-bottom: 16px;
  color: var(--label-4);
}
.no-results h3 { font-size: 1.2rem; font-weight: 600; color: var(--label); margin-bottom: 8px; }
.no-results p  { font-size: .88rem; margin-bottom: 20px; }

.reset-btn {
  padding: 10px 22px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .86rem;
  cursor: pointer;
  transition: var(--t-spring);
  font-family: inherit;
}
.reset-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  padding: 48px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--separator);
}
.cta-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.cta-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(0,122,255,.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue);
}
.cta-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--label);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.cta-content p {
  font-size: .9rem;
  color: var(--label-3);
  margin-bottom: 22px;
  line-height: 1.6;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--t-spring);
}
.cta-button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,122,255,.28);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: #1c1c1e;
  padding: 40px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-section h3, .footer-section h4 {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.footer-section p { font-size: .82rem; color: #aeaeb2; line-height: 1.6; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 6px; }
.footer-section ul li a { font-size: .82rem; color: #aeaeb2; text-decoration: none; transition: color .2s; }
.footer-section ul li a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: #636366; }

/* ════════════════════════════════════════════════════════════
   APPLE APP STORE-STYLE NOTICE SHEET
   ════════════════════════════════════════════════════════════ */

/* Backdrop */
.notice-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0,0,0,.0);
  backdrop-filter: blur(0px) saturate(1);
  -webkit-backdrop-filter: blur(0px) saturate(1);
  pointer-events: none;
  transition:
    background .32s ease,
    backdrop-filter .32s ease,
    -webkit-backdrop-filter .32s ease;
}
.notice-backdrop.active {
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  pointer-events: all;
}

/* Sheet */
.notice-sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 910;
  transform: translateX(-50%) translateY(110%);
  width: min(480px, 100vw);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(40px) saturate(2);
  -webkit-backdrop-filter: blur(40px) saturate(2);
  border-radius: 24px 24px 0 0;
  padding: 0 0 max(env(safe-area-inset-bottom), 16px);
  box-shadow: 0 -4px 40px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
  transition: transform .42s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.notice-sheet.active {
  transform: translateX(-50%) translateY(0);
}

/* Handle */
.sheet-handle {
  width: 36px;
  height: 5px;
  background: var(--bg-3);
  border-radius: 3px;
  margin: 10px auto 18px;
}

/* App row */
.sheet-app-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 16px;
}
.sheet-app-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, #e8f0ff 0%, #d0e4ff 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,122,255,.15);
}
.sheet-app-info { flex: 1; min-width: 0; }
.sheet-app-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--label);
  letter-spacing: -.01em;
}
.sheet-app-sub {
  font-size: .75rem;
  color: var(--label-3);
  margin-top: 2px;
}
.sheet-trust-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 600;
  color: #1e8a3c;
  background: rgba(52,199,89,.1);
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid rgba(52,199,89,.2);
  flex-shrink: 0;
}

/* Divider */
.sheet-divider {
  height: 1px;
  background: var(--separator);
  margin: 0 24px;
}

/* Body */
.sheet-body { padding: 20px 24px; }

.sheet-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--label);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.sheet-description {
  font-size: .88rem;
  color: var(--label-2);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Feature items */
.sheet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sheet-feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: var(--label-2);
  font-weight: 500;
}
.sheet-feature-icon {
  width: 30px;
  height: 30px;
  background: rgba(0,122,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

/* Actions */
.sheet-actions {
  padding: 16px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sheet-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: .96rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--t-spring);
  letter-spacing: -.01em;
}
.sheet-btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 18px rgba(0,122,255,.32);
  transform: translateY(-1px);
}
.sheet-btn-primary:active { transform: scale(.98); }
.sheet-btn-primary.loading {
  background: var(--label-4);
  pointer-events: none;
  justify-content: center;
}

.sheet-btn-cancel {
  padding: 13px 20px;
  background: var(--fill-2);
  color: var(--label-2);
  border: none;
  border-radius: var(--radius-lg);
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--t-spring);
}
.sheet-btn-cancel:hover { background: var(--fill-1); color: var(--label); }
.sheet-btn-cancel:active { transform: scale(.98); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .filters-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .scholarships-hero { padding: 88px 0 56px; }

  .scholarship-card-horizontal {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }
  .card-image {
    width: 100%;
    min-width: unset;
    height: 180px;
  }
  .card-sidebar {
    min-width: unset;
    max-width: unset;
    border-left: none;
    border-top: 1px solid var(--separator);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .card-sidebar > * { flex: 1; min-width: 120px; }
  .view-details-btn { flex: 0 0 auto; }

  .filters-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { padding: 14px 20px; }
  .stat-divider { margin: 0 10px; }

  .sheet-features { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .scholarships-hero { padding: 80px 0 48px; min-height: auto; }
  .hero-title { font-size: 1.7rem; }
  .filters-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; max-width: 240px; }
  .stat-divider { width: 80%; height: 1px; margin: 0; }
  .filter-card { padding: 16px; }
  .notice-sheet { width: 100vw; border-radius: 20px 20px 0 0; }
  .sheet-app-row { padding: 0 20px 14px; }
  .sheet-body { padding: 16px 20px; }
  .sheet-actions { padding: 14px 20px 0; }
  .sheet-divider { margin: 0 20px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
  .notice-sheet { transition: none; }
}
