/* ===========================
   HERO
=========================== */
.ppdb-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1f5c 0%, #1a3a6b 45%, #1e4d8c 75%, #2563b0 100%);
  overflow: hidden;
}

.ppdb-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.ph-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); }
.ph-circle.c1 { width: 600px; height: 600px; top: -250px; right: -150px; }
.ph-circle.c2 { width: 350px; height: 350px; top: -50px; right: 80px; background: rgba(255,255,255,0.02); }
.ph-circle.c3 { width: 250px; height: 250px; bottom: -100px; left: 80px; }

.ppdb-hero-inner {
  position: relative; z-index: 10;
  max-width: 1400px; margin: 0 auto;
  padding: 100px 5% 120px;
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}

.ppdb-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 7px 18px; border-radius: 20px;
  margin-bottom: 22px; backdrop-filter: blur(4px);
}

.ppdb-hero-title {
  font-size: 40px; font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: 18px;
}
.ph-blue { color: #7eb8f7; }

.ppdb-hero-desc {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.8; margin-bottom: 30px; max-width: 600px;
}

.ppdb-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.ph-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #1a3a6b;
  font-size: 13px; font-weight: 700;
  padding: 13px 26px; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.15s;
}
.ph-btn-primary:hover { background: #e8f0fe; transform: translateY(-2px); }

.ph-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 12px 24px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.ph-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.ppdb-hero-img {
  position: relative; display: flex;
  justify-content: center; align-items: flex-end;
}
.ppdb-hero-img img {
  width: 100%; max-height: 420px;
  object-fit: cover; object-position: top;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.12);
}
.ph-img-badge {
  position: absolute; bottom: -16px; left: 20px;
  background: #fff; border-radius: 12px;
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(26,58,107,0.2);
}
.ph-img-badge i { font-size: 22px; color: #f0c040; }
.ph-img-badge div { display: flex; flex-direction: column; }
.ph-img-badge strong { font-size: 13px; font-weight: 700; color: #1a3a6b; }
.ph-img-badge span { font-size: 11px; color: #888; }

/* Feature Strip */
.ppdb-feat-strip {
  position: relative; z-index: 20;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.ppdb-feat-strip-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.pfs-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid #eee;
}
.pfs-item:last-child { border-right: none; }
.pfs-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: #e8f0fe; color: #1a3a6b;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pfs-icon.orange { background: #fff3e0; color: #e8a020; }
.pfs-icon.green  { background: #e8f8ee; color: #27ae60; }
.pfs-icon.purple { background: #f3e8ff; color: #8e44ad; }
.pfs-item div { display: flex; flex-direction: column; }
.pfs-item strong { font-size: 13px; font-weight: 700; color: #1a1a2e; }
.pfs-item span   { font-size: 11px; color: #888; margin-top: 2px; }

/* ===========================
   SECTION COMMON
=========================== */
.ppdb-sec-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.ppdb-sec-label {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; font-size: 11px; font-weight: 700;
  color: #3a5bd9; letter-spacing: 2px; margin-bottom: 10px;
}
.ppdb-sec-label span { display: inline-block; width: 28px; height: 2px; background: #3a5bd9; border-radius: 2px; }
.ppdb-sec-label.white { color: rgba(255,255,255,0.7); }
.ppdb-sec-label.white span { background: rgba(255,255,255,0.4); }
.ppdb-sec-label.left { justify-content: flex-start; }

.ppdb-sec-title {
  font-size: 28px; font-weight: 800; color: #1a1a2e;
  text-align: center; margin-bottom: 40px; line-height: 1.3;
}
.ppdb-sec-title span { color: #3a5bd9; }
.ppdb-sec-title.white { color: #fff; }
.gold-text { color: #f0c040; }

/* ===========================
   HARAPAN
=========================== */
.ppdb-harapan { background: #fff; padding: 72px 0 64px; }

.harapan-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 20px;
}
.harapan-card {
  background: #f8f9fc; border-radius: 16px;
  padding: 28px 18px 24px; text-align: center;
  border: 1px solid #e8eef8;
  border-top: 3px solid #3a5bd9;
  transition: transform 0.2s, box-shadow 0.2s;
}
.harapan-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(26,58,107,0.1); background: #fff; }
.harapan-icon-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  background: #e8f0fe; color: #3a5bd9;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
}
.harapan-card h4 { font-size: 13px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.harapan-card p  { font-size: 12px; color: #666; line-height: 1.6; }

/* ===========================
   SMP HIBATULLAH
=========================== */
.ppdb-smp {
  background: linear-gradient(135deg, #0a1f5c 0%, #1a3a6b 50%, #1e4d8c 100%);
  padding: 72px 0;
}
.ppdb-smp-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.ppdb-smp-title {
  font-size: 26px; font-weight: 800; color: #fff;
  line-height: 1.3; margin-bottom: 18px;
}
.ppdb-smp-title span { color: #7eb8f7; }
.ppdb-smp-title em { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.6); font-style: normal; }
.ppdb-smp-text p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 14px; }
.ppdb-smp-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.smp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
}
.smp-badge i { color: #f0c040; }

.vid-card {
  position: relative; border-radius: 16px; overflow: hidden;
  background: #000; box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.vid-card img { width: 100%; height: 280px; object-fit: cover; opacity: 0.7; display: block; }
.vid-card.dark img { height: 340px; opacity: 0.6; }
.vid-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px; background: #ff0000;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: 0 4px 20px rgba(255,0,0,0.5);
  transition: transform 0.2s, background 0.2s;
}
.vid-play-btn.large { width: 76px; height: 76px; font-size: 28px; }
.vid-play-btn:hover { transform: translate(-50%,-50%) scale(1.1); background: #cc0000; }
.vid-yt-tag {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.75); color: #fff;
  font-size: 11px; padding: 5px 10px; border-radius: 4px;
}
.vid-dewan-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 11px; padding: 4px 10px; border-radius: 4px;
}
.vid-top-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.65); color: #fff;
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 4px;
}
.vid-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.8); padding: 8px 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.8);
}
.vbb-right { display: flex; gap: 12px; font-size: 13px; }

/* ===========================
   KENAPA MEMILIH
=========================== */
.ppdb-kenapa { background: #f8f9fc; padding: 72px 0 64px; }
.kenapa-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.kenapa-card {
  background: #fff; border-radius: 16px;
  padding: 32px 22px 28px;
  border: 1px solid #e8eef8;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kenapa-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(26,58,107,0.12); }
.kenapa-num {
  position: absolute; top: 16px; right: 16px;
  font-size: 48px; font-weight: 900;
  color: rgba(58,91,217,0.06); line-height: 1;
}
.kenapa-icon-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.kenapa-icon-wrap.red    { background: #fde8e8; color: #c0392b; }
.kenapa-icon-wrap.blue   { background: #e8f0fe; color: #1a3a6b; }
.kenapa-icon-wrap.orange { background: #fff3e0; color: #e8a020; }
.kenapa-icon-wrap.green  { background: #e8f8ee; color: #27ae60; }
.kenapa-card h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.4; }
.kenapa-card p  { font-size: 12.5px; color: #666; line-height: 1.65; }

/* ===========================
   SAMBUTAN
=========================== */
.ppdb-sambutan {
  background: linear-gradient(135deg, #0a1f5c 0%, #1a3a6b 50%, #1e4d8c 100%);
  padding: 72px 0;
}
.sambutan-layout { display: grid; grid-template-columns: 1fr 360px; gap: 20px; align-items: start; }
.sambutan-playlist { background: rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.sp-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.sp-item:last-child { border-bottom: none; }
.sp-item:hover, .sp-item.active { background: rgba(255,255,255,0.12); }
.sp-item img { width: 58px; height: 42px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }
.sp-item span { flex: 1; font-size: 11.5px; color: rgba(255,255,255,0.85); line-height: 1.4; }
.sp-item em { font-size: 11px; color: rgba(255,255,255,0.45); font-style: normal; flex-shrink: 0; }

/* ===========================
   FORM PENDAFTARAN
=========================== */
.kuota-form-wrap {
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid #e8eef8;
}

.kuota-form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.kuota-form-title span {
  color: #3a5bd9;
}

.ppdb-kuota .ppdb-form-sub {
  margin-bottom: 28px;
}

.ppdb-form-sub {
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}

.ppdb-form-sub strong {
  color: #1a3a6b;
}

.ppdb-form {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px 32px;
  border: 1px solid #e0e8f4;
  box-shadow: 0 8px 32px rgba(26, 58, 107, 0.08);
}

.ppdb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.ppdb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ppdb-field--full {
  grid-column: 1 / -1;
}

.ppdb-field label {
  font-size: 13px;
  font-weight: 600;
  color: #1a3a6b;
}

.ppdb-field label span {
  color: #e74c3c;
}

.ppdb-field input,
.ppdb-field select,
.ppdb-field textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  padding: 12px 14px;
  border: 1px solid #d8e2f0;
  border-radius: 8px;
  background: #fafbfd;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.ppdb-field input:focus,
.ppdb-field select:focus,
.ppdb-field textarea:focus {
  outline: none;
  border-color: #3a5bd9;
  box-shadow: 0 0 0 3px rgba(58, 91, 217, 0.12);
  background: #fff;
}

.ppdb-field textarea {
  resize: vertical;
  min-height: 72px;
}

.ppdb-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 28px;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: background 0.2s, transform 0.15s;
}

.ppdb-form-submit:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.ppdb-form-submit i {
  font-size: 22px;
}

.ppdb-form-note {
  text-align: center;
  font-size: 12.5px;
  color: #888;
  margin-top: 16px;
}

.ppdb-form-note i {
  color: #25d366;
  margin-right: 4px;
}

.ppdb-form-note strong {
  color: #1a3a6b;
}

/* ===========================
   KUOTA
=========================== */
.ppdb-kuota { background: #fff; padding: 72px 0 64px; }
.kuota-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kuota-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kuota-info-card {
  background: #f8f9fc; border-radius: 14px;
  padding: 20px 18px; display: flex; align-items: center; gap: 14px;
  border: 1px solid #e8eef8;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kuota-info-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,58,107,0.08); }
.kuota-info-card.highlight { background: #1a3a6b; border-color: #1a3a6b; }
.kuota-info-card.highlight .kic-icon { background: rgba(255,255,255,0.15); color: #fff; }
.kuota-info-card.highlight strong { color: #fff; }
.kuota-info-card.highlight span { color: rgba(255,255,255,0.65); }
.kic-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #e8f0fe; color: #3a5bd9;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.kuota-info-card div { display: flex; flex-direction: column; }
.kuota-info-card strong { font-size: 15px; font-weight: 800; color: #1a1a2e; }
.kuota-info-card span  { font-size: 11.5px; color: #888; margin-top: 2px; }

.kuota-countdown-wrap { text-align: center; }
.countdown-title { font-size: 11px; font-weight: 700; color: #888; letter-spacing: 2px; margin-bottom: 20px; }
.countdown-boxes { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 28px; }
.cd-box {
  background: linear-gradient(135deg, #1a3a6b, #3a5bd9);
  border-radius: 12px; padding: 18px 22px; min-width: 80px; text-align: center;
  box-shadow: 0 6px 20px rgba(26,58,107,0.25);
}
.cd-box span { display: block; font-size: 38px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.cd-box label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 1.5px; }
.cd-sep { font-size: 28px; font-weight: 800; color: #3a5bd9; }
.kuota-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: background 0.2s, transform 0.15s;
}
.kuota-wa-btn:hover { background: #1da851; transform: translateY(-2px); }
.kuota-wa-btn i { font-size: 20px; }

/* ===========================
   LOKASI
=========================== */
.ppdb-lokasi { background: #f8f9fc; padding: 72px 0 64px; }
.lokasi-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.lokasi-info-wrap { display: flex; flex-direction: column; gap: 14px; }
.lokasi-info-item {
  background: #fff; border-radius: 12px; padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  border: 1px solid #e8eef8;
}
.lii-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: #e8f0fe; color: #3a5bd9;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.lokasi-info-item strong { font-size: 13px; font-weight: 700; color: #1a3a6b; display: block; margin-bottom: 4px; }
.lokasi-info-item p { font-size: 12.5px; color: #555; line-height: 1.6; margin: 0; }
.lokasi-info-item p a { color: #25d366; font-weight: 600; }
.lokasi-info-item p a:hover { text-decoration: underline; }
.lokasi-btns { display: flex; flex-direction: column; gap: 10px; }
.lokasi-btn-maps {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #1a3a6b; color: #fff; font-size: 13px; font-weight: 600;
  padding: 12px; border-radius: 8px; transition: background 0.2s;
}
.lokasi-btn-maps:hover { background: #0f2548; }
.lokasi-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; font-size: 13px; font-weight: 600;
  padding: 12px; border-radius: 8px; transition: background 0.2s;
}
.lokasi-btn-wa:hover { background: #1da851; }

/* ===========================
   FOOTER
=========================== */
.ppdb-footer { background: #0d1a2e; color: #fff; }
.ppdb-footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 52px 24px 36px;
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr; gap: 40px;
}
.pf-logo { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.pf-logo div { display: flex; flex-direction: column; gap: 3px; }
.pf-logo strong { font-size: 14px; font-weight: 800; color: #fff; }
.pf-logo span { font-size: 10px; color: rgba(255,255,255,0.5); }
.pf-tagline { font-size: 13px; font-weight: 700; color: #7eb8f7; margin-bottom: 8px; }
.pf-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.pf-socials { display: flex; gap: 8px; }
.pf-socials a { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; transition: opacity 0.2s; }
.pf-socials a:hover { opacity: 0.8; }
.pfs-fb { background: #1877f2; }
.pfs-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.pfs-yt { background: #ff0000; }
.pfs-tt { background: #010101; }
.pf-heading { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.pf-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pf-list li a { font-size: 12.5px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.pf-list li a:hover { color: #7eb8f7; }
.pf-list li a i { font-size: 11px; color: #7eb8f7; width: 14px; }
.pf-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pf-contact li { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.pf-contact li i { color: #27ae60; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.ppdb-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.ppdb-footer-bottom-inner { max-width: 1100px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: rgba(255,255,255,0.35); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .ppdb-feat-strip-inner { grid-template-columns: repeat(2,1fr); }
  .kenapa-grid { grid-template-columns: repeat(2,1fr); }
  .sambutan-layout { grid-template-columns: 1fr; }
  .ppdb-footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .ppdb-hero-inner { grid-template-columns: 1fr; padding-bottom: 120px; }
  .ppdb-hero-title { font-size: 28px; }
  .ppdb-smp-layout { grid-template-columns: 1fr; }
  .harapan-grid { grid-template-columns: repeat(3,1fr); }
  .kuota-layout { grid-template-columns: 1fr; }
  .lokasi-layout { grid-template-columns: 1fr; }
  .ppdb-form-grid { grid-template-columns: 1fr; }
  .ppdb-form { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .kenapa-grid { grid-template-columns: 1fr; }
  .harapan-grid { grid-template-columns: repeat(2,1fr); }
  .kuota-info-cards { grid-template-columns: 1fr; }
  .countdown-boxes { gap: 5px; }
  .cd-box { min-width: 64px; padding: 14px 16px; }
  .cd-box span { font-size: 28px; }
  .ppdb-footer-inner { grid-template-columns: 1fr; }
}

/* ===========================
   VIDEO THUMBNAIL OVERLAY
=========================== */
.vid-thumb-overlay {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  display: block;
}

.vid-thumb-overlay img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.vid-thumb-overlay:hover img {
  transform: scale(1.03);
}

.vid-thumb-overlay .vid-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,0,0,0.5);
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}

.vid-thumb-overlay:hover .vid-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #cc0000;
}
