/*
Theme Name: Rfif
Theme URI: https://rfif.com
Author: Rfif
Author URI: https://rfif.com
Description: قالب ووردبريس احترافي حديث لمكاتب المحاماة والاستشارات القانونية مع دعم كامل للعربية و RTL. يتميز بتصميم عصري بألوان الزمرد الداكن والرمادي، قسم البطل المتحرك، بطاقات الخدمات، عدادات الإحصائيات، نموذج الاتصال، وتكامل مع المدونة.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alraed-law
Tags: one-column, custom-colors, custom-logo, featured-images, full-width-template, rtl-language-support, theme-options, translation-ready, blog, attorney, law, lawyer, legal
*/

/* ============================================
   CSS Variables & Base Styles — Rfif v1.0.0
   Warm Ember Design System
   ============================================ */
:root {
    /* ── Primary (Dark Stone) ── */
    --primary: #1C1917;
    --primary-light: #292524;
    --primary-dark: #0C0A09;

    /* ── Accent (Vivid Orange) ── */
    --accent: #EA580C;
    --accent-light: #FB923C;
    --accent-dark: #C2410C;

    /* ── Secondary (Teal) ── */
    --secondary: #0D9488;
    --secondary-light: #14B8A6;

    /* ── Surfaces ── */
    --surface: #FFFFFF;
    --bg: #FAFAF9;
    --bg-alt: #F5F5F4;

    /* ── Text ── */
    --text: #1C1917;
    --text-muted: #78716C;
    --text-light: #A8A29E;

    /* ── Border ── */
    --border: #E7E5E4;

    /* ── Border Radius ── */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* ── Shadows (warm orange tints) ── */
    --shadow-sm: 0 1px 3px rgba(234,88,12,0.04), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(234,88,12,0.06), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 32px rgba(234,88,12,0.08), 0 4px 16px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 50px rgba(234,88,12,0.1), 0 8px 24px rgba(0,0,0,0.06);

    /* ── Glassmorphism ── */
    --glass-bg: rgba(255,255,255,0.75);
    --glass-border: rgba(234,88,12,0.06);
    --glass-blur: blur(16px);

    /* ── Transitions ── */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* ── Legacy Aliases (homepage.css compatibility) ── */
    --navy: var(--primary);
    --navy-light: var(--primary-light);
    --navy-dark: var(--primary-dark);
    --gold: var(--accent);
    --gold-light: var(--accent-light);
    --gold-dark: var(--accent-dark);
    --cream: var(--bg-alt);
    --cream-dark: #EDEDEB;
    --white: var(--surface);
    --text-dark: var(--text);
    --border-color: var(--border);
    --brown: var(--secondary);
    --brown-light: var(--secondary-light);
    --brown-dark: #0F766E;
}

/* ============================================
   1. Base Reset
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   2. Custom Scrollbar — Warm Orange Accent
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-light), var(--accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

/* Selection */
::selection {
    background-color: rgba(234,88,12,0.18);
    color: var(--primary-dark);
}

::-moz-selection {
    background-color: rgba(234,88,12,0.18);
    color: var(--primary-dark);
}

/* ============================================
   3. Top Bar
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: var(--surface);
    padding: 0.6rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(234,88,12,0.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-right a,
.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.top-bar-right a:hover,
.top-bar-right span:hover {
    color: var(--accent-light);
}

.top-bar-right svg {
    width: 14px;
    height: 14px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-left .separator {
    color: var(--accent);
    opacity: 0.5;
}

.top-bar-left .schedule-text {
    color: rgba(255,255,255,0.6);
}

.top-bar-left .schedule-time {
    color: var(--accent-light);
    font-weight: 600;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--accent-light);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   4. Header / Navigation — Glassmorphism
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.94);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(234,88,12,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo-text .logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.site-logo-text .logo-subtitle {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
}

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover {
    color: var(--accent);
    background: rgba(234,88,12,0.06);
}

/* Header CTA */
.header-cta .btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--surface);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(234,88,12,0.18);
}

.header-cta .btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    box-shadow: 0 8px 25px rgba(234,88,12,0.3);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary);
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   5. Mobile Menu
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--surface);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12,10,9,0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-header .logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-header .logo-wrap img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
}

.mobile-menu-header .logo-wrap span {
    color: var(--surface);
    font-weight: 700;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--surface);
    cursor: pointer;
    padding: 0.25rem;
}

.mobile-menu-close:hover {
    color: var(--accent-light);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-nav {
    padding: 1.5rem;
}

.mobile-menu-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

.mobile-menu-nav a:hover {
    background: var(--bg-alt);
    color: var(--accent);
}

.mobile-menu-contact {
    padding: 1.25rem 1.5rem;
    background: rgba(245,245,244,0.7);
    border-top: 1px solid var(--border);
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mobile-menu-contact svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.mobile-menu-contact .btn-gold {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--surface);
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    margin-top: 0.75rem;
}

.mobile-menu-contact .btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

/* Mobile Menu Social Icons */
.mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}

.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(28,25,23,0.06);
    color: var(--primary);
    transition: var(--transition);
}

.mobile-menu-social a:hover {
    background: var(--accent);
    color: var(--surface);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234,88,12,0.25);
}

.mobile-menu-social a svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   6. Section Common Styles
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section-badge.has-bg {
    background: rgba(234,88,12,0.08);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title .text-gold {
    color: var(--accent);
}

.section-divider {
    width: 4rem;
    height: 4px;
    background: linear-gradient(to left, var(--accent-light), var(--accent-dark));
    margin: 0 auto;
    border-radius: 2px;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   7. Footer
   ============================================ */
.site-footer {
    background: var(--primary);
    color: var(--surface);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 2.5rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-about .footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
}

.footer-about .footer-logo-text .logo-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-about .footer-logo-text .logo-sub {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
}

.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234,88,12,0.25);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-light);
    padding-right: 0.25rem;
}

.footer-links ul li a .dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(234,88,12,0.5);
    flex-shrink: 0;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-info .contact-item a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-info .contact-item a:hover {
    color: var(--accent-light);
}

.footer-contact-info .contact-item .ci-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(234,88,12,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-info .contact-item .ci-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent-light);
}

.footer-contact-info .contact-item .ci-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.15rem;
}

.footer-contact-info .contact-item .ci-value {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.footer-contact-info .contact-item .ci-value:hover {
    color: var(--accent-light);
}

.footer-bottom {
    background: var(--primary-dark);
    padding: 1rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
}

/* ============================================
   8. WhatsApp Float
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--surface);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulseGold 2s infinite;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   9. Scroll to Top
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--surface);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.scroll-to-top a:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(234,88,12,0.3);
}

.scroll-to-top svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   10. Animations
   ============================================ */
@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   11. Blog Page / Page Header
   ============================================ */
.blog-page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 75px;
}

.blog-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EA580C'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-page-header .container {
    position: relative;
    z-index: 2;
}

.blog-page-header h1 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--surface);
    margin-bottom: 0.5rem;
}

.blog-page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    font-weight: 300;
}

.blog-content-area,
.page-content-area {
    padding-top: 0;
    padding-bottom: 4.6875rem;
}

/* ============================================
   12. Blog Grid Styles
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(234,88,12,0.04);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(234,88,12,0.1);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--surface);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(234,88,12,0.25);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-card-meta svg {
    width: 14px;
    height: 14px;
}

.blog-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover h3 {
    color: var(--accent);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.blog-card-link:hover {
    color: var(--accent-dark);
}

.blog-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   13. Single Post Styles
   ============================================ */
.single-article {
    max-width: 800px;
    margin: 0 auto;
}

.single-featured {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.single-featured img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.single-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.single-meta .meta-item svg {
    color: var(--accent);
}

.single-body {
    line-height: 1.8;
}

.single-body .post-content {
    font-size: 1.05rem;
    color: var(--text);
}

.single-body .post-content p {
    margin-bottom: 1.25rem;
}

.single-body .post-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.single-body .post-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

.single-body .post-content img {
    border-radius: var(--radius-xl);
    margin: 1.5rem 0;
}

.single-body .post-content ul,
.single-body .post-content ol {
    padding-right: 1.5rem;
    margin-bottom: 1.25rem;
}

.single-body .post-content ul {
    list-style: disc;
}

.single-body .post-content ol {
    list-style: decimal;
}

.single-body .post-content li {
    margin-bottom: 0.5rem;
}

.single-body .post-content blockquote {
    border-right: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-muted);
}

/* ============================================
   14. Share Bar
   ============================================ */
.share-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-bar-bottom {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.share-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn-facebook {
    background: #1877F2;
    color: var(--surface);
}

.share-btn-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24,119,242,0.3);
}

.share-btn-twitter {
    background: #000000;
    color: var(--surface);
}

.share-btn-twitter:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.share-btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--surface);
}

.share-btn-instagram:hover {
    background: linear-gradient(45deg, #d4812b, #c85a33, #c4213a, #b31e5b, #a3157a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225,48,108,0.3);
}

.share-btn-linkedin {
    background: #0A66C2;
    color: var(--surface);
}

.share-btn-linkedin:hover {
    background: #094D91;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10,102,194,0.3);
}

/* ============================================
   15. Post Tags
   ============================================ */
.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.post-tags svg {
    color: var(--accent);
    flex-shrink: 0;
}

.post-tag {
    background: var(--bg-alt);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(234,88,12,0.08);
}

.post-tag:hover {
    background: var(--accent);
    color: var(--surface);
    border-color: var(--accent);
}

/* ============================================
   16. Author Box
   ============================================ */
.author-box {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    margin-top: 2.5rem;
    border: 1px solid rgba(234,88,12,0.06);
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--accent);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-name a {
    color: var(--primary);
}

.author-name a:hover {
    color: var(--accent);
}

.author-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   17. Related Posts
   ============================================ */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.related-posts .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(234,88,12,0.04);
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(234,88,12,0.1);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-card-body {
    padding: 1.25rem;
}

.related-card-body .related-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.related-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-top: 0.25rem;
    transition: var(--transition);
}

.related-card:hover h3 {
    color: var(--accent);
}

/* ============================================
   18. Post Navigation
   ============================================ */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.nav-prev,
.nav-next {
    flex: 1;
}

.nav-prev {
    text-align: right;
}

.nav-next {
    text-align: left;
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.nav-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.nav-title a {
    color: var(--primary);
}

.nav-title a:hover {
    color: var(--accent);
}

/* ============================================
   19. Blog Pagination
   ============================================ */
.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.blog-pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
}

.blog-pagination li a,
.blog-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-pagination li a {
    color: var(--primary);
    background: var(--surface);
    border: 1px solid var(--border);
}

.blog-pagination li a:hover {
    background: var(--accent);
    color: var(--surface);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(234,88,12,0.25);
    transform: translateY(-2px);
}

.blog-pagination li span.current {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--surface);
    box-shadow: 0 2px 8px rgba(234,88,12,0.2);
}

/* ============================================
   20. No Posts
   ============================================ */
.no-posts {
    text-align: center;
    padding: 4rem 0;
}

.no-posts svg {
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.no-posts h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.no-posts p {
    color: var(--text-muted);
}

/* ============================================
   21. Page Body
   ============================================ */
.page-body {
    max-width: 800px;
    margin: 0 auto;
}

.page-body .post-content {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
}

.page-body .post-content p {
    margin-bottom: 1.25rem;
}

.page-body .post-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.page-body .post-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

.page-body .post-content img {
    border-radius: var(--radius-xl);
    margin: 1.5rem 0;
}

/* ============================================
   22. TOC (Table of Contents)
   ============================================ */
.alraed-toc {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(234,88,12,0.06);
}

.alraed-toc .toc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.alraed-toc ul {
    list-style: none;
    padding: 0;
}

.alraed-toc li {
    margin-bottom: 0.5rem;
}

.alraed-toc li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.alraed-toc li a:hover {
    color: var(--accent);
    background: rgba(234,88,12,0.06);
}

/* ============================================
   23. Comments Section
   ============================================ */
.single-comments {
    margin-top: 3rem;
}

.alraed-comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.comments-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.comments-title span {
    color: var(--accent);
    font-weight: 700;
}

.comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comments-list .comment {
    display: block;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    border-right: 4px solid var(--accent);
    transition: var(--transition);
}

.comments-list .comment:hover {
    box-shadow: var(--shadow-sm);
}

.comments-list .children {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 2rem;
}

.comments-list .children .comment {
    background: var(--surface);
    border-right: 3px solid var(--accent);
    padding: 1.25rem;
}

.comment-body {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comment-author-avatar {
    flex-shrink: 0;
}

.comment-author-avatar img {
    border-radius: var(--radius-full);
    width: 56px;
    height: 56px;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.comment-content-wrap {
    flex: 1;
    min-width: 0;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.comment-author.fn {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.comment-author.fn a {
    color: var(--primary);
    text-decoration: none;
}

.comment-author.fn a:hover {
    color: var(--accent);
}

.comment-awaiting {
    font-size: 0.75rem;
    color: #d97706;
    background: #fef3c7;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-weight: 600;
}

.comment-datetime {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comment-datetime a {
    color: var(--text-muted);
    text-decoration: none;
}

.comment-datetime a:hover {
    color: var(--accent);
}

.comment-text {
    font-size: 0.925rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.comment-text p:last-child {
    margin-bottom: 0;
}

.comment-awaiting-moderation {
    color: #d97706;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.comment-actions .reply a,
.comment-actions .edit-link a {
    font-size: 0.825rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.comment-actions .reply a:hover,
.comment-actions .edit-link a:hover {
    color: var(--accent-dark);
}

.no-comments {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Comments Pagination */
.comments-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.comments-pagination-prev a,
.comments-pagination-next a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.comments-pagination-prev a:hover,
.comments-pagination-next a:hover {
    color: var(--accent-dark);
}

/* Comment Form */
.alraed-comment-form {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.comment-reply-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.comment-notes {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.comment-notes .required {
    color: #dc2626;
    font-weight: 700;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 1.25rem;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.comment-form-author label .required,
.comment-form-email label .required {
    color: #dc2626;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--surface);
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(234,88,12,0.1);
}

.comment-form-comment textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--surface);
    resize: vertical;
    min-height: 140px;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(234,88,12,0.1);
}

.alraed-comment-form .submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--surface);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 2.25rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(234,88,12,0.18);
}

.alraed-comment-form .submit:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(234,88,12,0.3);
}

/* ============================================
   24. Buttons
   ============================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--surface);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(234,88,12,0.18);
    text-decoration: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(234,88,12,0.3);
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--surface);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-navy:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(28,25,23,0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(234,88,12,0.04);
    transform: translateY(-1px);
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--surface);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-white-outline:hover {
    background: var(--surface);
    color: var(--primary);
    border-color: var(--surface);
    transform: translateY(-1px);
}

/* ============================================
   Archive Description
   ============================================ */
.archive-description {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-top: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   Error 404 Page
   ============================================ */
.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem;
}

.error-404 h1 {
    font-size: 6rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.error-404 p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ============================================
   Page Links (wp_link_pages)
   ============================================ */
.page-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1rem 0;
}

.page-links span,
.page-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.page-links a {
    color: var(--primary);
    border: 1px solid var(--border);
}

.page-links a:hover {
    background: var(--accent);
    color: var(--surface);
    border-color: var(--accent);
}

.page-links > span:first-child {
    color: var(--text-muted);
    font-weight: 500;
    min-width: auto;
    height: auto;
    padding: 0;
}

/* Cancel Comment Reply */
.cancel-comment-reply {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cancel-comment-reply a {
    color: var(--accent);
    font-weight: 600;
}

.cancel-comment-reply a:hover {
    color: var(--accent-dark);
}

/* ============================================
   25. Responsive Breakpoints
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .section {
        padding: 5rem 0;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .top-bar {
        font-size: 0.8rem;
    }

    .top-bar-right {
        gap: 1rem;
    }

    .top-bar-left .schedule-text {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-page-header {
        padding: 3.5rem 0;
        margin-bottom: 50px;
    }

    .blog-page-header h1 {
        font-size: 2rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-prev,
    .nav-next {
        text-align: right;
    }

    .single-featured img {
        height: 240px;
    }

    .single-meta {
        justify-content: flex-start;
        gap: 1rem;
    }

    .share-bar {
        justify-content: flex-start;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-inner {
        height: 4.25rem;
    }

    .site-logo img {
        width: 40px;
        height: 40px;
    }

    .site-logo-text .logo-title {
        font-size: 1rem;
    }

    .site-logo-text .logo-subtitle {
        font-size: 0.65rem;
    }

    .blog-page-header h1 {
        font-size: 1.65rem;
    }

    .blog-page-header p {
        font-size: 1rem;
    }

    .blog-card-content {
        padding: 1.25rem;
    }

    .blog-card h3 {
        font-size: 1.05rem;
    }

    .single-body .post-content {
        font-size: 1rem;
    }

    .single-body .post-content h2 {
        font-size: 1.5rem;
    }

    .single-body .post-content h3 {
        font-size: 1.2rem;
    }

    .comments-list .children {
        margin: 0.75rem 0 0 0;
    }

    .comment-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comment-meta {
        flex-direction: column;
        align-items: center;
    }

    .comment-actions {
        justify-content: center;
    }
}
