/* ============================================================
SPORT CINEMA - الستايل الرئيسي
============================================================ */

@import url(‘https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Tajawal:wght@400;700;900&display=swap’);

/* –– Variables –– */
:root {
–primary:       #E8003D;
–primary-dark:  #B0002F;
–primary-glow:  rgba(232,0,61,0.25);
–secondary:     #07070E;
–card:          #0F0F1A;
–surface:       #161622;
–surface2:      #1E1E2E;
–border:        #252535;
–border2:       #1A1A2A;
–text:          #F0F0F8;
–text2:         #B0B0C8;
–muted:         #707090;
–accent:        #FFB800;
–green:         #22C55E;
–blue:          #3B82F6;
–radius:        10px;
–radius-lg:     14px;
–shadow:        0 4px 24px rgba(0,0,0,0.4);
–shadow-hover:  0 8px 40px rgba(232,0,61,0.2);
}

/* –– Reset –– */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { direction:rtl; scroll-behavior:smooth; }
body {
background: var(–secondary);
color: var(–text);
font-family: ‘Cairo’,‘Tajawal’,sans-serif;
font-size: 15px;
line-height: 1.7;
min-height: 100vh;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }

/* ============================================================
HEADER
============================================================ */
.site-header {
background: #05050C;
border-bottom: 3px solid var(–primary);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 30px rgba(232,0,61,0.25);
}
.header-topbar {
background: var(–primary);
padding: 5px 0;
font-size: 12px;
font-weight: 600;
}
.header-topbar-inner {
max-width: 1240px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 15px;
}
.header-topbar a { color:rgba(255,255,255,0.85); transition:color .2s; }
.header-topbar a:hover { color:#fff; }
.header-main-inner {
max-width: 1240px;
margin: 0 auto;
padding: 14px 20px;
display: flex;
align-items: center;
gap: 20px;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
text-decoration: none;
}
.logo-mark {
width: 48px;
height: 48px;
background: var(–primary);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
box-shadow: 0 0 20px var(–primary-glow);
flex-shrink: 0;
}
.logo-text .site-title {
font-size: 22px;
font-weight: 900;
color: var(–text);
line-height: 1;
letter-spacing: -0.5px;
}
.logo-text .site-tagline {
font-size: 11px;
color: var(–muted);
display: block;
margin-top: 2px;
}
.header-search {
flex: 1;
max-width: 420px;
margin-right: auto;
}
.search-form {
display: flex;
background: var(–surface);
border: 1.5px solid var(–border);
border-radius: 25px;
overflow: hidden;
transition: border-color .2s;
}
.search-form:focus-within { border-color: var(–primary); }
.search-form input {
flex: 1;
background: none;
border: none;
padding: 10px 16px;
color: var(–text);
font-family: inherit;
font-size: 14px;
outline: none;
}
.search-form input::placeholder { color: var(–muted); }
.search-form button {
background: var(–primary);
border: none;
padding: 10px 20px;
color: #fff;
cursor: pointer;
font-family: inherit;
font-size: 14px;
transition: background .2s;
font-weight: 600;
}
.search-form button:hover { background: var(–primary-dark); }
.header-actions { display:flex; align-items:center; gap:10px; }

/* ============================================================
NAVBAR
============================================================ */
.navbar {
background: #0A0A14;
border-bottom: 1px solid var(–border2);
}
.navbar-inner {
max-width: 1240px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
overflow-x: auto;
scrollbar-width: none;
}
.navbar-inner::-webkit-scrollbar { display:none; }
.navbar a {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 13px 16px;
font-size: 13.5px;
font-weight: 700;
color: var(–text2);
white-space: nowrap;
border-bottom: 3px solid transparent;
transition: all .2s;
position: relative;
}
.navbar a:hover,
.navbar a.active {
color: var(–text);
border-bottom-color: var(–primary);
}
.navbar a.active { background: rgba(232,0,61,0.05); }

/* ============================================================
BREAKING BAR
============================================================ */
.breaking-bar {
background: var(–surface);
border-bottom: 1px solid var(–border2);
padding: 7px 0;
overflow: hidden;
}
.breaking-inner {
max-width: 1240px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
gap: 12px;
}
.breaking-badge {
background: var(–primary);
color: #fff;
font-size: 11px;
font-weight: 800;
padding: 3px 12px;
border-radius: 4px;
flex-shrink: 0;
letter-spacing: .5px;
}
.breaking-ticker { flex:1; overflow:hidden; }
.breaking-ticker marquee { color:var(–text); font-size:13px; }
.breaking-ticker a { color:var(–text); margin:0 25px; }
.breaking-ticker a:hover { color:var(–primary); }

/* ============================================================
CONTAINER & LAYOUT
============================================================ */
.container {
max-width: 1240px;
margin: 0 auto;
padding: 28px 20px;
}
.layout-2col {
display: grid;
grid-template-columns: 1fr 310px;
gap: 28px;
align-items: start;
}
@media(max-width:900px) { .layout-2col { grid-template-columns:1fr; } }

/* ============================================================
SECTION TITLES
============================================================ */
.section-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 22px;
padding-bottom: 12px;
border-bottom: 2px solid var(–border);
}
.section-header h2 {
font-size: 19px;
font-weight: 800;
display: flex;
align-items: center;
gap: 8px;
}
.section-header .line { flex:1; height:2px; background:linear-gradient(to left,transparent,var(–primary)); }
.section-header a {
font-size: 13px;
color: var(–primary);
white-space: nowrap;
font-weight: 700;
}
.section-header a:hover { text-decoration:underline; }

/* ============================================================
FEATURED GRID
============================================================ */
.featured-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 4px;
border-radius: var(–radius-lg);
overflow: hidden;
margin-bottom: 35px;
height: 440px;
}
.feat-card {
position: relative;
overflow: hidden;
background: var(–card);
display: block;
cursor: pointer;
}
.feat-card:first-child { grid-row: 1 / 3; }
.feat-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .5s ease;
}
.feat-no-img {
width: 100%;
height: 100%;
background: var(–surface);
display: flex;
align-items: center;
justify-content: center;
font-size: 70px;
}
.feat-card:hover img { transform: scale(1.06); }
.feat-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
padding: 18px;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
.feat-cat {
background: var(–primary);
color: #fff;
font-size: 11px;
font-weight: 800;
padding: 3px 11px;
border-radius: 4px;
display: inline-block;
margin-bottom: 8px;
width: fit-content;
}
.feat-title {
font-size: 16px;
font-weight: 700;
color: #fff;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.feat-card:first-child .feat-title { font-size: 22px; -webkit-line-clamp: 3; }
.feat-meta { font-size: 12px; color: rgba(255,255,255,.55); margin-top:6px; }
@media(max-width:700px) {
.featured-grid { grid-template-columns:1fr; grid-template-rows:auto; height:auto; }
.feat-card:first-child { grid-row:auto; }
.feat-card { height:220px; }
}

/* ============================================================
POST CARDS GRID
============================================================ */
.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}
.posts-grid-2 { grid-template-columns: repeat(2, 1fr); }
.posts-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media(max-width:700px) {
.posts-grid-2, .posts-grid-3 { grid-template-columns:1fr; }
}

/* –– Post Card –– */
.post-card {
background: var(–card);
border-radius: var(–radius-lg);
border: 1px solid var(–border);
overflow: hidden;
display: flex;
flex-direction: column;
transition: transform .25s, border-color .25s, box-shadow .25s;
}
.post-card:hover {
transform: translateY(-5px);
border-color: var(–primary);
box-shadow: var(–shadow-hover);
}
.card-thumb {
position: relative;
overflow: hidden;
display: block;
height: 195px;
background: var(–surface);
flex-shrink: 0;
}
.card-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .4s ease;
}
.post-card:hover .card-thumb img { transform: scale(1.07); }
.card-cat-badge {
position: absolute;
top: 10px;
right: 10px;
background: var(–primary);
color: #fff;
font-size: 11px;
font-weight: 800;
padding: 3px 11px;
border-radius: 20px;
}
.card-type-badge {
position: absolute;
top: 10px;
left: 10px;
background: rgba(59,130,246,.9);
color: #fff;
font-size: 10px;
font-weight: 700;
padding: 2px 8px;
border-radius: 20px;
}
.card-body { padding: 15px; flex:1; display:flex; flex-direction:column; gap:6px; }
.card-title {
font-size: 14.5px;
font-weight: 700;
line-height: 1.5;
color: var(–text);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
transition: color .2s;
}
.card-title:hover { color: var(–primary); }
.card-excerpt {
font-size: 12.5px;
color: var(–muted);
flex: 1;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 10px;
margin-top: auto;
border-top: 1px solid var(–border2);
font-size: 11.5px;
color: var(–muted);
}
.card-views { display:flex; align-items:center; gap:4px; }

/* ============================================================
SIDEBAR
============================================================ */
.sidebar { display:flex; flex-direction:column; gap:22px; }
.widget {
background: var(–card);
border-radius: var(–radius-lg);
border: 1px solid var(–border);
overflow: hidden;
}
.widget-head {
padding: 13px 16px;
background: var(–surface);
border-bottom: 1px solid var(–border);
font-size: 14px;
font-weight: 800;
display: flex;
align-items: center;
gap: 8px;
letter-spacing: .3px;
}
.widget-body { padding: 12px; }

/* Sidebar posts list */
.side-posts { display:flex; flex-direction:column; gap:2px; }
.side-post {
display: flex;
gap: 10px;
padding: 9px 0;
border-bottom: 1px solid var(–border2);
align-items: flex-start;
}
.side-post:last-child { border-bottom:none; }
.side-thumb {
width: 68px;
height: 52px;
border-radius: 7px;
overflow: hidden;
flex-shrink: 0;
background: var(–surface);
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
}
.side-thumb img { width:100%; height:100%; object-fit:cover; }
.side-info {}
.side-title {
font-size: 13px;
font-weight: 700;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
color: var(–text);
transition: color .2s;
}
.side-title:hover { color:var(–primary); }
.side-meta { font-size:11px; color:var(–muted); margin-top:3px; }

/* Category list widget */
.cat-widget-list li { border-bottom:1px solid var(–border2); }
.cat-widget-list li:last-child { border-bottom:none; }
.cat-widget-list a {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 14px;
font-size: 13.5px;
font-weight: 600;
color: var(–text2);
transition: all .2s;
gap: 8px;
}
.cat-widget-list a:hover { color:var(–primary); padding-right:20px; }
.cat-widget-list .cat-label { display:flex; align-items:center; gap:8px; }
.cat-count {
background: var(–surface2);
padding: 2px 9px;
border-radius: 20px;
font-size: 11px;
color: var(–muted);
flex-shrink: 0;
}

/* Backlink / WA widget */
.widget-cta {
border: 1px solid rgba(232,0,61,.35);
background: linear-gradient(135deg, rgba(232,0,61,.08), rgba(139,92,246,.05));
}
.widget-cta .widget-head { background:rgba(232,0,61,.12); color:var(–primary); }
.widget-cta-body { padding:18px; text-align:center; }
.widget-cta-body .price-row { display:flex; justify-content:center; gap:20px; margin:12px 0 18px; flex-wrap:wrap; }
.widget-cta-body .price-item { text-align:center; }
.widget-cta-body .price-item .price-val { font-size:22px; font-weight:900; color:var(–accent); }
.widget-cta-body .price-item .price-lbl { font-size:11px; color:var(–muted); margin-top:2px; }

/* ============================================================
SINGLE POST PAGE
============================================================ */
.post-wrap { background:var(–card); border-radius:var(–radius-lg); border:1px solid var(–border); padding:30px; }
.post-cat-badge {
background: var(–primary);
color: #fff;
font-size: 12px;
font-weight: 800;
padding: 4px 16px;
border-radius: 20px;
display: inline-flex;
align-items: center;
gap: 6px;
margin-bottom: 15px;
}
.post-title {
font-size: 28px;
font-weight: 900;
line-height: 1.4;
margin-bottom: 15px;
letter-spacing: -.5px;
}
.post-meta {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
padding: 12px 0;
border-top: 1px solid var(–border);
border-bottom: 1px solid var(–border);
margin-bottom: 25px;
font-size: 13px;
color: var(–muted);
}
.post-meta span { display:flex; align-items:center; gap:5px; }
.post-featured-img {
border-radius: var(–radius);
overflow: hidden;
margin-bottom: 25px;
}
.post-featured-img img { width:100%; max-height:470px; object-fit:cover; }
.post-content {
font-size: 16px;
line-height: 1.95;
color: #D5D5E8;
}
.post-content h2 {
font-size: 22px;
font-weight: 800;
margin: 28px 0 12px;
color: var(–text);
border-right: 4px solid var(–primary);
padding-right: 14px;
}
.post-content h3 {
font-size: 18px;
font-weight: 700;
margin: 22px 0 10px;
color: var(–text);
}
.post-content p { margin-bottom:18px; }
.post-content a { color:var(–primary); }
.post-content img { border-radius:8px; margin:10px 0; }
.post-content blockquote {
border-right: 4px solid var(–primary);
padding: 14px 18px;
background: var(–surface);
border-radius: 0 8px 8px 0;
margin: 20px 0;
font-style: italic;
color: var(–text2);
}
.post-content ul, .post-content ol { padding-right:24px; margin-bottom:16px; }
.post-content li { margin-bottom:8px; list-style:disc; }
.post-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.post-tag {
background: var(–surface);
border: 1px solid var(–border);
padding: 5px 14px;
border-radius: 20px;
font-size: 12px;
color: var(–text2);
transition: all .2s;
}
.post-tag:hover { border-color:var(–primary); color:var(–primary); }
.post-author {
background: var(–surface2);
border-radius: var(–radius);
padding: 20px;
margin-top: 28px;
display: flex;
align-items: center;
gap: 15px;
border: 1px solid var(–border);
}
.author-avatar {
width: 58px;
height: 58px;
background: var(–primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
flex-shrink: 0;
}
.author-name { font-size:16px; font-weight:700; }
.author-bio  { font-size:13px; color:var(–muted); margin-top:3px; }

/* ============================================================
COMMENTS
============================================================ */
.comments-section { margin-top:30px; }
.comments-section h3 { font-size:18px; font-weight:800; margin-bottom:20px; }
.comment-item {
background: var(–surface);
border-radius: var(–radius);
padding: 16px;
margin-bottom: 12px;
border: 1px solid var(–border2);
}
.comment-head { display:flex; justify-content:space-between; margin-bottom:8px; font-size:13px; }
.comment-name { font-weight:700; color:var(–accent); }
.comment-date { color:var(–muted); }
.comment-text { font-size:14px; color:var(–text2); line-height:1.7; }
.comment-form { background:var(–surface); border-radius:var(–radius); padding:20px; border:1px solid var(–border); margin-top:20px; }
.comment-form h4 { font-size:16px; font-weight:700; margin-bottom:16px; }

/* ============================================================
BREADCRUMB
============================================================ */
.breadcrumb {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 6px;
font-size: 12.5px;
color: var(–muted);
margin-bottom: 20px;
padding: 10px 0;
}
.breadcrumb a { color:var(–muted); transition:color .2s; }
.breadcrumb a:hover { color:var(–primary); }
.breadcrumb .bc-sep { font-size:9px; opacity:.5; }

/* ============================================================
BUTTONS
============================================================ */
.btn {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 9px 20px;
border-radius: var(–radius);
font-family: inherit;
font-size: 14px;
font-weight: 700;
cursor: pointer;
border: none;
transition: all .2s;
text-decoration: none;
white-space: nowrap;
}
.btn-primary { background:var(–primary); color:#fff; }
.btn-primary:hover { background:var(–primary-dark); transform:translateY(-1px); }
.btn-secondary { background:var(–surface); color:var(–text); border:1px solid var(–border); }
.btn-secondary:hover { border-color:var(–primary); color:var(–primary); }
.btn-success { background:#16a34a; color:#fff; }
.btn-danger  { background:#DC2626; color:#fff; }
.btn-wa      { background:#25D366; color:#fff; }
.btn-sm      { padding:6px 13px; font-size:12.5px; }
.btn-lg      { padding:13px 28px; font-size:16px; }
.btn-block   { width:100%; justify-content:center; }

/* ============================================================
FORMS
============================================================ */
.form-group { margin-bottom:18px; }
.form-label { display:block; font-size:13px; font-weight:700; margin-bottom:6px; color:var(–muted); }
.form-control {
width: 100%;
background: var(–surface);
border: 1.5px solid var(–border);
border-radius: var(–radius);
padding: 10px 14px;
color: var(–text);
font-family: inherit;
font-size: 14px;
outline: none;
transition: border-color .2s;
}
.form-control:focus { border-color:var(–primary); background:var(–surface2); }
textarea.form-control { min-height:130px; resize:vertical; }
.form-check { display:flex; align-items:center; gap:9px; cursor:pointer; font-size:14px; font-weight:600; }
.form-check input { width:17px; height:17px; accent-color:var(–primary); cursor:pointer; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:600px) { .form-row { grid-template-columns:1fr; } }
.form-help { font-size:11px; color:var(–muted); margin-top:4px; }

/* ============================================================
ALERTS & BADGES
============================================================ */
.alert { padding:12px 16px; border-radius:var(–radius); margin-bottom:20px; font-size:14px; font-weight:700; }
.alert-success { background:rgba(34,197,94,.15); color:#4ade80; border:1px solid rgba(34,197,94,.25); }
.alert-danger   { background:rgba(220,38,38,.15); color:#f87171; border:1px solid rgba(220,38,38,.25); }
.alert-warning  { background:rgba(234,179,8,.15);  color:#fde047; border:1px solid rgba(234,179,8,.25); }
.alert-info     { background:rgba(59,130,246,.15); color:#93c5fd; border:1px solid rgba(59,130,246,.25); }

.badge { padding:3px 10px; border-radius:20px; font-size:11px; font-weight:800; }
.badge-success { background:rgba(34,197,94,.2);   color:#4ade80; }
.badge-warning { background:rgba(234,179,8,.2);   color:#fde047; }
.badge-danger  { background:rgba(220,38,38,.2);   color:#f87171; }
.badge-info    { background:rgba(59,130,246,.2);  color:#93c5fd; }
.badge-muted   { background:rgba(100,100,140,.2); color:var(–muted); }
.badge-primary { background:rgba(232,0,61,.2);    color:var(–primary); }

/* ============================================================
PAGINATION
============================================================ */
.pagination {
display: flex;
gap: 6px;
margin-top: 30px;
flex-wrap: wrap;
justify-content: center;
}
.pagination a,
.pagination span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 38px;
height: 38px;
padding: 0 10px;
border-radius: var(–radius);
font-size: 13.5px;
font-weight: 700;
border: 1.5px solid var(–border);
background: var(–card);
color: var(–muted);
transition: all .2s;
cursor: pointer;
}
.pagination a:hover { border-color:var(–primary); color:var(–primary); }
.pagination a.current,
.pagination .current { background:var(–primary); border-color:var(–primary); color:#fff; }

/* ============================================================
FOOTER
============================================================ */
.site-footer {
background: #04040A;
border-top: 3px solid var(–primary);
margin-top: 60px;
}
.footer-grid {
max-width: 1240px;
margin: 0 auto;
padding: 45px 20px 30px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 35px;
}
.footer-widget h4 {
font-size: 15px;
font-weight: 800;
color: var(–text);
margin-bottom: 18px;
padding-bottom: 10px;
border-bottom: 2px solid var(–primary);
display: inline-block;
}
.footer-links li { margin-bottom:9px; }
.footer-links a {
font-size: 13.5px;
color: var(–muted);
display: flex;
align-items: center;
gap: 7px;
transition: all .2s;
}
.footer-links a::before { content:‘◀’; font-size:8px; color:var(–primary); flex-shrink:0; }
.footer-links a:hover { color:var(–primary); padding-right:4px; }
.footer-about p { font-size:13px; color:var(–muted); line-height:1.75; }
.footer-social { display:flex; gap:10px; margin-top:15px; flex-wrap:wrap; }
.footer-social a {
width: 36px;
height: 36px;
border-radius: 8px;
background: var(–surface);
border: 1px solid var(–border);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
transition: all .2s;
}
.footer-social a:hover { background:var(–primary); border-color:var(–primary); }
.footer-bottom {
background: #020208;
padding: 16px 20px;
text-align: center;
font-size: 13px;
color: var(–muted);
border-top: 1px solid var(–border2);
}
.footer-bottom a { color:var(–primary); }

/* ============================================================
EMPTY STATE
============================================================ */
.empty-state {
text-align: center;
padding: 70px 20px;
color: var(–muted);
}
.empty-state .empty-icon { font-size:70px; margin-bottom:18px; opacity:.6; }
.empty-state h3 { font-size:20px; font-weight:700; margin-bottom:8px; color:var(–text2); }
.empty-state p  { font-size:14px; }

/* ============================================================
MISC
============================================================ */
.no-thumb {
width:100%; background:var(–surface);
display:flex; align-items:center; justify-content:center;
}
.section-gap { margin-bottom:38px; }
.divider { height:1px; background:var(–border2); margin:25px 0; }
.text-primary { color:var(–primary); }
.text-muted   { color:var(–muted); }
.text-accent  { color:var(–accent); }

/* ============================================================
RESPONSIVE
============================================================ */
@media(max-width:768px) {
.post-title { font-size:21px; }
.post-wrap   { padding:18px; }
.container   { padding:18px 14px; }
.footer-grid { padding:30px 14px; }
}

/* ============================================================
FIX: إصلاح ألوان النصوص داخل المقالات
============================================================ */
.post-content,
.post-content *,
.post-content p,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-content li,
.post-content span,
.post-content div,
.post-content td,
.post-content th {
color: #D5D5E8 !important;
background-color: transparent !important;
}

.post-content a {
color: var(–primary) !important;
}

.post-content h2 {
color: var(–text) !important;
}

.post-content h3 {
color: var(–text) !important;
}

/* إزالة أي background داكن من النصوص المنسوخة */
.post-content [style*=“background”],
.post-content [style*=“color”] {
background: transparent !important;
color: #D5D5E8 !important;
}