<data:blog.pageName/> - <data:blog.title/> <data:blog.pageTitle/> p { color: var(--text-muted); margin-bottom: 2rem; } .contact-items { display: flex; flex-direction: column; gap: 1rem; } .contact-item { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 12px var(--shadow); border: 1px solid var(--blue-light-accent); transition: var(--transition); } .contact-item:hover { border-color: var(--gold); transform: translateX(-5px); } .contact-item-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue-dark); font-size: 1.1rem; flex-shrink: 0; font-weight: 700; } .contact-item-text strong { display: block; color: var(--blue-dark); font-size: 0.9rem; margin-bottom: 0.15rem; } .contact-item-text span { color: var(--blue-dark); font-size: 1.05rem; font-weight: 700; } .contact-item-text span.phone-num { color: var(--gold-dark); font-weight: 800; font-size: 1.1rem; letter-spacing: 0.5px; } .contact-item-text span.wa-num { color: #1aad52; font-weight: 800; font-size: 1.1rem; letter-spacing: 0.5px; } .contact-item-text span.email-val { color: var(--blue-dark); font-weight: 600; font-size: 0.97rem; } .contact-ctas { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; } .hours-card { background: linear-gradient(135deg, var(--blue-dark), var(--blue-dark-mid)); border-radius: var(--radius-lg); padding: 2.5rem; color: white; border: 2px solid var(--gold); box-shadow: 0 8px 32px rgba(13,33,55,0.25); } .hours-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; } .hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid rgba(247,201,72,0.2); font-size: 0.97rem; } .hours-row:last-child { border-bottom: none; } .hours-day { color: rgba(255,255,255,0.85); } .hours-time { color: var(--gold-light); font-weight: 700; } .emergency-badge { background: rgba(247,201,72,0.15); border: 1px solid var(--gold); border-radius: var(--radius); padding: 1rem; margin-top: 1.5rem; text-align: center; color: var(--gold-light); font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.5rem; } /* ===== BLOG ===== */ .blog-grid { display: flex; flex-direction: column; gap: 0; } .blog-card { background: var(--white); border-radius: 0; overflow: hidden; box-shadow: none; border: none; border-bottom: 1px solid var(--blue-light-accent); transition: var(--transition); width: 100%; display: flex; flex-direction: row; height: 130px; } .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,33,55,0.14); border-color: var(--gold); } .blog-img { width: 35%; flex-shrink: 0; overflow: hidden; position: relative; background: var(--blue-light-mid); } .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); opacity: 0.9; } .blog-card:hover .blog-img img { transform: scale(1.07); opacity: 1; } .no-img { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gold-dark); background: var(--blue-light-mid); } .no-img i { font-size: 2rem; opacity: 0.5; } .blog-body { padding: 0.75rem; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; overflow: hidden; } .blog-body h3 { font-size: 0.88rem; font-weight: 700; color: var(--blue-dark); line-height: 1.35; margin-bottom: 0.3rem; } .blog-body h3 a { text-decoration: none; color: inherit; transition: var(--transition); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .blog-body h3 a:hover { color: var(--gold-dark); } .blog-excerpt { color: var(--text-muted); font-size: 0.78rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0.4rem; } .btn-outline-gold { display: inline-flex; align-items: center; gap: 0.3rem; background: transparent; border: 1px solid var(--gold); color: var(--gold-dark); padding: 0.3rem 0.7rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-decoration: none; transition: var(--transition); justify-content: center; } .btn-outline-gold:hover { background: var(--gold); color: var(--blue-dark); } /* ===== KEYWORDS SECTION ===== */ .keywords-strip { background: var(--blue-light-mid); padding: 1.2rem 0; border-top: 1px solid var(--blue-light-accent); border-bottom: 1px solid var(--blue-light-accent); overflow: hidden; } .keywords-scroll { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; } .kw-pill { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--white); border: 1px solid var(--blue-light-accent); color: var(--blue-dark); padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; white-space: nowrap; transition: var(--transition); } .kw-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--blue-dark); } .kw-pill i { color: var(--gold-dark); font-size: 0.75rem; } /* ===== FOOTER ===== */ .footer { background: var(--blue-dark); padding: 4.5rem 0 2rem; position: relative; overflow: hidden; } .footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent); } .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; } .footer-brand .logo { margin-bottom: 1.2rem; } .footer-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; } .social-row { display: flex; gap: 0.75rem; } .social-btn { width: 40px; height: 40px; background: rgba(247,201,72,0.15); border: 1px solid var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); text-decoration: none; font-size: 1rem; transition: var(--transition); font-weight: 600; } .social-btn:hover { background: var(--gold); color: var(--blue-dark); border-color: var(--gold); transform: translateY(-3px); } .footer-col h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--gold); margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(247,201,72,0.3); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 0.6rem; } .footer-col ul li a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.93rem; transition: var(--transition); display: flex; align-items: center; gap: 0.5rem; } .footer-col ul li a::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; } .footer-col ul li a:hover { color: var(--gold-light); padding-right: 4px; } .footer-contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.93rem; margin-bottom: 0.7rem; } .footer-contact-item i { color: var(--gold); width: 16px; } .footer-contact-item .footer-phone { color: var(--gold-light); font-weight: 700; font-size: 1rem; } .footer-contact-item .footer-wa { color: #4CDB85; font-weight: 700; font-size: 1rem; } .footer-contact-item .footer-txt { color: rgba(255,255,255,0.8); } .footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,0.55); font-size: 0.88rem; } /* ===== FLOATING ===== */ .float-btn { position: fixed; left: 22px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.6rem; transition: var(--transition); box-shadow: 0 6px 24px rgba(0,0,0,0.25); color: white; } .float-btn:hover { transform: scale(1.12); color: white; } .float-wa { bottom: 22px; background: linear-gradient(135deg, #25D366, #1aad52); box-shadow: 0 6px 24px rgba(37,211,102,0.4); } .float-call { bottom: 96px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--blue-dark); border: none; font-size: 1.3rem; box-shadow: 0 6px 24px rgba(247,201,72,0.45); font-weight: 700; } /* ===== POST ===== */ .post-wrap { max-width: 100%; margin: 0; padding: 1.5rem 1rem; background: var(--white); border-radius: 0; box-shadow: none; border-top: none; } .post-wrap > * { max-width: 100%; } .post-content * { max-width: 100%; word-wrap: break-word; overflow-wrap: break-word; } .post-content table { width: 100% !important; max-width: 100%; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; } /* 📊 تنسيق احترافي لجداول المقالات */ .post-content .article-table { width: 100%; margin: 1.8rem 0; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(13, 33, 55, 0.1); font-size: 0.95rem; background: var(--white); } .post-content .article-table thead { background: linear-gradient(135deg, var(--blue-dark), var(--blue-dark-mid)); } .post-content .article-table thead th { color: var(--gold); padding: 1rem; text-align: right; font-weight: 700; font-size: 1rem; border: none; } .post-content .article-table tbody tr { transition: background 0.2s ease; border-bottom: 1px solid var(--border); } .post-content .article-table tbody tr:nth-child(even) { background: #f8fbff; } .post-content .article-table tbody tr:hover { background: #fff7e0; } .post-content .article-table tbody tr:last-child { border-bottom: none; } .post-content .article-table tbody td { padding: 0.85rem 1rem; color: var(--text-dark); text-align: right; line-height: 1.6; } .post-content .article-table tbody td:first-child { font-weight: 600; color: var(--blue-dark); } /* 🎬 أزرار CTA داخل المقالات */ .post-content .cta-btn { display: inline-block; padding: 0.85rem 1.8rem; margin: 0.5rem 0.4rem; background: linear-gradient(135deg, var(--blue-dark), var(--blue-dark-mid)); color: var(--gold) !important; text-decoration: none !important; border-radius: 8px; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(13, 33, 55, 0.2); border: 2px solid transparent; } .post-content .cta-btn:hover { background: linear-gradient(135deg, var(--gold), #FFB300); color: var(--blue-dark) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3); border-color: var(--blue-dark); } .post-content .cta-btn[href^="https://wa.me"], .post-content .cta-btn[href*="whatsapp"] { background: linear-gradient(135deg, #25D366, #128C7E); color: #ffffff !important; } .post-content .cta-btn[href^="https://wa.me"]:hover, .post-content .cta-btn[href*="whatsapp"]:hover { background: linear-gradient(135deg, #128C7E, #075E54); color: #ffffff !important; } @media (max-width: 600px) { .post-content .cta-btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; display: block; text-align: center; margin: 0.5rem 0; } } @media (max-width: 600px) { .post-content .article-table { font-size: 0.85rem; } .post-content .article-table thead th, .post-content .article-table tbody td { padding: 0.6rem 0.5rem; } } .post-content table thead, .post-content table tbody { display: table; width: 100%; } .post-content iframe, .post-content video { max-width: 100%; height: auto; } .post-content pre { overflow-x: auto; max-width: 100%; } .post-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--white); line-height: 1.45; margin: 0; padding: 1.1rem 2rem 1.1rem 1.5rem; text-align: right; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-dark-mid) 100%); border-right: 6px solid var(--gold, #F7C948); border-radius: 0 0 10px 10px; box-shadow: 0 4px 16px rgba(13,33,55,0.2); position: relative; } .post-meta { display: none; } .post-meta span { display: flex; align-items: center; gap: 0.4rem; } .post-meta i { color: var(--gold-dark); } .post-content { line-height: 1.9; font-size: 1.1rem; color: var(--text-dark); } /* ═════ FAQ Accordion ═════ */ .post-content .faq-accordion { margin: 2rem 0; } .post-content .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 0.8rem; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 2px 6px rgba(13, 33, 55, 0.05); } .post-content .faq-item:hover { box-shadow: 0 4px 12px rgba(13, 33, 55, 0.1); border-color: var(--gold); } .post-content .faq-question { background: linear-gradient(135deg, var(--blue-dark), var(--blue-dark-mid)); color: var(--gold); padding: 1rem 1.3rem; margin: 0; font-size: 1.05rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; transition: background 0.3s ease; position: relative; } .post-content .faq-question::before { display: none !important; } .post-content .faq-question:hover { background: linear-gradient(135deg, var(--blue-dark-mid), var(--blue-dark)); } .post-content .faq-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--gold); color: var(--blue-dark); border-radius: 50%; font-size: 1.3rem; font-weight: 900; flex-shrink: 0; transition: transform 0.3s ease; } .post-content .faq-item.active .faq-icon { transform: rotate(45deg); background: var(--white); } .post-content .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; background: #fafbff; } .post-content .faq-item.active .faq-answer { max-height: 2000px; padding: 1.2rem 1.3rem; border-top: 2px solid var(--gold); } .post-content .faq-answer p, .post-content .faq-answer ul, .post-content .faq-answer ol { margin: 0 0 0.7rem; line-height: 1.8; color: var(--text-dark); } .post-content .faq-answer p:last-child, .post-content .faq-answer ul:last-child, .post-content .faq-answer ol:last-child { margin-bottom: 0; } .post-content .faq-answer ul, .post-content .faq-answer ol { padding-right: 1.3rem; } .post-content .faq-answer li { margin-bottom: 0.4rem; } @media (max-width: 600px) { .post-content .faq-question { font-size: 0.95rem; padding: 0.85rem 1rem; } .post-content .faq-icon { width: 24px; height: 24px; font-size: 1.1rem; } .post-content .faq-item.active .faq-answer { padding: 1rem; } } /* ═════ جدول المحتويات (TOC) ═════ */ .post-content .toc, .post-content [class*="toc"] { background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%); border: 1px solid var(--border); border-right: 4px solid var(--gold); border-radius: 10px; padding: 1.2rem 1.5rem; margin: 1.5rem 0 2rem; box-shadow: 0 2px 8px rgba(13, 33, 55, 0.06); } .post-content .toc > strong, .post-content [class*="toc"] > strong { display: block; color: var(--blue-dark); font-size: 1.15rem; font-weight: 800; margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); } .post-content .toc ul, .post-content [class*="toc"] ul { list-style: none; padding: 0; margin: 0; } .post-content .toc ul li, .post-content [class*="toc"] ul li { padding: 0.4rem 0; margin: 0; position: relative; padding-right: 1.5rem; border-bottom: 1px dashed rgba(13, 33, 55, 0.08); } .post-content .toc ul li:last-child, .post-content [class*="toc"] ul li:last-child { border-bottom: none; } .post-content .toc ul li::before, .post-content [class*="toc"] ul li::before { content: "\25C2"; color: var(--gold); position: absolute; right: 0; top: 0.4rem; font-size: 1rem; font-weight: bold; } .post-content .toc a, .post-content [class*="toc"] a { color: var(--text-dark) !important; text-decoration: none !important; font-weight: 500; font-size: 1rem; transition: all 0.25s ease; display: inline-block; padding: 0.15rem 0; border-bottom: none !important; } .post-content .toc a:hover, .post-content [class*="toc"] a:hover { color: var(--blue-dark) !important; font-weight: 700; transform: translateX(-3px); text-decoration: none !important; } .post-content .toc a:visited, .post-content [class*="toc"] a:visited { color: var(--text-dark) !important; } @media (max-width: 600px) { .post-content .toc, .post-content [class*="toc"] { padding: 1rem; } .post-content .toc > strong, .post-content [class*="toc"] > strong { font-size: 1.05rem; } .post-content .toc a, .post-content [class*="toc"] a { font-size: 0.95rem; } } /* ═════ تنسيق العناوين بهوية العملاق ═════ */ .post-content h2, .post-content h2[style] { font-family: var(--font-display) !important; font-size: 1rem !important; color: var(--blue-dark); font-weight: 700; margin: 1.5rem 0 0.8rem; padding: 0.45rem 0.9rem; background: linear-gradient(90deg, rgba(255, 215, 0, 0.12), transparent 70%); border-right: 4px solid var(--gold); border-radius: 4px; position: relative; line-height: 1.4; } .post-content h2::before { content: "\2744\FE0F"; margin-left: 0.4rem; font-size: 0.9rem; vertical-align: middle; color: var(--gold); } .post-content h3, .post-content h3[style] { font-family: var(--font-display) !important; font-size: 0.9rem !important; color: var(--blue-dark-mid); font-weight: 700; margin: 1.8rem 0 0.9rem; padding: 0.4rem 1rem 0.4rem 0; border-right: 3px solid var(--gold); position: relative; line-height: 1.4; } .post-content h3::after { content: ""; display: block; width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-top: 0.3rem; } @media (max-width: 600px) { .post-content h2 { font-size: 0.9rem !important; padding: 0.35rem 0.65rem; } .post-content h2::before { font-size: 0.8rem; } .post-content h3 { font-size: 0.82rem !important; padding: 0.2rem 0.55rem 0.2rem 0; } } .post-content p { margin-bottom: 1.5rem; } /* صورة المقال — عرض كامل بدون قص */ .post-content img { max-width: 100%; width: 100%; height: auto; display: block; border-radius: var(--radius); margin: 1.5rem 0; box-shadow: 0 4px 16px var(--shadow); } /* استثناء للصور الصغيرة داخل النص */ .post-content p img, .post-content li img { width: auto; max-width: 100%; } /* ===== RESPONSIVE ===== */ /* === Dropdown Menu للتصنيفات === */ .nav-dropdown { position: relative; } .dropdown-toggle { cursor: pointer; } .dropdown-arrow { font-size: 0.7em; margin-right: 4px; transition: transform 0.3s; } .nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); } .dropdown-menu { display: none; position: absolute; top: 100%; right: 0; min-width: 240px; background: var(--card, #fff); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); list-style: none; padding: 8px 0; margin-top: 8px; z-index: 1000; border: 1px solid rgba(0,0,0,0.08); } .nav-dropdown.open .dropdown-menu { display: block; } .dropdown-menu li { display: block; } .dropdown-menu a { display: flex !important; align-items: center; gap: 10px; padding: 10px 16px !important; color: var(--gold, #E8B84B) !important; text-decoration: none; font-size: 0.95em; transition: background 0.2s; border-radius: 0 !important; } .dropdown-menu a:hover { background: rgba(232,184,75,0.15) !important; color: #fff !important; } .dropdown-menu a i { width: 18px; text-align: center; } .dropdown-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 6px 0; list-style: none; } /* ===== المقالات ذات الصلة (بأسلوب القانوني) ===== */ .related-box { margin: 2.5rem 0 1.5rem; padding: 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: 14px; } .related-mid { margin: 1.8rem 0; background: linear-gradient(135deg, #f8fbff, #fff); border-right: 4px solid var(--gold); position: relative; } .related-mid .related-head h3 { color: var(--blue-dark); font-size: 1.05rem; } .related-mid .related-head { padding-bottom: 0.7rem; margin-bottom: 0.9rem; } .related-end { background: linear-gradient(180deg, #fff, #f8fbff); border-top: 3px solid var(--gold); } .related-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.2rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--border); } .related-head h3 { color: var(--blue-dark); font-size: 1.15rem; margin: 0; } .related-head svg, .related-head i { color: var(--gold); width: 22px; height: 22px; font-size: 1.2rem; } .related-grid { display: grid; gap: 0.6rem; } .related-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem; background: #f8fbff; border: 1px solid var(--border); border-radius: 10px; transition: all 0.25s; color: inherit; text-decoration: none; } .related-item:hover { border-color: var(--gold); transform: translateX(-3px); background: #fff; } .related-num { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-dark-mid)); color: var(--gold); display: grid; place-items: center; font-weight: 700; font-size: 0.92rem; flex-shrink: 0; border: 1px solid var(--gold); } .related-meta { flex: 1; min-width: 0; } .related-title { font-weight: 700; color: var(--blue-dark); font-size: 0.95rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .related-date { font-size: 0.78rem; color: var(--text-muted, #6c757d); margin-top: 0.2rem; } .related-arrow { color: var(--gold); flex-shrink: 0; font-size: 1rem; } .related-loading, .related-empty { padding: 1.5rem; text-align: center; color: var(--text-muted, #6c757d); font-size: 0.92rem; } @media (max-width: 900px) { .dropdown-menu { position: static; box-shadow: none; min-width: 100%; margin-top: 4px; margin-right: 0; background: rgba(0,0,0,0.03); } } @media (max-width: 900px) { .about-wrap, .contact-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } .about-img-frame { max-width: 500px; margin: 0 auto; } } @media (max-width: 768px) { .nav-wrap .nav-list { display: none; flex-direction: column; padding: 1rem; } .nav-wrap .nav-list.open { display: flex; flex-direction: column; width: 100%; } .menu-toggle { display: block !important; } .nav-wrap { display: block !important; width: 100%; } .header-inner { padding: 0.75rem 0; flex-wrap: nowrap; } .logo-name { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .logo-sub { font-size: 0.7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .logo-icon { width: 80px; height: 40px; flex-shrink: 0; } .menu-toggle { flex-shrink: 0; } .hero { padding: 3.5rem 0; min-height: auto; } .hero-stats { gap: 1.5rem; } .stat-divider { display: none; } .services-grid { grid-template-columns: 1fr; } .why-grid { grid-template-columns: 1fr; } .testi-grid { grid-template-columns: 1fr; } .blog-card { width: 100%; height: 120px; } .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; text-align: center; } .about-list { grid-template-columns: 1fr; } .post-wrap { padding: 1rem 0.5rem; margin: 0; border-radius: 0; } .post-title { font-size: 1.1rem; font-weight: 800; line-height: 1.4; } .keywords-scroll { gap: 0.6rem; } } @media (max-width: 480px) { .container { padding: 0 16px; } .section { padding: 3.5rem 0; } .hero h1 { font-size: 1.4rem; } .section-title { font-size: 1.2rem; } .post-title { font-size: 1.1rem; font-weight: 800; line-height: 1.4; } .post-content h2 { font-size: 0.88rem !important; } .post-content h3 { font-size: 0.8rem !important; } .contact-ctas { flex-direction: column; } .btn { padding: 0.85rem 1.5rem; font-size: 0.97rem; } .float-btn { width: 52px; height: 52px; font-size: 1.4rem; left: 16px; } .float-call { bottom: 86px; } } /* تحسين الأداء: content-visibility للأقسام البعيدة عن العرض */ .section-light, .section-dark, .footer, .related-posts { content-visibility: auto; contain-intrinsic-size: 600px; } /* ══ تجاوز CSS Blogger الخارجي على العناوين ══ */ div#postBody.post-content h2, div#postBody.post-content h2[style], .post-wrap div#postBody h2 { font-size: 1rem !important; font-weight: 700 !important; } div#postBody.post-content h3, div#postBody.post-content h3[style], .post-wrap div#postBody h3 { font-size: 0.9rem !important; font-weight: 700 !important; } div#postBody.post-content h1, .post-wrap div#postBody h1, .post-title { font-size: 1.2rem !important; } @media (max-width: 768px) { div#postBody.post-content h2, div#postBody.post-content h2[style] { font-size: 0.92rem !important; } div#postBody.post-content h3, div#postBody.post-content h3[style] { font-size: 0.84rem !important; } .post-title { font-size: 1rem !important; } } ]]>