/*
Theme Name: SafePlay Theme
Theme URI: 
Description: 청소년 사이버 폭력 대응과 안전한 온라인 활동을 위한 전문 정보를 제공하는 테마입니다.
Version: 2.0.1
Author: SafePlay Studio
Text Domain: sfs-theme
License: GNU General Public License v2 or later
*/

/* ===== RESET ALL - Force Override ===== */
html body,
html body * {
    box-sizing: border-box !important;
}

html body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #475569 !important;
    background: #FFFFFF !important;
    -webkit-font-smoothing: antialiased !important;
    overflow-x: hidden !important;
}

/* ===== CSS Variables ===== */
:root {
    --sfs-bg-white: #FFFFFF;
    --sfs-bg-light: #F8FAFC;
    --sfs-text-dark: #0F172A;
    --sfs-text-secondary: #475569;
    --sfs-text-muted: #64748B;
    --sfs-accent-primary: #1E3A8A;
    --sfs-accent-secondary: #3B82F6;
    --sfs-accent-light: #DBEAFE;
    --sfs-accent-green: #10B981;
    --sfs-border: #E2E8F0;
    --sfs-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --sfs-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --sfs-radius-sm: 6px;
    --sfs-radius-md: 10px;
    --sfs-radius-lg: 16px;
    --sfs-radius-xl: 24px;
}

/* ===== Force Light Theme ===== */
html body,
html body.sfs-front,
html body.home,
html body.single,
html body.archive,
html body.category {
    background-color: #FFFFFF !important;
    color: #475569 !important;
}

/* ===== Hide Old Theme Elements ===== */
.flavor-flavor,
.flavor-flavor-flavor,
.flavor-flavor-flavor-flavor,
#flavor-flavor,
[class*="flavor-"],
[id*="flavor-"],
.flavor-flavor header,
.flavor-flavor footer,
.flavor-flavor .flavor-flavor-content,
.flavor-flavor-flavor-main-wrap,
.flavor-flavor-flavor-header,
.flavor-flavor-flavor-footer,
.flavor-flavor-flavor-subscribe,
.flavor-flavor-flavor-menu,
.flavor-flavor-flavor-hero,
.flavor-flavor-flavor-posts,
.flavor-flavor-flavor-card,
.flavor-flavor-flavor-btn,
.flavor-flavor-flavor-nav,
.flavor-flavor-header-inner,
.flavor-flavor-subscribe-btn,
.flavor-flavor-search-btn,
[class*="flavor-flavor-"],
[class*="flavor-flavor-flavor-"],
[class*="flavor-flavor-flavor-flavor-"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* ===== Container ===== */
html body .sfs-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

html body .sfs-section {
    padding: 5rem 0 !important;
    background: #FFFFFF !important;
}

html body .sfs-section-light {
    background: #F8FAFC !important;
}

/* ===== Typography ===== */
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
    font-family: 'Pretendard', -apple-system, sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #0F172A !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
}

html body h1 { font-size: clamp(2rem, 5vw, 3rem) !important; }
html body h2 { font-size: clamp(1.75rem, 4vw, 2.5rem) !important; }
html body h3 { font-size: clamp(1.25rem, 3vw, 1.5rem) !important; }

html body p {
    margin-bottom: 1rem !important;
    color: #475569 !important;
}

html body a {
    color: #1E3A8A !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

html body a:hover {
    color: #3B82F6 !important;
}

html body ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* ===== Tag ===== */
html body .sfs-tag {
    display: inline-block !important;
    padding: 0.375rem 1rem !important;
    background: #DBEAFE !important;
    color: #1E3A8A !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 9999px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 1rem !important;
}

/* ===== Buttons ===== */
html body .sfs-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.875rem 1.75rem !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: none !important;
    text-decoration: none !important;
}

html body .sfs-btn-primary {
    background: #1E3A8A !important;
    color: #FFFFFF !important;
}

html body .sfs-btn-primary:hover {
    background: #3B82F6 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

html body .sfs-btn-outline {
    background: transparent !important;
    color: #1E3A8A !important;
    border: 2px solid #1E3A8A !important;
}

html body .sfs-btn-outline:hover {
    background: #1E3A8A !important;
    color: #FFFFFF !important;
}

html body .sfs-btn-white {
    background: #FFFFFF !important;
    color: #1E3A8A !important;
}

html body .sfs-btn svg {
    width: 18px !important;
    height: 18px !important;
}

/* ===== Header ===== */
html body .sfs-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid #E2E8F0 !important;
    height: auto !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

html body .sfs-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 72px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

html body .sfs-logo {
    font-weight: 700 !important;
    font-size: 1.375rem !important;
    color: #1E3A8A !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
}

html body .sfs-logo:hover {
    color: #1E3A8A !important;
}

html body .sfs-nav {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    position: static !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

html body .sfs-nav-link {
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: #475569 !important;
    text-decoration: none !important;
    padding: 0.5rem 0 !important;
    display: inline-block !important;
    border: none !important;
}

html body .sfs-nav-link:hover,
html body .sfs-nav-link.active {
    color: #1E3A8A !important;
}

html body .sfs-nav-cta {
    padding: 0.625rem 1.5rem !important;
    background: #1E3A8A !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
}

html body .sfs-nav-cta:hover {
    background: #3B82F6 !important;
    color: #FFFFFF !important;
}

/* Mobile Menu Toggle */
html body .sfs-menu-toggle {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 10px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
}

html body .sfs-menu-toggle span {
    width: 22px !important;
    height: 2px !important;
    background: #0F172A !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

html body .sfs-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}

html body .sfs-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}

html body .sfs-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
}

html body .sfs-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.4) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 9998 !important;
}

html body .sfs-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== Hero Section ===== */
html body .sfs-hero {
    padding: 140px 0 80px !important;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

html body .sfs-hero::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -20% !important;
    width: 60% !important;
    height: 150% !important;
    background: radial-gradient(circle, #DBEAFE 0%, transparent 70%) !important;
    pointer-events: none !important;
}

html body .sfs-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    position: relative !important;
    z-index: 1 !important;
}

html body .sfs-hero-content {
    max-width: 560px !important;
}

html body .sfs-hero-title {
    margin-bottom: 1.5rem !important;
}

html body .sfs-hero-title span {
    color: #1E3A8A !important;
}

html body .sfs-hero-desc {
    font-size: 1.125rem !important;
    color: #475569 !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
}

html body .sfs-hero-btns {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

html body .sfs-hero-visual {
    position: relative !important;
}

html body .sfs-hero-img {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1) !important;
}

html body .sfs-hero-img img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
}

html body .sfs-hero-badge {
    position: absolute !important;
    bottom: -1rem !important;
    left: -1rem !important;
    padding: 1rem 1.5rem !important;
    background: #FFFFFF !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

html body .sfs-hero-badge-icon {
    width: 48px !important;
    height: 48px !important;
    background: #DBEAFE !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
}

html body .sfs-hero-badge-text strong {
    display: block !important;
    font-size: 1.25rem !important;
    color: #0F172A !important;
}

html body .sfs-hero-badge-text span {
    font-size: 0.8125rem !important;
    color: #64748B !important;
}

/* ===== Features Section ===== */
html body .sfs-features-header {
    text-align: center !important;
    max-width: 640px !important;
    margin: 0 auto 3rem !important;
}

html body .sfs-features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

html body .sfs-feature-card {
    padding: 2rem !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    transition: all 0.4s ease !important;
    text-align: center !important;
}

html body .sfs-feature-card:hover {
    border-color: #3B82F6 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

html body .sfs-feature-icon {
    width: 64px !important;
    height: 64px !important;
    margin: 0 auto 1.25rem !important;
    background: #DBEAFE !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.75rem !important;
}

html body .sfs-feature-title {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: #0F172A !important;
}

html body .sfs-feature-desc {
    font-size: 0.9375rem !important;
    color: #64748B !important;
    margin: 0 !important;
    line-height: 1.7 !important;
}

/* ===== Services Section ===== */
html body .sfs-services-header {
    text-align: center !important;
    max-width: 640px !important;
    margin: 0 auto 3rem !important;
}

html body .sfs-services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
}

html body .sfs-service-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: all 0.4s ease !important;
}

html body .sfs-service-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

html body .sfs-service-img {
    height: 200px !important;
    overflow: hidden !important;
}

html body .sfs-service-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

html body .sfs-service-card:hover .sfs-service-img img {
    transform: scale(1.05) !important;
}

html body .sfs-service-body {
    padding: 1.5rem !important;
}

html body .sfs-service-title {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: #0F172A !important;
}

html body .sfs-service-desc {
    font-size: 0.875rem !important;
    color: #64748B !important;
    margin: 0 !important;
}

/* ===== Posts Section ===== */
html body .sfs-posts-header {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    margin-bottom: 2.5rem !important;
}

html body .sfs-posts-more {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: #1E3A8A !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
}

html body .sfs-posts-more svg {
    width: 16px !important;
    height: 16px !important;
}

html body .sfs-posts-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

html body .sfs-post-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
}

html body .sfs-post-card:hover {
    border-color: #CBD5E1 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

html body .sfs-post-card a {
    display: block !important;
    color: inherit !important;
    text-decoration: none !important;
}

html body .sfs-post-thumb {
    position: relative !important;
    aspect-ratio: 16/10 !important;
    overflow: hidden !important;
    background: #F8FAFC !important;
}

html body .sfs-post-thumb > div {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.5rem !important;
}

html body .sfs-post-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

html body .sfs-post-card:hover .sfs-post-thumb img {
    transform: scale(1.05) !important;
}

html body .sfs-post-cat {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    padding: 0.25rem 0.75rem !important;
    background: #1E3A8A !important;
    color: #FFFFFF !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
}

html body .sfs-post-body {
    padding: 1.5rem !important;
}

html body .sfs-post-meta {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-size: 0.8125rem !important;
    color: #64748B !important;
    margin-bottom: 0.75rem !important;
}

html body .sfs-post-title {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
    color: #0F172A !important;
}

html body .sfs-post-card:hover .sfs-post-title {
    color: #1E3A8A !important;
}

html body .sfs-post-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #1E3A8A !important;
    margin-top: 0.5rem !important;
}

/* ===== About Section ===== */
html body .sfs-about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
}

html body .sfs-about-img {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

html body .sfs-about-img img {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
}

html body .sfs-about-content {
    max-width: 520px !important;
}

html body .sfs-about-content h2 {
    margin-bottom: 1.25rem !important;
}

html body .sfs-about-text {
    margin-bottom: 1.5rem !important;
}

html body .sfs-about-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
}

html body .sfs-about-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    font-size: 0.9375rem !important;
    color: #1E293B !important;
}

html body .sfs-about-list li::before {
    content: '✓' !important;
    min-width: 22px !important;
    height: 22px !important;
    background: #10B981 !important;
    color: white !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 2px !important;
}

/* ===== CTA Section ===== */
html body .sfs-cta {
    background: #1E3A8A !important;
    padding: 5rem 0 !important;
}

html body .sfs-cta-inner {
    text-align: center !important;
    max-width: 640px !important;
    margin: 0 auto !important;
}

html body .sfs-cta-title {
    color: #FFFFFF !important;
    margin-bottom: 1rem !important;
}

html body .sfs-cta-desc {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.0625rem !important;
    margin-bottom: 2rem !important;
}

html body .sfs-cta-btns {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

/* ===== Footer ===== */
html body .sfs-footer {
    background: #F8FAFC !important;
    padding: 4rem 0 2rem !important;
    border-top: 1px solid #E2E8F0 !important;
}

html body .sfs-footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
}

html body .sfs-footer-brand {
    max-width: 300px !important;
}

html body .sfs-footer-logo {
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    color: #1E3A8A !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
    text-decoration: none !important;
}

html body .sfs-footer-desc {
    font-size: 0.9375rem !important;
    color: #64748B !important;
    line-height: 1.7 !important;
}

html body .sfs-footer-title {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin-bottom: 1.25rem !important;
    text-transform: uppercase !important;
}

html body .sfs-footer-links li {
    margin-bottom: 0.75rem !important;
}

html body .sfs-footer-links a {
    font-size: 0.9375rem !important;
    color: #64748B !important;
}

html body .sfs-footer-links a:hover {
    color: #1E3A8A !important;
}

html body .sfs-footer-bottom {
    padding-top: 2rem !important;
    border-top: 1px solid #E2E8F0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 0.875rem !important;
    color: #64748B !important;
}

/* ===== Single Post ===== */
html body .sfs-single {
    padding-top: 120px !important;
    padding-bottom: 5rem !important;
    background: #FFFFFF !important;
}

html body .sfs-single-header {
    max-width: 800px !important;
    margin: 0 auto 2.5rem !important;
    text-align: center !important;
}

html body .sfs-single-cat {
    display: inline-block !important;
    padding: 0.25rem 0.875rem !important;
    background: #1E3A8A !important;
    color: #FFFFFF !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    margin-bottom: 1rem !important;
    text-decoration: none !important;
}

html body .sfs-single-title {
    margin-bottom: 1.25rem !important;
}

html body .sfs-single-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.25rem !important;
    color: #64748B !important;
    font-size: 0.9375rem !important;
}

html body .sfs-single-featured {
    max-width: 900px !important;
    margin: 0 auto 3rem !important;
}

html body .sfs-single-featured img {
    width: 100% !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
}

html body .sfs-single-content {
    max-width: 720px !important;
    margin: 0 auto !important;
}

html body .sfs-single-content p {
    font-size: 1.0625rem !important;
    line-height: 1.9 !important;
    margin-bottom: 1.5rem !important;
}

html body .sfs-single-content h2,
html body .sfs-single-content h3 {
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
}

html body .sfs-single-content ul,
html body .sfs-single-content ol {
    margin-bottom: 1.5rem !important;
    padding-left: 1.5rem !important;
}

html body .sfs-single-content li {
    margin-bottom: 0.5rem !important;
    list-style: disc !important;
}

html body .sfs-single-content blockquote {
    margin: 2rem 0 !important;
    padding: 1.5rem 2rem !important;
    background: #F8FAFC !important;
    border-left: 4px solid #1E3A8A !important;
    border-radius: 10px !important;
}

/* ===== Archive ===== */
html body .sfs-archive {
    padding-top: 120px !important;
    background: #FFFFFF !important;
}

html body .sfs-archive-header {
    margin-bottom: 3rem !important;
    text-align: center !important;
}

/* ===== Pagination ===== */
html body .sfs-pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 3rem !important;
}

html body .sfs-pagination a,
html body .sfs-pagination span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 1rem !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 6px !important;
    font-size: 0.9375rem !important;
    color: #475569 !important;
    text-decoration: none !important;
}

html body .sfs-pagination a:hover,
html body .sfs-pagination .current {
    background: #1E3A8A !important;
    border-color: #1E3A8A !important;
    color: #FFFFFF !important;
}

/* ===== WordPress Classes ===== */
html body .alignleft { float: left !important; margin: 0 1.5rem 1rem 0 !important; }
html body .alignright { float: right !important; margin: 0 0 1rem 1.5rem !important; }
html body .aligncenter { display: block !important; margin: 0 auto !important; }
html body .screen-reader-text { clip: rect(1px,1px,1px,1px) !important; position: absolute !important; height: 1px !important; width: 1px !important; overflow: hidden !important; }

/* ===== RESPONSIVE - Tablet ===== */
@media (max-width: 1024px) {
    html body .sfs-hero-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
    html body .sfs-hero-content { max-width: 100% !important; text-align: center !important; }
    html body .sfs-hero-btns { justify-content: center !important; }
    html body .sfs-hero-visual { max-width: 500px !important; margin: 0 auto !important; }
    html body .sfs-features-grid { grid-template-columns: repeat(2, 1fr) !important; }
    html body .sfs-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    html body .sfs-posts-grid { grid-template-columns: repeat(2, 1fr) !important; }
    html body .sfs-about-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
    html body .sfs-about-img { max-width: 500px !important; margin: 0 auto !important; }
    html body .sfs-about-content { max-width: 100% !important; text-align: center !important; }
    html body .sfs-about-list { align-items: center !important; }
    html body .sfs-footer-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ===== RESPONSIVE - Mobile ===== */
@media (max-width: 768px) {
    html { font-size: 15px !important; }
    html body .sfs-container { padding: 0 1rem !important; }
    html body .sfs-section { padding: 3.5rem 0 !important; }
    
    html body .sfs-header-inner { height: 64px !important; }
    html body .sfs-menu-toggle { display: flex !important; }
    
    html body .sfs-nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #FFFFFF !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 80px 1.5rem 2rem !important;
        border-left: 1px solid #E2E8F0 !important;
        transition: right 0.3s ease !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1) !important;
        gap: 0 !important;
        overflow-y: auto !important;
        z-index: 10000 !important;
    }
    
    html body .sfs-nav.active {
        right: 0 !important;
    }
    
    html body .sfs-nav-link {
        padding: 1rem 0 !important;
        border-bottom: 1px solid #E2E8F0 !important;
        font-size: 1rem !important;
        display: block !important;
    }
    
    html body .sfs-nav-cta {
        margin-top: 1.5rem !important;
        text-align: center !important;
        padding: 1rem 1.5rem !important;
    }
    
    html body .sfs-hero { padding: 100px 0 60px !important; }
    html body .sfs-hero-visual { max-width: 100% !important; }
    html body .sfs-hero-badge { position: relative !important; bottom: auto !important; left: auto !important; margin-top: 1.5rem !important; justify-content: center !important; }
    
    html body .sfs-features-grid { grid-template-columns: 1fr !important; }
    html body .sfs-services-grid { grid-template-columns: 1fr !important; }
    html body .sfs-posts-header { flex-direction: column !important; align-items: flex-start !important; gap: 1rem !important; }
    html body .sfs-posts-grid { grid-template-columns: 1fr !important; }
    
    html body .sfs-cta { padding: 3.5rem 0 !important; }
    html body .sfs-cta-btns { flex-direction: column !important; width: 100% !important; }
    html body .sfs-cta-btns .sfs-btn { width: 100% !important; }
    
    html body .sfs-footer { padding: 3rem 0 1.5rem !important; }
    html body .sfs-footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; text-align: center !important; }
    html body .sfs-footer-brand { max-width: 100% !important; }
    html body .sfs-footer-logo { justify-content: center !important; }
    html body .sfs-footer-bottom { flex-direction: column !important; gap: 0.5rem !important; text-align: center !important; }
}

@media (max-width: 375px) {
    html { font-size: 14px !important; }
}
