/*
Theme Name: Haizum Uloomul Academy
Theme URI: https://haizum.agency
Author: Haizum Agency
Author URI: https://haizum.agency
Description: Premium custom theme for Uloomul Akhirah Academy (course.uloomulakhirah.com) - online courses, diploma programs and a student dashboard built on Tutor LMS. Pure PHP, HTML5, CSS3, vanilla JavaScript. No page builders. Sibling site to the Haizum Uloomul Store, sharing the "Mihrab" design system.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
Text Domain: haizum-uloomul-academy
Tags: education, lms, islamic, e-learning, custom

This is the master stylesheet (loaded first). It defines the "Mihrab
Academy" design tokens - the same Mihrab system used by the Store theme,
extended with learning-specific tokens (level badges, progress states) so
both sites feel like one ecosystem. Page/component stylesheets are
enqueued separately from functions.php.
*/

/* ==========================================================================
   1. DESIGN TOKENS — "Mihrab Academy"
   Shared base with the Store theme: Deep Emerald primary, Warm Gold
   accent, Warm White background, the Mihrab Arch frame and the 8-point
   star texture. New tokens below are additive (course levels, progress,
   locked content) and never override the shared base.
   ========================================================================== */

:root {
  /* Color — identical to the Store's Mihrab tokens */
  --c-emerald: #0E3F33;
  --c-emerald-dark: #0A2E26;
  --c-emerald-light: #1E5C4B;
  --c-emerald-tint: #E7EFEC;
  --c-gold: #C7A03C;
  --c-gold-light: #E4C97A;
  --c-gold-tint: #F8F1DE;
  --c-cream: #FBF6EC;
  --c-white: #FFFFFF;
  --c-charcoal: #2A2823;
  --c-muted: #75706A;
  --c-border: #E7E0D2;
  --c-success: #3F8F5C;
  --c-error: #B0473D;

  /* Typography — identical to the Store */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Amiri', 'Times New Roman', serif;

  --fs-h1: clamp(2.25rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.25rem);
  --fs-h3: 1.375rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8125rem;

  --lh-heading: 1.2;
  --lh-body: 1.7;

  /* Spacing (8px grid) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 96px;

  /* Layout */
  --container-max: 1280px;
  --container-pad: var(--sp-4);
  --radius-card: 12px;
  --radius-pill: 999px;
  --radius-arch: 50% 50% 0 0 / 28% 28% 0 0;

  /* Shadow */
  --shadow-card: 0 1px 2px rgba(14, 63, 51, 0.04), 0 8px 24px rgba(14, 63, 51, 0.06);
  --shadow-card-hover: 0 4px 8px rgba(14, 63, 51, 0.06), 0 16px 32px rgba(14, 63, 51, 0.10);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: 180ms;

  /* Header heights (sticky offset calculations) */
  --switcher-height: 36px;
  --header-height: 80px;
  --bottom-nav-height: 60px;

  /* --- New: Academy-specific tokens --- */

  /* Course level badges */
  --c-level-beginner-bg: var(--c-emerald-tint);
  --c-level-beginner-fg: var(--c-emerald-dark);
  --c-level-intermediate-bg: var(--c-gold-tint);
  --c-level-intermediate-fg: var(--c-emerald-dark);
  --c-level-advanced-bg: var(--c-emerald);
  --c-level-advanced-fg: var(--c-white);

  /* Progress */
  --c-progress-track: var(--c-border);
  --c-progress-fill: var(--c-emerald);

  /* Locked content */
  --c-locked-bg: var(--c-cream);
  --c-locked-fg: var(--c-muted);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--c-emerald); text-decoration: none; }
a:hover { color: var(--c-emerald-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-heading);
  color: var(--c-emerald-dark);
  margin: 0 0 var(--sp-3);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--sp-3); }

ul, ol { padding-left: 1.25em; }

/* Visually-hidden helper for accessibility labels */
.screen-reader-text {
  position: absolute !important;
  left: -9999px;
  top: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Visible keyboard focus ring everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Ecosystem switcher cross-site navigation: brief fade-out before the
   browser follows the link to the Store site (see main.js). Shared
   class name with the Store theme so the transition feels identical. */
html {
  opacity: 1;
  transition: opacity 200ms var(--ease);
}
html.haizum-page-leaving {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  html.haizum-page-leaving { opacity: 1; }
}

/* Body padding so the mobile bottom nav never overlaps content */
body.has-bottom-nav {
  padding-bottom: var(--bottom-nav-height);
}
@media (min-width: 769px) {
  body.has-bottom-nav { padding-bottom: 0; }
}

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: var(--sp-7) 0;
}

@media (max-width: 768px) {
  .section { padding: var(--sp-6) 0; }
}

.section-head {
  max-width: 640px;
  margin: 0 auto var(--sp-5);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
}

.section-head p {
  color: var(--c-muted);
}

.section--tint {
  background: var(--c-emerald-tint);
}

.section--emerald {
  background: var(--c-emerald);
  color: var(--c-white);
}
.section--emerald h2,
.section--emerald h3 { color: var(--c-white); }
.section--emerald .section-head p { color: rgba(255,255,255,0.78); }
.section--emerald .eyebrow { color: var(--c-gold-light); }

/* Geometric pattern texture — ambient background only */
.pattern-bg {
  position: relative;
}
.pattern-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/images/pattern-geometric.svg');
  background-repeat: repeat;
  background-size: 220px 220px;
  opacity: 0.05;
  pointer-events: none;
}
.section--emerald.pattern-bg::before { opacity: 0.08; filter: invert(1); }
.pattern-bg > .container { position: relative; z-index: 1; }

/* Section-head row variant (heading left, CTA right) */
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  max-width: none;
  text-align: left;
  margin-bottom: var(--sp-5);
}
.section-head--row h2 { margin-bottom: 0; }
.section-head--row .eyebrow { margin-bottom: var(--sp-1); }

.section-cta {
  text-align: center;
  margin-top: var(--sp-5);
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-emerald);
  color: var(--c-white);
}
.btn--primary:hover { background: var(--c-emerald-light); color: var(--c-white); }

.btn--secondary {
  background: transparent;
  color: var(--c-emerald);
  border-color: var(--c-emerald);
}
.btn--secondary:hover { background: var(--c-emerald); color: var(--c-white); }

.btn--gold {
  background: var(--c-gold);
  color: var(--c-emerald-dark);
}
.btn--gold:hover { background: var(--c-gold-light); }

.btn--ghost {
  background: transparent;
  color: var(--c-emerald);
  padding: 8px 4px;
  min-height: auto;
}
.btn--ghost:hover { color: var(--c-gold); text-decoration: underline; }

.btn--block { width: 100%; }
.btn--sm { padding: 8px 18px; font-size: var(--fs-small); min-height: 36px; }

.btn[disabled],
.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   5. CARDS, ARCH FRAME, BREADCRUMB
   ========================================================================== */

.card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* The Mihrab Arch — signature framing shape for media */
.arch-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-arch);
  background: var(--c-emerald-tint);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.arch-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-arch);
  border: 2px solid var(--c-gold);
  pointer-events: none;
}

.breadcrumb {
  font-size: var(--fs-small);
  color: var(--c-muted);
  padding: var(--sp-3) 0;
}
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-emerald); }
.breadcrumb .breadcrumb__sep { margin: 0 var(--sp-1); color: var(--c-border); }

/* ==========================================================================
   6. UTILITIES
   ========================================================================== */

.visually-balanced { text-wrap: balance; }
.text-muted { color: var(--c-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ==========================================================================
   7. BADGES — general, course level, free/paid, locked
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-small);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--c-gold-tint);
  color: var(--c-emerald-dark);
  letter-spacing: 0.02em;
}
.badge--category,
.badge--tag {
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.badge--category:hover,
.badge--tag:hover {
  background: var(--c-emerald);
  color: var(--c-white);
}
.badge--tag {
  background: var(--c-emerald-tint);
  color: var(--c-emerald-dark);
  font-weight: 600;
}

/* Course level badges */
.badge--level-beginner { background: var(--c-level-beginner-bg); color: var(--c-level-beginner-fg); }
.badge--level-intermediate { background: var(--c-level-intermediate-bg); color: var(--c-level-intermediate-fg); }
.badge--level-advanced { background: var(--c-level-advanced-bg); color: var(--c-level-advanced-fg); }

/* Free / price badges */
.badge--free { background: var(--c-success); color: var(--c-white); }
.badge--enrolled { background: var(--c-emerald-tint); color: var(--c-emerald-dark); }

/* Status badges (assignments/exams in the dashboard) */
.badge--pending { background: var(--c-gold-tint); color: var(--c-emerald-dark); }
.badge--graded,
.badge--passed { background: var(--c-success); color: var(--c-white); }
.badge--locked { background: var(--c-locked-bg); color: var(--c-locked-fg); }

/* ==========================================================================
   8. STAR RATING — Unicode overlay (shared: course cards, reviews,
   testimonials). Same dependency-free technique as the Store theme.
   ========================================================================== */

.star-rating {
  position: relative;
  display: inline-block;
  width: 5.4em;
  height: 1.2em;
  line-height: 1.2;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--c-border);
}
.star-rating::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
}
.star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  color: var(--c-gold);
}
.star-rating span::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
  white-space: nowrap;
}

/* ==========================================================================
   9. PROGRESS BAR + RING (shared: course cards, dashboard)
   ========================================================================== */

.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--c-progress-track);
  overflow: hidden;
}
.progress-bar__fill {
  display: block;
  height: 100%;
  background: var(--c-progress-fill);
  border-radius: var(--radius-pill);
  transition: width var(--dur) var(--ease);
}
.progress-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-bottom: 4px;
}

.progress-ring {
  --ring-size: 72px;
  --ring-thickness: 6px;
  position: relative;
  width: var(--ring-size);
  height: var(--ring-size);
}
.progress-ring svg { transform: rotate(-90deg); }
.progress-ring circle {
  fill: none;
  stroke-width: var(--ring-thickness);
}
.progress-ring .progress-ring__track { stroke: var(--c-progress-track); }
.progress-ring .progress-ring__fill {
  stroke: var(--c-progress-fill);
  stroke-linecap: round;
  transition: stroke-dashoffset var(--dur) var(--ease);
}
.progress-ring__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-emerald-dark);
}

/* ==========================================================================
   10. QUICK VIEW MODAL (global — course cards on any page)
   ========================================================================== */

.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.quick-view-modal[hidden] { display: none; }

.quick-view-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 38, 0.55);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.quick-view-modal.is-open .quick-view-modal__backdrop { opacity: 1; }

.quick-view-modal__panel {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-card);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-5);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.quick-view-modal.is-open .quick-view-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.quick-view-modal__close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--c-emerald-tint);
  color: var(--c-emerald-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.quick-view__loading {
  text-align: center;
  padding: var(--sp-7) 0;
  color: var(--c-muted);
}

/* ==========================================================================
   11. SHARED COMPONENTS — course card, teacher card, stat block, blog card
   Used across the homepage, archives and search results.
   ========================================================================== */

/* --- Course card --- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.course-grid--scroll {
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  overflow-x: auto;
  padding-bottom: var(--sp-2);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.course-grid--scroll .course-card { scroll-snap-align: start; }

.course-card { display: flex; flex-direction: column; overflow: hidden; }

.course-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
}
.course-card__badges {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  right: var(--sp-2);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-2);
  z-index: 2;
}
.course-card__wishlist {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--c-emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.course-card__wishlist:hover { transform: scale(1.08); }
.course-card__wishlist.is-active { color: var(--c-error); }
.course-card__wishlist.is-active svg { fill: currentColor; }

.course-card__quickview {
  position: absolute;
  left: var(--sp-2);
  right: var(--sp-2);
  bottom: var(--sp-2);
  z-index: 2;
  background: rgba(255,255,255,0.94);
  border-color: transparent;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.course-card:hover .course-card__quickview,
.course-card:focus-within .course-card__quickview {
  opacity: 1;
  transform: translateY(0);
}

.course-card__body {
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
}
.course-card__subject {
  font-size: 0.75rem;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin: 0;
}
.course-card__title {
  font-size: 1.0625rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.course-card__title a { color: var(--c-emerald-dark); }
.course-card__title a:hover { color: var(--c-emerald); }

.course-card__teacher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  color: var(--c-muted);
}
.course-card__teacher img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.course-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin: 2px 0;
}
.course-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.course-card__meta svg { color: var(--c-gold); flex-shrink: 0; }

.course-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--c-muted);
}
.course-card__rating .star-rating { font-size: 0.8125rem; }

.course-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
}
.course-card__price {
  font-weight: 700;
  color: var(--c-emerald);
}
.course-card__price del {
  color: var(--c-muted);
  font-weight: 400;
  margin-right: 4px;
  text-decoration-color: var(--c-error);
}
.course-card__progress { margin-top: var(--sp-2); }

/* --- Teacher card --- */
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-4);
}
.teacher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-3);
  text-decoration: none;
  color: var(--c-charcoal);
}
.teacher-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-gold);
}
.teacher-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.teacher-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--c-emerald-dark);
}
.teacher-card__specialization { font-size: 0.75rem; }
.teacher-card__bio {
  font-size: var(--fs-small);
  color: var(--c-muted);
}
.teacher-card__count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.avatar-fallback {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-emerald-tint), var(--c-gold-tint));
}

/* --- Stat block --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-4);
  text-align: center;
}
.stat-block__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
}
.stat-block__label {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.78);
  margin-top: var(--sp-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Blog card (reused as-is from the Store theme pattern) --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--c-charcoal);
  overflow: hidden;
}
.blog-card__media { aspect-ratio: 3 / 2; }
.blog-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-emerald-light);
}
.blog-card__body {
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.blog-card__date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  font-weight: 700;
}
.blog-card__title { font-size: 1.1875rem; margin: 0; }
.blog-card__excerpt { color: var(--c-muted); font-size: var(--fs-small); margin: 0; }
.blog-card__readmore {
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--c-emerald);
  margin-top: var(--sp-2);
}
