/* ═══════════════════════════════════════════════════════
   DARUL IFTA PAGE — styled to match Al Faaiz theme
   (uses tokens & patterns from css/style.css: --navy, --navy-dark,
   --teal, --gold, --offwhite, --lightgrey, --grey, --border, --shadow*)
   All classes prefixed "di-" so this file only affects darul-ifta.html
═══════════════════════════════════════════════════════ */

body.urdu { font-family: 'Noto Nastaliq Urdu', serif; direction: rtl; }
body.urdu .section-title, body.urdu .di-hero h1, body.urdu .di-ask-cta h2 { font-family: 'Noto Nastaliq Urdu', serif; }

.di-gold-divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 16px 0 28px; }
.di-gold-divider.center { margin: 16px auto 28px; }

/* ───────── HERO ───────── */
.di-hero {
  position: relative; min-height: 640px; overflow: hidden;
  background: var(--navy-dark);
  display: flex; align-items: center;
}
.di-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(4,26,52,.97) 0%, rgba(4,26,52,.85) 45%, rgba(4,26,52,.55) 100%),
    url('https://images.unsplash.com/photo-1585036156171-384164a8c675?w=1920&q=85') center/cover no-repeat;
}
.di-hero-pattern { position: absolute; inset: 0; opacity: .05; background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 20px); }
.di-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; padding: 80px 0; max-width: 1280px; margin: auto; }
body.urdu .di-hero-inner { direction: rtl; }
.di-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(199,154,59,.12); border: 1px solid rgba(199,154,59,.3);
  border-radius: 100px; padding: 6px 16px; color: var(--gold-light);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px;
}
.di-hero-tagline { color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: 1px; margin-bottom: 14px; }
.di-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4.5vw, 56px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.di-hero h1 em { font-style: italic; color: var(--gold-light); }
body.urdu .di-hero h1 { font-size: clamp(28px, 4vw, 44px); }
.di-hero-desc { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.75; max-width: 520px; margin-bottom: 32px; }
.di-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.di-prayer-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(199,154,59,.25); border-radius: var(--radius-lg); overflow: hidden;
}
.di-prayer-head { padding: 18px 22px; border-bottom: 1px solid rgba(199,154,59,.2); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.di-prayer-head span { color: var(--white); font-size: 14px; font-weight: 600; display:flex; align-items:center; gap:8px; }
.di-prayer-head span i { color: var(--gold-light); }
.di-prayer-hijri { font-size: 11px; color: rgba(255,255,255,.5); }
.di-prayer-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 22px; border-bottom: 1px solid rgba(255,255,255,.06); }
.di-prayer-row:last-child { border-bottom: none; }
.di-prayer-row.current { background: rgba(199,154,59,.08); }
.di-prayer-row.current .di-pw-name { color: var(--gold-light); font-weight: 700; }
.di-pw-name { color: var(--white); font-size: 14px; font-weight: 500; }
.di-pw-name-ar { font-size: 11px; color: rgba(255,255,255,.4); direction: rtl; }
.di-pw-time { color: var(--gold-light); font-size: 14px; font-weight: 700; }

/* ───────── QUICK FEATURES ───────── */
.di-features { padding: 56px 0; background: var(--white); }
.di-features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.di-feat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 20px 26px; text-align: center; transition: all .3s; position: relative; overflow: hidden;
}
.di-feat-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform .3s; }
.di-feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.di-feat-card:hover::after { transform: scaleX(1); }
.di-feat-icon {
  width: 58px; height: 58px; border-radius: 14px; margin: 0 auto 16px;
  background: rgba(126,34,61,.08); border: 1px solid rgba(126,34,61,.12);
  display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold);
}
.di-feat-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.di-feat-card p { font-size: 12.5px; color: var(--grey); line-height: 1.6; }

/* ───────── CATEGORIES ───────── */
.di-categories { background: var(--offwhite); }
.di-cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 48px; }
.di-cat-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 26px 16px; text-align: center; cursor: pointer; transition: all .3s;
}
.di-cat-card:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.di-cat-card:hover .di-cat-icon { background: rgba(199,154,59,.15); color: var(--gold-light); }
.di-cat-card:hover h4 { color: var(--white); }
.di-cat-card:hover .di-cat-count { color: rgba(255,255,255,.55); }
.di-cat-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(21,93,95,.08); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all .3s;
}
.di-cat-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; transition: color .3s; }
.di-cat-count { font-size: 12px; color: var(--grey); transition: color .3s; }

/* ───────── FATWA PROCESS ───────── */
.di-process { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 100%); position: relative; overflow: hidden; padding: 80px 0; }
.di-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; position: relative; }
.di-process-steps::before { content:''; position:absolute; top:40px; left:12.5%; right:12.5%; height:1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.di-step-item { text-align: center; padding: 0 16px; position: relative; }
.di-step-num {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(199,154,59,.1); border: 1px solid rgba(199,154,59,.3);
  display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--gold-light);
  position: relative; z-index: 1; transition: all .3s;
}
.di-step-item:hover .di-step-num { background: var(--gold); color: var(--white); border-color: var(--gold); }
.di-step-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.di-step-item p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.di-step-arrow { position: absolute; top: 25px; right: -14px; z-index: 2; color: var(--gold-light); font-size: 15px; opacity: .5; }

/* ───────── ASK FATWA CTA (full form) ───────── */
.di-ask-cta { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--teal) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.di-ask-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; max-width: 1280px; margin: auto; padding: 0 24px; }
.di-ask-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.di-ask-cta p.di-lead { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.75; }
.di-ask-cta-steps { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.di-ask-cta-step { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.82); font-size: 14px; }
.di-ask-cta-step i { color: var(--gold-light); width: 18px; }
.di-ask-cta-card { background: rgba(255,255,255,.08); border: 1px solid rgba(199,154,59,.25); border-radius: var(--radius-lg); padding: 34px 30px; }
.di-ask-cta-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--gold-light); margin-bottom: 20px; }
.di-form-field { margin-bottom: 14px; }
.di-form-field input, .di-form-field select, .di-form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08); color: var(--white); font-size: 14px; outline: none; font-family: inherit; resize: none;
}
.di-form-field input::placeholder, .di-form-field textarea::placeholder { color: rgba(255,255,255,.35); }
.di-form-field input:focus, .di-form-field textarea:focus, .di-form-field select:focus { border-color: var(--gold); }
.di-form-field select option { color: var(--darkgrey); }

/* ───────── LATEST FATWAS ───────── */
.di-fatwas { background: var(--offwhite); }
.di-fatwas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.di-fatwa-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all .3s; }
.di-fatwa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.di-fatwa-top { padding: 22px 22px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.di-fatwa-tag { display: inline-block; background: rgba(21,93,95,.09); color: var(--navy); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; }
.di-fatwa-date { font-size: 12px; color: var(--grey); }
.di-fatwa-body { padding: 14px 22px 22px; }
.di-fatwa-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.di-fatwa-body p { font-size: 13px; color: var(--grey); line-height: 1.65; margin-bottom: 18px; }
.di-fatwa-meta { display: flex; align-items: center; justify-content: space-between; }
.di-mufti-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.di-fatwa-mufti { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--grey); font-weight: 500; }
.di-read-more { color: var(--gold); font-size: 13px; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 5px; }
.di-read-more:hover { gap: 9px; }

/* ───────── ARTICLES ───────── */
.di-articles { background: var(--white); }
.di-articles-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; margin-top: 48px; }
.di-article-card { background: var(--offwhite); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all .3s; }
.di-article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.di-article-thumb { height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); display: flex; align-items: center; justify-content: center; }
.di-article-card.featured .di-article-thumb { height: 254px; }
.di-article-thumb i { font-size: 38px; color: rgba(199,154,59,.5); }
.di-article-body { padding: 20px 20px 22px; }
.di-article-tag { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.di-article-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.di-article-card.featured .di-article-body h3 { font-size: 20px; }
.di-article-body p { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }
.di-article-footer { display: flex; justify-content: space-between; align-items: center; }
.di-article-date { font-size: 12px; color: var(--grey); }

/* ───────── VIDEOS ───────── */
.di-videos { background: var(--offwhite); }
.di-videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.di-video-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all .3s; }
.di-video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.di-video-thumb { height: 172px; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.di-play-btn { width: 54px; height: 54px; border-radius: 50%; background: rgba(199,154,59,.9); display: flex; align-items: center; justify-content: center; color: var(--navy-dark); font-size: 17px; padding-left: 4px; transition: all .2s; }
.di-video-card:hover .di-play-btn { transform: scale(1.12); background: var(--gold); color: var(--white); }
.di-video-body { padding: 16px 18px 20px; }
.di-video-body h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.di-video-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--grey); }
.di-video-dur { background: var(--lightgrey); padding: 2px 8px; border-radius: 4px; font-weight: 600; }

/* ───────── SCHOLARS ───────── */
.di-scholars { background: var(--white); }
.di-scholars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.di-scholar-card { background: var(--offwhite); border-radius: var(--radius-lg); border: 1px solid var(--border); text-align: center; padding: 32px 20px 26px; transition: all .3s; position: relative; overflow: hidden; }
.di-scholar-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--navy), var(--gold)); transform: scaleX(0); transition: transform .3s; }
.di-scholar-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.di-scholar-card:hover::before { transform: scaleX(1); }
.di-scholar-photo {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--white); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--gold);
}
.di-scholar-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.di-scholar-role { color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.di-scholar-spec { font-size: 12px; color: var(--grey); line-height: 1.5; margin-bottom: 16px; }
.di-scholar-card a { color: var(--gold); font-size: 13px; font-weight: 600; text-decoration: none; }

/* ───────── STATS (with counters) ───────── */
.di-stats { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); position: relative; overflow: hidden; padding: 72px 0; }
.di-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(199,154,59,.15); border-radius: var(--radius-lg); overflow: hidden; }
.di-stat-item { padding: 40px 20px; text-align: center; border-right: 1px solid rgba(199,154,59,.12); }
.di-stat-item:last-child { border-right: none; }
.di-stat-icon { font-size: 26px; color: var(--gold-light); margin-bottom: 12px; opacity: .8; }
.di-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 6px; }
.di-stat-num span { color: var(--gold-light); }
.di-stat-label { font-size: 12.5px; color: rgba(255,255,255,.6); font-weight: 500; }

/* ───────── TESTIMONIALS ───────── */
.di-testimonials { background: var(--offwhite); }
.di-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.di-testi-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 32px 28px; transition: all .3s; position: relative; }
.di-testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.di-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 70px; line-height: .5; color: var(--gold); opacity: .3; margin-bottom: 10px; }
.di-testi-text { font-size: 14.5px; color: var(--darkgrey); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.di-testi-author { display: flex; align-items: center; gap: 12px; }
.di-testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.di-testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.di-testi-loc { font-size: 12px; color: var(--grey); }
.di-stars { color: var(--gold); font-size: 12px; margin-bottom: 4px; }

/* ───────── FAQ ───────── */
.di-faq { background: var(--white); }
.di-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.di-faq-item { background: var(--offwhite); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.di-faq-q { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; }
.di-faq-q span { font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.di-faq-toggle { width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; transition: all .3s; }
.di-faq-item.open .di-faq-toggle { background: var(--gold); transform: rotate(45deg); }
.di-faq-a { display: none; padding: 0 22px 20px; font-size: 13.5px; color: var(--grey); line-height: 1.7; }
.di-faq-item.open .di-faq-a { display: block; }

/* ───────── CALENDAR, PRAYER TIMES, NEWSLETTER ───────── */
.di-cal-prayer { background: var(--lightgrey); }
.di-cp-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; align-items: start; margin-top: 48px; }
.di-cal-box, .di-pt-box, .di-nl-box { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
.di-box-head { background: var(--navy); padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; }
.di-box-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 9px; }
.di-box-head h3 i { color: var(--gold-light); }
.di-box-head-meta { font-size: 11.5px; color: rgba(255,255,255,.6); }

.di-cal-wrap { padding: 18px 20px; }
.di-cal-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.di-cal-nav span { font-weight: 700; color: var(--navy); font-size: 14px; }
.di-cal-nav button { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--border); background: none; cursor: pointer; color: var(--navy); font-size: 14px; transition: all .2s; }
.di-cal-nav button:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.di-cal-dh { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 6px; }
.di-cal-dh span { text-align: center; font-size: 11px; font-weight: 600; color: var(--grey); padding: 4px 0; }
.di-cal-days-g { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.di-cd { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 7px; cursor: pointer; font-size: 13px; color: var(--darkgrey); transition: all .2s; }
.di-cd:hover { background: var(--offwhite); }
.di-cd.today { background: var(--gold); color: var(--white); font-weight: 700; }
.di-cd.empty { pointer-events: none; }
.di-cd .di-hj { font-size: 8.5px; color: var(--grey); }
.di-cd.today .di-hj { color: rgba(255,255,255,.75); }

.di-pt-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-bottom: 1px solid var(--border); }
.di-pt-row:last-child { border-bottom: none; }
.di-pt-row.cur { background: rgba(21,93,95,.06); }
.di-pt-row.cur .di-pt-nm { color: var(--gold); font-weight: 700; }
.di-pt-row.cur .di-pt-time { color: var(--gold); }
.di-pt-nm { font-size: 13.5px; font-weight: 500; color: var(--navy); }
.di-pt-nm-ar { font-size: 11px; color: var(--grey); direction: rtl; }
.di-pt-time { font-size: 14px; font-weight: 700; color: var(--gold); }

.di-nl-body { padding: 26px 22px; }
.di-nl-body p { font-size: 13.5px; color: var(--grey); line-height: 1.65; margin-bottom: 18px; }
.di-nl-input { display: flex; flex-direction: column; gap: 10px; }
.di-nl-input input { padding: 12px 14px; border-radius: 8px; border: 1px solid var(--border); font-size: 13.5px; outline: none; background: var(--offwhite); }
.di-nl-input input:focus { border-color: var(--gold); }

/* ───────── SCROLL-REVEAL DELAY HELPERS ───────── */
.di-delay-1 { transition-delay: .1s; }
.di-delay-2 { transition-delay: .2s; }
.di-delay-3 { transition-delay: .3s; }
.di-delay-4 { transition-delay: .4s; }

/* ───────── OUTLINE-MAROON BUTTON (light bg variant) ───────── */
.btn-outline-maroon {
  background: transparent; color: var(--gold); border: 1.5px solid var(--gold);
  text-decoration: none; padding: 13px 26px; border-radius: 7px; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.btn-outline-maroon:hover { background: var(--gold); color: var(--white); }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1100px) {
  .di-cat-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .di-hero-inner { grid-template-columns: 1fr; }
  .di-prayer-card { display: none; }
  .di-features-grid { grid-template-columns: repeat(2,1fr); }
  .di-cat-grid { grid-template-columns: repeat(2,1fr); }
  .di-process-steps { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .di-process-steps::before { display: none; }
  .di-fatwas-grid, .di-testi-grid, .di-videos-grid { grid-template-columns: 1fr; }
  .di-articles-grid { grid-template-columns: 1fr; }
  .di-scholars-grid { grid-template-columns: repeat(2,1fr); }
  .di-stats-grid { grid-template-columns: repeat(3,1fr); }
  .di-cp-grid { grid-template-columns: 1fr; }
  .di-faq-grid { grid-template-columns: 1fr; }
  .di-ask-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .di-features-grid { grid-template-columns: 1fr; }
  .di-cat-grid, .di-scholars-grid { grid-template-columns: repeat(2,1fr); }
  .di-stats-grid { grid-template-columns: repeat(2,1fr); }
}
