/*
Theme Name: Tahsenk New
Theme URI: https://tahsenk.com
Author: Tahsenk
Author URI: https://tahsenk.com
Description: Updated RTL WordPress theme for Tahsenk with redesigned single article pages and editable hero, about, services, books, articles, and contact sections.
Version: 1.0.6
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: tahsenk
*/

:root {
  --primary-50: #ecfdf5;
  --primary-800: #065f46;
  --primary-900: #064e3b;
  --primary-950: #022c22;
  --gold-300: #fcd34d;
  --gold-400: #d4a853;
  --gold-500: #b8860b;
  --sand: #f5f0e8;
  --sand-light: #faf7f2;
  --ink: #1a1a2e;
  --muted: #667085;
  --container: 1180px;
  --header-bg: rgba(0,0,0,.4);
  --header-scrolled-bg: rgba(2,44,34,.95);
  --header-height: 96px;
  --hero-overlay-start: rgba(2,44,34,.92);
  --hero-overlay-mid: rgba(6,78,59,.85);
  --hero-overlay-end: rgba(10,22,40,.88);
  --about-bg: #ffffff;
  --services-bg-start: #022c22;
  --services-bg-end: #0a1628;
  --quran-bg: #f5f0e8;
  --articles-bg: #ffffff;
  --books-bg: #f5f0e8;
  --contact-bg: #f0e6d4;
  --footer-bg: #022c22;
  --body-font-size: 16px;
  --menu-font-size: 14px;
  --brand-title-size: 22px;
  --brand-subtitle-size: 11px;
  --logo-width: 42px;
  --logo-height: 42px;
  --logo-scrolled-width: 42px;
  --logo-scrolled-height: 42px;
  --logo-radius: 999px;
  --hero-title-size: 78px;
  --section-title-size: 46px;
  --card-title-size: 18px;
  --card-text-size: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  direction: rtl;
  font-family: "Tajawal", sans-serif;
  background: #fff;
  color: var(--ink);
  font-size: var(--body-font-size);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary-950); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-400), var(--gold-500)); border-radius: 3px; }

.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.section-pad { padding: 88px 0; }
.separator { height: 1px; background: linear-gradient(to left, transparent, rgba(212,168,83,.32), transparent); }
.no-posts { text-align: center; color: var(--muted); grid-column: 1 / -1; }

@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-down { from { opacity: 0; transform: translateY(-22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: translateY(0); } 50% { opacity: .4; transform: translateY(4px); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.float { animation: float-y 3s ease-in-out infinite; }
.text-shimmer {
  background: linear-gradient(90deg, #c9a96e 0%, #f5e6c8 25%, #c9a96e 50%, #f5e6c8 75%, #c9a96e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  background: linear-gradient(to bottom, var(--header-bg), transparent);
}
.site-header.is-scrolled { background: var(--header-scrolled-bg); backdrop-filter: blur(14px); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.site-header.no-scroll-effects,
.site-header.no-scroll-effects.is-scrolled { background: linear-gradient(to bottom, var(--header-bg), transparent); box-shadow: none; backdrop-filter: none; transition: none; }
.header-line, .footer-line { height: 2px; background: linear-gradient(to left, transparent, rgba(252,211,77,.5), transparent); }
.nav-wrap { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 8px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; min-width: 0; }
.brand-mark { width: var(--logo-width); height: var(--logo-height); flex: 0 0 var(--logo-width); border-radius: var(--logo-radius); display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 8px 22px rgba(0,0,0,.2); color: var(--primary-950); overflow: hidden; transition: width .25s ease, height .25s ease, flex-basis .25s ease; }
.brand-mark img { width: max(1px, calc(var(--logo-width) - 8px)); height: max(1px, calc(var(--logo-height) - 8px)); object-fit: contain; border-radius: max(0px, calc(var(--logo-radius) - 4px)); }
.brand-mark-plain { background: transparent; box-shadow: none; border-radius: 0; overflow: visible; }
.brand-mark-plain img { width: var(--logo-width); height: var(--logo-height); object-fit: contain; border-radius: 0; }
.site-header .brand,
.site-header .brand-mark-plain img { margin-top: 0 !important; margin-block-start: 0 !important; }
.brand-logo-scrolled { display: none; }
.site-header.is-scrolled .brand-mark { width: var(--logo-scrolled-width); height: var(--logo-scrolled-height); flex-basis: var(--logo-scrolled-width); }
.site-header.is-scrolled .brand-mark img { width: max(1px, calc(var(--logo-scrolled-width) - 8px)); height: max(1px, calc(var(--logo-scrolled-height) - 8px)); }
.site-header.is-scrolled .brand-mark-plain img { width: var(--logo-scrolled-width); height: var(--logo-scrolled-height); }
.site-header.is-scrolled .has-scrolled-logo .brand-logo-default { display: none; }
.site-header.is-scrolled .has-scrolled-logo .brand-logo-scrolled { display: block; }
.site-header.no-scroll-effects .has-scrolled-logo .brand-logo-default { display: block; }
.site-header.no-scroll-effects .has-scrolled-logo .brand-logo-scrolled { display: none; }
.brand-text { min-width: 0; }
.brand-title { display: block; font-family: "Reem Kufi", sans-serif; font-size: var(--brand-title-size); font-weight: 700; line-height: 1; }
.brand-subtitle { display: block; color: rgba(252,211,77,.85); font-size: var(--brand-subtitle-size); line-height: 1.2; margin-top: 4px; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { display: block; padding: 10px 13px; color: rgba(255,255,255,.72); border-radius: 8px; font-size: var(--menu-font-size); transition: .2s ease; }
.nav-menu a:hover { color: var(--gold-300); background: rgba(255,255,255,.06); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 10px; color: #fff; background: rgba(255,255,255,.08); align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle svg:last-child { display: none; }
.menu-toggle.is-open svg:first-child { display: none; }
.menu-toggle.is-open svg:last-child { display: block; }

.hero { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; text-align: center; color: #fff; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, var(--hero-overlay-start) 0%, var(--hero-overlay-mid) 42%, var(--hero-overlay-end) 100%); }
.pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .06; pointer-events: none; }
.decor-star { position: absolute; opacity: .12; color: #c9a96e; }
.decor-star.one { top: 90px; right: 8%; animation-delay: 0s; }
.decor-star.two { top: 180px; left: 12%; animation-delay: 1s; }
.decor-star.three { bottom: 140px; right: 26%; animation-delay: 2s; }
.decor-star.four { bottom: 90px; left: 8%; animation-delay: .5s; }
.hero-content { position: relative; z-index: 2; width: min(920px, calc(100% - 32px)); margin-inline: auto; padding-top: 96px; }
.bismillah { font-family: "Amiri", serif; font-size: clamp(34px, 5vw, 48px); margin-bottom: 18px; animation: fade-down .8s ease both .2s; }
.ornament { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 14px 0; }
.ornament:before, .ornament:after { content: ""; width: 66px; height: 1px; background: linear-gradient(to left, var(--gold-400), transparent); }
.ornament:after { background: linear-gradient(to right, var(--gold-400), transparent); }
.ornament svg { color: var(--gold-400); fill: currentColor; }
.hero h1 { margin: 20px 0 10px; font-family: "Reem Kufi", sans-serif; font-size: clamp(40px, 8vw, var(--hero-title-size)); line-height: 1.15; font-weight: 900; animation: fade-up .8s ease both .5s; }
.hero-subtitle { margin: 0 0 12px; font-family: "Amiri", serif; font-size: clamp(22px, 4vw, 34px); color: #d4a574; animation: fade-up .8s ease both .7s; }
.hero-desc { margin: 0 auto 34px; max-width: 760px; color: rgba(255,255,255,.62); font-size: clamp(16px, 2vw, 20px); animation: fade-up .8s ease both .9s; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; animation: fade-up .8s ease both 1.1s; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 13px 26px; border-radius: 12px; border: 0; cursor: pointer; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 50%, #c9a96e 100%); background-size: 200% auto; color: #0a1628; }
.btn-gold:hover { background-position: right center; box-shadow: 0 10px 30px rgba(201,169,110,.35); }
.btn-outline { border: 2px solid rgba(201,169,110,.55); color: #c9a96e; background: transparent; }
.btn-outline:hover { background: rgba(201,169,110,.1); border-color: #c9a96e; }
.verse-card { margin: 56px auto 0; max-width: 680px; padding: 26px; border-radius: 22px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); animation: fade-up .8s ease both 1.3s; }
.verse-card p:first-child { margin: 0; font-family: "Amiri", serif; font-size: clamp(19px, 3vw, 28px); line-height: 2; color: rgba(255,255,255,.9); }
.verse-card p:last-child { margin: 10px 0 0; color: #d4a574; font-size: 14px; }
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 30px; height: 46px; border: 2px solid rgba(255,255,255,.3); border-radius: 999px; padding-top: 8px; display: flex; justify-content: center; }
.scroll-indicator span { width: 6px; height: 12px; border-radius: 999px; background: var(--gold-400); animation: pulse-dot 1.5s ease infinite; }

.section-title { text-align: center; margin-bottom: 52px; }
.section-label { display: inline-block; padding: 4px 16px; margin-bottom: 10px; border-radius: 999px; background: rgba(6,78,59,.08); color: var(--primary-800); font-size: 14px; }
.section-title h2 { margin: 0 0 4px; font-family: "Reem Kufi", sans-serif; color: var(--primary-900); font-size: clamp(32px, 5vw, var(--section-title-size)); line-height: 1.2; }
.section-title p { margin: 8px auto 0; max-width: 650px; color: var(--muted); font-size: 18px; }
.section-title.light .section-label { background: rgba(212,168,83,.1); color: var(--gold-300); border: 1px solid rgba(212,168,83,.15); }
.section-title.light h2 { color: #fff; }
.section-title.light p { color: rgba(255,255,255,.58); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 56px; }
.image-frame { position: relative; max-width: 520px; margin-inline: auto; }
.image-frame img { width: 100%; height: 380px; object-fit: cover; border-radius: 18px; box-shadow: 0 20px 45px rgba(0,0,0,.16); }
.image-frame:before, .image-frame:after { content: ""; position: absolute; width: 58px; height: 58px; pointer-events: none; }
.image-frame:before { top: -12px; right: -12px; border-top: 2px solid rgba(212,168,83,.45); border-right: 2px solid rgba(212,168,83,.45); border-radius: 0 14px 0 0; }
.image-frame:after { bottom: -12px; left: -12px; border-bottom: 2px solid rgba(212,168,83,.45); border-left: 2px solid rgba(212,168,83,.45); border-radius: 0 0 0 14px; }
.image-caption { position: absolute; inset: auto 20px 20px; color: #fff; z-index: 1; }
.image-caption p { margin: 0; font-family: "Amiri", serif; font-size: 18px; }
.image-frame .shade { position: absolute; inset: 0; border-radius: 18px; background: linear-gradient(to top, rgba(2,44,34,.75), transparent 62%); }
.about-copy h3 { margin: 0 0 18px; font-family: "Reem Kufi", sans-serif; color: var(--primary-900); font-size: 32px; }
.about-copy p { margin: 0 0 10px; color: #5b6472; font-size: 16px; }
.about-copy strong { color: var(--gold-500); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { text-align: center; padding: 22px 16px; background: var(--sand-light); border: 1px solid rgba(212,168,83,.12); border-radius: 18px; }
.icon-box { width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 14px; display: grid; place-items: center; color: var(--gold-400); background: linear-gradient(135deg, var(--primary-800), var(--primary-950)); }
.stat-value { margin: 0; font-family: "Reem Kufi", sans-serif; color: var(--primary-900); font-size: 30px; line-height: 1.2; }
.stat-label { margin: 0; color: #8a94a3; font-size: 14px; }

.about-section { background: var(--about-bg); }
.services { position: relative; overflow: hidden; padding: 76px 0 84px; background: radial-gradient(circle at 50% 8%, rgba(21,103,79,.62), transparent 30%), radial-gradient(circle at 12% 18%, rgba(212,168,83,.1), transparent 24%), linear-gradient(180deg, #063f31 0%, #042d24 52%, #022c22 100%); }
.services:before, .services:after { content: ""; position: absolute; pointer-events: none; opacity: .16; }
.services:before { width: 260px; height: 260px; top: -96px; right: -84px; border: 1px solid rgba(212,168,83,.38); border-radius: 50%; box-shadow: inset 0 0 0 28px rgba(212,168,83,.04); }
.services:after { width: 190px; height: 190px; bottom: -74px; left: -54px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,83,.2), transparent 62%); }
.services .pattern { opacity: .045; }
.services .container { position: relative; z-index: 1; }
.services .section-title { margin-bottom: 34px; }
.services .section-title .ornament { margin: 8px 0; gap: 18px; }
.services .section-title .ornament:before, .services .section-title .ornament:after { width: 112px; background: linear-gradient(to left, transparent, rgba(212,168,83,.72), transparent); }
.services .section-title h2 { margin: 0; color: #fff; font-size: clamp(44px, 5.8vw, 66px); line-height: 1.05; text-shadow: 0 4px 18px rgba(0,0,0,.32); }
.services .section-title p { margin-top: 14px; color: rgba(255,255,255,.64); font-size: clamp(16px, 2vw, 20px); font-weight: 700; }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.service-card { position: relative; min-height: 210px; padding: 30px 26px 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; border-radius: 22px; background: linear-gradient(160deg, rgba(27,96,76,.74), rgba(5,63,50,.54)); border: 1px solid rgba(212,168,83,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), inset 0 0 38px rgba(212,168,83,.05), 0 16px 34px rgba(0,0,0,.16); backdrop-filter: blur(12px); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(212,168,83,.42); background: linear-gradient(160deg, rgba(35,113,89,.82), rgba(6,72,57,.62)); box-shadow: inset 0 0 42px rgba(212,168,83,.09), 0 22px 46px rgba(0,0,0,.22); }
.service-card:before { content: ""; position: absolute; inset: 1px; border-radius: 21px; border: 1px solid rgba(255,255,255,.035); pointer-events: none; }
.service-card .icon-box { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; color: #d4a853; background: radial-gradient(circle, rgba(212,168,83,.14), rgba(2,44,34,.32)); border: 2px solid rgba(212,168,83,.28); box-shadow: 0 0 0 8px rgba(212,168,83,.04), inset 0 0 18px rgba(212,168,83,.08); }
.service-card .icon-box svg { width: 34px; height: 34px; stroke-width: 1.8; }
.service-card h3 { margin: 0 0 10px; color: #e4c476; font-family: "Reem Kufi", sans-serif; font-size: clamp(22px, 2.2vw, 27px); line-height: 1.25; text-shadow: 0 2px 14px rgba(0,0,0,.18); }
.service-card p { max-width: 280px; margin: 0 auto; color: rgba(255,255,255,.68); font-size: clamp(15px, 1.4vw, 17px); font-weight: 700; line-height: 1.95; }

.quran-band { background: var(--quran-bg); }
.quran-card { position: relative; max-width: 780px; margin-inline: auto; padding: 48px 54px; text-align: center; color: #fff; border-radius: 26px; background: linear-gradient(135deg, var(--primary-900), var(--primary-950)); box-shadow: 0 22px 50px rgba(0,0,0,.18); }
.quran-card:before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(212,168,83,.24); border-radius: 20px; pointer-events: none; }
.quran-card .moon { color: rgba(252,211,77,.72); margin-inline: auto; }
.quran-card .verse { margin: 14px 0; font-family: "Amiri", serif; font-size: clamp(22px, 4vw, 34px); line-height: 2.15; }
.quran-card .source { margin: 0; color: rgba(252,211,77,.75); }

.articles-section { background: var(--articles-bg); }
.articles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.article-card { overflow: hidden; display: flex; flex-direction: column; min-height: 520px; border: 1px solid #eef0f3; border-radius: 18px; background: #fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.article-card:hover { transform: translateY(-5px); border-color: rgba(212,168,83,.35); box-shadow: 0 20px 45px rgba(0,0,0,.08); }
.article-media { position: relative; display: block; flex: 0 0 210px; height: 210px; overflow: hidden; background: #eef2f1; }
.article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.article-card:hover img { transform: scale(1.05); }
.article-media:after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.22), transparent 58%); pointer-events: none; }
.badge { position: absolute; top: 14px; right: 14px; z-index: 1; padding: 6px 16px; border-radius: 999px; background: rgba(201,169,110,.94); color: #0a1628; font-size: 13px; font-weight: 800; box-shadow: 0 8px 18px rgba(0,0,0,.12); }
.article-body { position: relative; z-index: 2; display: flex; flex: 1 1 auto; flex-direction: column; padding: 22px 26px 24px; text-align: right; background: #fff; }
.meta { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 18px; margin-bottom: 16px; color: #98a2b3; font-size: 13px; }
.meta span { display: inline-flex; align-items: center; gap: 5px; direction: rtl; }
.article-body h3 { margin: 0 0 12px; color: #1f2937; font-size: calc(var(--card-title-size) + 2px); line-height: 1.65; font-weight: 900; }
.article-body h3 a { color: inherit; }
.article-body p { margin: 0 0 18px; color: #667085; font-size: calc(var(--card-text-size) + 1px); line-height: 1.9; }
.read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; color: var(--primary-800); font-weight: 800; font-size: 15px; }
.read-more:hover { color: var(--gold-500); }

.books { background: var(--books-bg); }
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 850px; margin-inline: auto; }
.book-card { padding: 28px 22px; text-align: center; border-radius: 18px; background: #fff; border: 1px solid rgba(212,168,83,.12); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.book-card:hover { transform: translateY(-5px); border-color: rgba(212,168,83,.32); box-shadow: 0 18px 35px rgba(0,0,0,.07); }
.book-cover { position: relative; width: 84px; height: 118px; margin: 0 auto 16px; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary-800), var(--primary-950)); box-shadow: 0 12px 28px rgba(0,0,0,.18); color: var(--gold-400); overflow: hidden; }
.book-cover:after { content: ""; position: absolute; inset: 0 auto 0 0; width: 8px; background: rgba(212,168,83,.25); }
.book-cover-image:after { content: none; }
.book-cover-image img { width: 100%; height: 100%; object-fit: cover; }
.book-card h3 { margin: 0 0 8px; font-family: "Reem Kufi", sans-serif; color: var(--primary-900); font-size: var(--card-title-size); }
.book-card p { margin: 0 0 16px; color: #778293; font-size: var(--card-text-size); }
.small-gold { min-height: 34px; padding: 7px 16px; border-radius: 7px; background: linear-gradient(to left, var(--gold-400), var(--gold-500)); color: var(--primary-950); font-size: 12px; font-weight: 900; }

.contact { position: relative; overflow: hidden; background: var(--contact-bg); }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 26px; align-items: stretch; }
.contact-panel { position: relative; overflow: hidden; padding: 30px; border-radius: 20px; color: #fff; background: linear-gradient(160deg, #073d29, #0b5d3e 50%, #073d29); box-shadow: 0 16px 42px rgba(7,61,41,.24); }
.contact-panel h3 { margin: 0; font-size: 20px; }
.contact-panel .hint { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; }
.panel-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.contact-list { display: grid; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item .mini-icon, .panel-head .mini-icon { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: var(--gold-300); }
.contact-item h4 { margin: 0 0 4px; font-size: 14px; }
.contact-item p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.social { display: flex; gap: 10px; padding-top: 22px; margin-top: 26px; border-top: 1px solid rgba(255,255,255,.08); }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.06); transition: background .2s ease; }
.social a:hover { background: rgba(212,168,83,.2); }
.contact-form { padding: 30px; border-radius: 20px; background: #fff; border: 1px solid rgba(212,175,55,.12); box-shadow: 0 8px 30px rgba(0,0,0,.05); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: #344054; font-size: 14px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1.5px solid #e4e7ec; border-radius: 12px; color: #1f2937; background: #fff; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-400); box-shadow: 0 0 0 4px rgba(212,168,83,.15); }
.field textarea { min-height: 130px; resize: vertical; }
.submit-message { display: none; margin: 12px 0 0; padding: 11px 14px; border-radius: 10px; background: #ecfdf5; color: #047857; font-weight: 700; }

.site-footer { background: var(--footer-bg); color: #fff; }
.site-footer .footer-brand-mark { width: var(--footer-logo-width); height: var(--footer-logo-height); flex-basis: var(--footer-logo-width); }
.site-footer .footer-brand-mark img { width: max(1px, calc(var(--footer-logo-width) - 8px)); height: max(1px, calc(var(--footer-logo-height) - 8px)); object-fit: contain; }
.site-footer .footer-brand-mark.brand-mark-plain img { width: var(--footer-logo-width); height: var(--footer-logo-height); }
.footer-content { padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-grid h4 { margin: 0 0 16px; color: rgba(255,255,255,.85); }
.footer-grid p { margin: 0; color: rgba(255,255,255,.5); font-size: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-grid a { color: rgba(255,255,255,.52); font-size: 14px; transition: color .2s ease; }
.footer-grid a:hover { color: var(--gold-400); }
.copyright { display: flex; justify-content: space-between; gap: 16px; padding-top: 22px; border-top: 1px solid rgba(212,168,83,.22); color: rgba(255,255,255,.42); font-size: 14px; }
.back-to-top { position: fixed; bottom: 22px; left: 22px; z-index: 45; width: 42px; height: 42px; border: 0; border-radius: 50%; display: grid; place-items: center; color: var(--primary-950); background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); box-shadow: 0 10px 26px rgba(0,0,0,.22); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: .25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.content-page { padding: 132px 0 80px; background: var(--sand-light); min-height: 70vh; }
.content-wrap { display: grid; gap: 24px; max-width: 900px; }
.archive-page .content-wrap { max-width: var(--container); }
.single-wrap { max-width: 860px; }
.content-card { padding: 28px; border-radius: 18px; background: #fff; border: 1px solid rgba(212,168,83,.12); box-shadow: 0 10px 32px rgba(0,0,0,.05); }
.content-card h1 { margin: 0 0 12px; color: var(--primary-900); font-family: "Reem Kufi", sans-serif; font-size: clamp(30px, 5vw, 44px); line-height: 1.25; }
.content-card h2 { color: var(--primary-900); font-family: "Reem Kufi", sans-serif; }
.content-thumb { display: block; overflow: hidden; margin: -28px -28px 22px; border-radius: 18px 18px 0 0; background: #eef2f1; }
.content-thumb img { width: 100%; max-height: 420px; object-fit: cover; }
.entry-content, .entry-summary { color: #475467; font-size: 17px; }
.entry-content h2, .entry-content h3 { color: var(--primary-900); font-family: "Reem Kufi", sans-serif; }
.entry-content a { color: var(--gold-500); font-weight: 800; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; color: #8a94a3; font-size: 13px; }
.breadcrumbs a { color: var(--primary-800); font-weight: 800; }
.breadcrumbs a:after { content: "/"; margin-inline-start: 8px; color: #c4c8cf; font-weight: 400; }
.archive-header p { margin: 0; color: var(--muted); }
.archive-filter { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: end; }
.archive-filter label { display: grid; gap: 6px; color: #344054; font-weight: 800; font-size: 13px; }
.archive-filter input, .archive-filter select { min-height: 44px; width: 100%; padding: 9px 12px; border: 1.5px solid #e4e7ec; border-radius: 10px; background: #fff; color: #1f2937; outline: 0; }
.archive-filter input:focus, .archive-filter select:focus { border-color: var(--gold-400); box-shadow: 0 0 0 4px rgba(212,168,83,.15); }
.archive-filter .check-row { display: flex; align-items: center; gap: 8px; min-height: 44px; }
.archive-filter .check-row input { width: auto; min-height: auto; }
.archive-grid { max-width: none; }
.pagination-wrap { display: flex; justify-content: center; }
.book-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.small-gold.ghost { background: #f6f0e6; color: var(--primary-900); }
.book-single-grid { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; margin-bottom: 28px; }
.single-book-cover { overflow: hidden; border-radius: 14px; background: var(--primary-950); box-shadow: 0 16px 34px rgba(0,0,0,.16); }
.single-book-cover img { width: 100%; height: auto; }
.single-book-cover.placeholder { min-height: 340px; display: grid; place-items: center; color: var(--gold-400); }
.book-meta-list { display: grid; gap: 6px; margin: 14px 0 22px; color: #5b6472; }
.book-meta-list p { margin: 0; }
.book-meta-list strong { color: var(--gold-500); }
.single-actions { justify-content: flex-start; }
.btn-outline.dark { color: var(--primary-900); border-color: rgba(6,78,59,.24); }
.related-section { display: grid; gap: 20px; }
.related-section h2 { margin: 0; color: var(--primary-900); font-family: "Reem Kufi", sans-serif; text-align: center; }
.site-sidebar ul { margin: 0; padding-inline-start: 18px; }
.not-found-card form { margin: 20px 0; }
.not-found-card input[type="search"] { width: min(100%, 520px); min-height: 46px; padding: 10px 14px; border: 1.5px solid #e4e7ec; border-radius: 10px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers { min-width: 36px; min-height: 36px; display: grid; place-items: center; padding: 6px 10px; border-radius: 8px; background: #fff; color: var(--primary-900); border: 1px solid rgba(212,168,83,.18); }
.page-numbers.current { background: var(--primary-900); color: #fff; }

body.single-post .site-header,
body.single-book .site-header,
body.page:not(.home) .site-header,
body.archive .site-header,
body.search .site-header,
body.error404 .site-header {
  background:
    radial-gradient(circle at 18% 30%, rgba(212,168,83,.16), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(135deg, rgba(2,44,34,.98), rgba(6,78,59,.97) 48%, rgba(2,35,29,.98));
  box-shadow: 0 10px 30px rgba(2,44,34,.18);
  backdrop-filter: blur(16px);
}
body.single-post .site-header:before,
body.single-book .site-header:before,
body.page:not(.home) .site-header:before,
body.archive .site-header:before,
body.search .site-header:before,
body.error404 .site-header:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(212,168,83,.32) 48%, transparent 50%),
    linear-gradient(-45deg, transparent 47%, rgba(212,168,83,.24) 48%, transparent 50%);
  background-size: 42px 42px;
}
body.single-post .site-header.is-scrolled,
body.single-book .site-header.is-scrolled,
body.page:not(.home) .site-header.is-scrolled,
body.archive .site-header.is-scrolled,
body.search .site-header.is-scrolled,
body.error404 .site-header.is-scrolled,
body.single-post .site-header.no-scroll-effects,
body.single-book .site-header.no-scroll-effects,
body.page:not(.home) .site-header.no-scroll-effects,
body.archive .site-header.no-scroll-effects,
body.search .site-header.no-scroll-effects,
body.error404 .site-header.no-scroll-effects {
  background:
    radial-gradient(circle at 18% 30%, rgba(212,168,83,.16), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(135deg, rgba(2,44,34,.98), rgba(6,78,59,.97) 48%, rgba(2,35,29,.98));
}
body.single-post .site-header .nav-wrap,
body.single-book .site-header .nav-wrap,
body.page:not(.home) .site-header .nav-wrap,
body.archive .site-header .nav-wrap,
body.search .site-header .nav-wrap,
body.error404 .site-header .nav-wrap {
  position: relative;
  z-index: 1;
}
body.single-post .site-header .brand,
body.single-book .site-header .brand,
body.page:not(.home) .site-header .brand,
body.archive .site-header .brand,
body.search .site-header .brand,
body.error404 .site-header .brand,
body.single-post .site-header .nav-menu a,
body.single-book .site-header .nav-menu a,
body.page:not(.home) .site-header .nav-menu a,
body.archive .site-header .nav-menu a,
body.search .site-header .nav-menu a,
body.error404 .site-header .nav-menu a {
  color: rgba(255,255,255,.9);
}
body.single-post .site-header .brand-subtitle,
body.single-book .site-header .brand-subtitle,
body.page:not(.home) .site-header .brand-subtitle,
body.archive .site-header .brand-subtitle,
body.search .site-header .brand-subtitle,
body.error404 .site-header .brand-subtitle,
body.single-post .site-header .nav-menu a:hover,
body.single-book .site-header .nav-menu a:hover,
body.page:not(.home) .site-header .nav-menu a:hover,
body.archive .site-header .nav-menu a:hover,
body.search .site-header .nav-menu a:hover,
body.error404 .site-header .nav-menu a:hover,
body.single-post .site-header .current-menu-item > a,
body.single-book .site-header .current-menu-item > a,
body.page:not(.home) .site-header .current-menu-item > a,
body.archive .site-header .current-menu-item > a,
body.search .site-header .current-menu-item > a,
body.error404 .site-header .current-menu-item > a {
  color: var(--gold-300);
}
body.single-post .site-header .menu-toggle,
body.single-book .site-header .menu-toggle,
body.page:not(.home) .site-header .menu-toggle,
body.archive .site-header .menu-toggle,
body.search .site-header .menu-toggle,
body.error404 .site-header .menu-toggle {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.single-article-page {
  background: #fbfaf8;
  min-height: 70vh;
}
.single-article-hero {
  position: relative;
  min-height: 430px;
  padding: 144px 0 76px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 6%, rgba(33,115,91,.72), transparent 34%),
    linear-gradient(135deg, #032d24 0%, #064d3e 48%, #02231d 100%);
  border-bottom: 3px solid rgba(212,168,83,.84);
  box-shadow: inset 0 -28px 80px rgba(0,0,0,.18);
}
.single-article-hero:before,
.single-article-hero:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: .5;
}
.single-article-hero:before {
  right: -34px;
  bottom: -38px;
  border-right: 2px solid rgba(212,168,83,.55);
  border-bottom: 2px solid rgba(212,168,83,.55);
  border-radius: 0 0 0 44px;
}
.single-article-hero:after {
  left: -34px;
  bottom: -38px;
  border-left: 2px solid rgba(212,168,83,.55);
  border-bottom: 2px solid rgba(212,168,83,.55);
  border-radius: 0 0 44px 0;
}
.single-article-hero .pattern {
  opacity: .07;
}
.single-article-hero-inner {
  position: relative;
  z-index: 1;
}
.single-article-hero .breadcrumbs {
  justify-content: center;
  margin-bottom: 30px;
  color: rgba(255,255,255,.72);
}
.single-article-hero .breadcrumbs a {
  color: rgba(255,255,255,.9);
}
.single-article-hero .breadcrumbs a:after {
  color: var(--gold-400);
}
.single-article-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Reem Kufi", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.35;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.single-title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px 0 30px;
  color: var(--gold-400);
}
.single-title-ornament span {
  width: min(160px, 24vw);
  height: 2px;
  background: linear-gradient(to left, transparent, currentColor);
}
.single-title-ornament span:last-child {
  background: linear-gradient(to right, transparent, currentColor);
}
.single-title-ornament svg {
  fill: currentColor;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.2));
}
.single-article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 34px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.single-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.single-article-meta svg {
  color: var(--gold-400);
}
.single-scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transform: translateX(-50%) rotate(180deg);
}
.single-article-body {
  padding: 72px 0 54px;
}
.single-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.single-article-card,
.single-sidebar-card {
  position: relative;
  border: 1px solid rgba(212,168,83,.12);
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 44px rgba(2,44,34,.08);
}
.single-article-card {
  overflow: hidden;
  padding: 42px 46px 0;
  border-radius: 20px;
}
.single-article-thumb {
  overflow: hidden;
  margin: -42px -46px 34px;
  border-bottom: 1px solid rgba(212,168,83,.12);
  background: #eef2f1;
}
.single-article-thumb img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}
.single-article-content {
  color: #2f3d40;
  font-size: 19px;
  line-height: 2.25;
  text-align: center;
}
.single-article-content > *:first-child {
  margin-top: 0;
}
.single-article-content h2,
.single-article-content h3 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 46px auto 20px;
  padding-bottom: 10px;
  color: var(--primary-900);
  font-family: "Reem Kufi", sans-serif;
  line-height: 1.45;
}
.single-article-content h2 {
  font-size: clamp(28px, 3vw, 36px);
}
.single-article-content h3 {
  font-size: clamp(23px, 2.4vw, 29px);
}
.single-article-content h2:after,
.single-article-content h3:after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: var(--gold-400);
  transform: translateX(50%);
}
.single-article-content p {
  margin: 0 0 22px;
}
.single-article-content ul,
.single-article-content ol {
  display: inline-block;
  margin: 0 auto 24px;
  text-align: right;
}
.single-article-content blockquote {
  margin: 34px auto;
  padding: 24px 28px;
  color: var(--primary-900);
  border-inline-start: 4px solid var(--gold-400);
  background: #f7f3ec;
  border-radius: 14px;
}
.single-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 40px -46px 0;
  padding: 22px 46px;
  color: #667085;
  border-top: 1px solid rgba(212,168,83,.14);
  background: linear-gradient(to left, rgba(245,240,232,.68), #fff);
}
.single-share-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-share-icons a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--primary-900);
  font-weight: 900;
  border-radius: 50%;
  background: #f6f0e6;
  transition: background .2s ease, color .2s ease;
}
.single-share-icons a:hover {
  color: #fff;
  background: var(--primary-900);
}
.single-article-sidebar {
  position: sticky;
  top: 100px;
}
.single-sidebar-card {
  padding: 34px 28px;
  border-radius: 22px;
}
.single-sidebar-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--gold-500);
  font-family: "Reem Kufi", sans-serif;
  font-size: 25px;
}
.article-toc {
  counter-reset: toc;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.article-toc a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px;
  color: var(--primary-900);
  border-radius: 14px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.article-toc a:hover {
  background: #edf2ef;
  transform: translateX(-2px);
}
.article-toc span {
  color: var(--gold-500);
  font-size: 14px;
}
.toc-empty {
  margin: 0;
  padding: 16px;
  color: #667085;
  text-align: center;
  background: #f7f3ec;
  border-radius: 14px;
}
.single-sidebar-verse {
  margin: 30px 0 26px;
  padding: 28px 10px 24px;
  text-align: center;
  border-top: 1px solid rgba(212,168,83,.28);
  border-bottom: 1px solid rgba(212,168,83,.18);
}
.single-sidebar-verse > span {
  display: block;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.single-sidebar-verse p {
  margin: 0;
  color: var(--primary-900);
  font-family: "Amiri", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.single-sidebar-verse small {
  display: block;
  margin-top: 8px;
  color: #98a2b3;
}
.single-sidebar-actions {
  display: grid;
  gap: 12px;
}
.single-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  color: var(--primary-900);
  border: 1.5px solid rgba(6,78,59,.55);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.single-action:hover {
  transform: translateY(-1px);
  border-color: var(--primary-900);
}
.single-action.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #056247, #023b2f);
  box-shadow: 0 12px 24px rgba(6,78,59,.18);
}
.single-related-section {
  padding-bottom: 80px;
}

@media (max-width: 980px) {
  body.admin-bar .site-header { top: 0; }
  .nav-menu { position: absolute; top: calc(var(--header-height) + 2px); inset-inline: 0; display: grid; gap: 2px; max-height: 0; overflow: hidden; padding: 0 16px; background: rgba(2,44,34,.98); border-top: 1px solid rgba(212,168,83,.16); transition: max-height .3s ease, padding .3s ease; }
  .nav-menu.is-open { max-height: 360px; padding-block: 10px; }
  .nav-menu a { padding: 10px 16px; }
  .menu-toggle { display: inline-flex; }
  .about-grid, .contact-grid, .book-single-grid { grid-template-columns: 1fr; }
  .service-grid, .articles-grid, .archive-filter { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .single-article-layout { grid-template-columns: 1fr; }
  .single-article-sidebar { position: static; }
  body.single-post .site-header .nav-menu a { color: rgba(255,255,255,.78); }
}

@media (max-width: 680px) {
  .section-pad { padding: 68px 0; }
  .nav-wrap { gap: 10px; max-width: 100%; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand-mark-plain { width: auto; max-width: calc(100vw - 92px); flex-basis: auto; }
  .brand-mark-plain img { width: auto; height: auto; max-width: calc(100vw - 92px); max-height: calc(var(--header-height) - 16px); object-fit: contain; }
  .hero { width: 100%; max-width: 100vw; justify-items: center; padding-inline: 0; }
  .hero-bg, .hero-overlay, .pattern { max-width: 100vw; }
  .hero-content { width: min(920px, calc(100% - 32px)); max-width: calc(100vw - 32px); margin-inline: auto; padding: 86px 0 40px; left: auto; right: auto; transform: none; }
  .bismillah { font-size: clamp(34px, 12vw, 46px); line-height: 1.45; }
  .ornament { max-width: 100%; overflow: hidden; }
  .hero h1 {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.2;
    overflow-wrap: break-word;
    text-wrap: balance;
  }
  .hero-subtitle {
    max-width: 100%;
    font-size: clamp(21px, 7vw, 30px);
    line-height: 1.45;
    overflow-wrap: break-word;
  }
  .hero-desc {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.9;
    overflow-wrap: break-word;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; padding-inline: 18px; }
  .verse-card { width: 100%; margin-top: 42px; padding: 20px 16px; border-radius: 18px; }
  .verse-card p:first-child { font-size: clamp(18px, 5.5vw, 23px); line-height: 2.05; overflow-wrap: break-word; }
  .decor-star { display: none; }
  .stats-grid, .service-grid, .articles-grid, .books-grid, .form-grid, .footer-grid, .archive-filter { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 24px; }
  .image-frame img { height: 320px; }
  .quran-card { padding: 34px 24px; }
  .copyright { flex-direction: column; align-items: center; text-align: center; }
  .single-article-hero { min-height: 390px; padding: 122px 0 64px; }
  .single-article-meta { gap: 12px 18px; font-size: 14px; }
  .single-article-card { padding: 28px 22px 0; border-radius: 16px; }
  .single-article-thumb { margin: -28px -22px 26px; }
  .single-article-content { font-size: 17px; line-height: 2.05; }
  .single-article-footer { align-items: flex-start; flex-direction: column; margin: 32px -22px 0; padding: 18px 22px; }
  .single-sidebar-card { padding: 28px 20px; }
  .article-toc a { grid-template-columns: 30px 1fr; }
}

@media print {
  .site-header,
  .site-footer,
  .back-to-top,
  .single-article-sidebar,
  .single-scroll-cue,
  .single-related-section,
  .single-article-footer {
    display: none !important;
  }
  .single-article-hero {
    min-height: auto;
    padding: 24px 0;
    color: #000;
    background: #fff;
    border: 0;
    box-shadow: none;
  }
  .single-article-hero .pattern,
  .single-title-ornament,
  .single-article-meta {
    display: none;
  }
  .single-article-layout {
    display: block;
  }
  .single-article-card {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .single-article-content {
    color: #000;
    text-align: right;
  }
}
