html, body { 
    overflow-x: hidden !important; 
    max-width: 100% !important; 
}
.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 4rem; 
    align-items: center; 
}

@media (min-width: 992px) {
    .hero-grid { grid-template-columns: 1.2fr 0.8fr; }
}

@media (max-width: 776px) {
    .hero-grid { gap: 0; }
}

.hero-premium-badge {
    display: inline-flex; align-items: center; gap: 8px; background: #ffffff;
    border: 1px solid #e2e8f0; padding: 8px 16px; border-radius: 50px;
    font-size: 0.85rem; color: #475569; box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    width: fit-content;
}

@media (max-width: 766px) {
    .hero-premium-badge { display: block; line-height: 25px; }
}

.badge-pulse {
    width: 8px; height: 8px; background-color: #3b82f6; border-radius: 50%;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.hero-title { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 900; line-height: 1.2; color: #0f172a; margin: 1rem 0; }
.text-gradient-hero { background: linear-gradient(135deg, #2563eb, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-description { font-size: 1.1rem; color: #475569; line-height: 1.6; }

.hero-feature-pills { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.feature-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; }
.pill-blue { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.pill-green { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

.btn-hero-primary {
    display: inline-flex; align-items: center; background: #16a34a; color: white !important;
    padding: 14px 28px; border-radius: 12px; font-weight: 700; text-decoration: none;
    transition: 0.3s; box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4); width: fit-content;
}

.btn-hero-primary:hover { background: #15803d; transform: translateY(-2px); }
.btn-hero-primary svg { width: 20px; height: 20px; margin-left: 8px; }

.hero-partners { margin-top: 1rem;  border-top: 1px solid rgba(203, 213, 225, 0.5); }
.partners-title { font-size: 0.75rem !important; color: #64748b !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem !important; }
.hero-partners-logos { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.partner-logo { height: 35px !important; width: auto !important; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }
.partner-divider { height: 30px; width: 1px; background: #cbd5e1; }

.hero-single-image-wrapper { position: relative; width: 100%; max-width: 600px; margin: 0 auto; }
.hero-main-image { width: 100%; height: auto; object-fit: cover; border-radius: 24px; border: 1px solid #e2e8f0; }

.glass-card {
    position: absolute; bottom: -20px; left: -20px; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); padding: 12px 20px; border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 3; border: 1px solid rgba(255,255,255,0.5);
    width: max-content; max-width: 250px;
}
.card-inner-flex { display: flex; align-items: center; gap: 12px; }
.card-icon-safe { font-size: 1.5rem; background: #dcfce7; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.card-text-group { display: flex; flex-direction: column; }
.card-title { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin: 0; line-height: 1.2; }
.card-subtitle { font-size: 0.75rem; color: #64748b; margin: 0; }

.animate-float-slow { animation: floatAnim 6s ease-in-out infinite; }
.animate-float-fast { animation: floatAnim 4s ease-in-out infinite reverse; }

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 992px) {
    .hero-single-image-wrapper { margin-top: 3rem; }
    .glass-card { bottom: 20px; left: 10px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
}

.partner-logo { height: 50px !important; width: auto; max-width: 160px !important; object-fit: contain; transition: transform 0.25s ease, opacity 0.25s ease; }
.partner-logo:hover { transform: translateY(-2px); }

@media (max-width: 1024px) {
  .partner-logo { height: 30px; }
}

@media (max-width: 640px) {
  .hero-partners-logos { justify-content: center; gap: 1.25rem; }
  .partner-logo { height: 26px; }
}
.header-logo-image { height: 44px; width: auto; max-width: 220px; display: block; }
@media (max-width: 768px) {
  .header-logo-image { height: 36px; max-width: 180px; }
}
.cs-blog-page-section { background-color: #f8fafc; padding: 6rem 0 8rem 0; min-height: 100vh; }
.cs-blog-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.blog-page-header { text-align: center; margin-bottom: 4rem; }
.blog-page-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; color: #0f172a; letter-spacing: -0.02em; margin-bottom: 1rem; }
.blog-page-desc { font-size: 1.25rem; color: #64748b; }

.cs-blog-layout-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 992px) {
    .cs-blog-layout-grid { grid-template-columns: 1fr 350px; gap: 4rem; }
}

.cs-post-list { display: flex; flex-direction: column; gap: 3rem; }
.cs-post-card { background: #ffffff; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.cs-post-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1); }
.cs-post-thumbnail { width: 100%; height: 350px; overflow: hidden; background: #e2e8f0; }
.cs-post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cs-post-card:hover .cs-post-thumbnail img { transform: scale(1.03); }

.cs-post-content { padding: 2.5rem; }
.cs-post-meta { display: flex; align-items: center; gap: 1.5rem; color: #64748b; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.cs-post-meta span { display: flex; align-items: center; gap: 0.4rem; }
.cs-post-meta svg { width: 18px; height: 18px; color: #0ea5e9; }

.cs-post-title { font-size: 1.75rem; font-weight: 800; line-height: 1.3; margin-bottom: 1rem; }
.cs-post-title a { color: #0f172a; text-decoration: none; transition: color 0.2s ease; }
.cs-post-title a:hover { color: #0ea5e9; }
.cs-post-excerpt { color: #475569; font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; }

.cs-read-more-btn { display: inline-flex; align-items: center; gap: 0.5rem; color: #0ea5e9; font-weight: 700; text-decoration: none; font-size: 1.05rem; transition: color 0.3s ease; }
.cs-read-more-btn:hover { color: #0284c7; }
.cs-read-more-btn svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.cs-read-more-btn:hover svg { transform: translateX(4px); }

.cs-blog-pagination { margin-top: 4rem; display: flex; justify-content: center; }
.cs-blog-pagination .nav-links { display: flex; gap: 0.5rem; }
.cs-blog-pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #ffffff; color: #64748b; border-radius: 0.5rem; font-weight: 700; text-decoration: none; transition: all 0.2s ease; border: 1px solid #e2e8f0; }
.cs-blog-pagination .page-numbers:hover { background: #f1f5f9; color: #0f172a; }
.cs-blog-pagination .page-numbers.current { background: #0ea5e9; color: white; border-color: #0ea5e9; }
.cs-blog-pagination .prev, .cs-blog-pagination .next { width: auto; padding: 0 1rem; }

.sidebar-sticky-wrapper { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 2rem; }
.blog-sidebar-widget { background: #ffffff; padding: 2rem; border-radius: 1.25rem; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03); border: 1px solid rgba(0,0,0,0.03); }
.blog-sidebar-widget .widget-title { font-size: 1.25rem; font-weight: 800; color: #0f172a; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid #f1f5f9; }

.blog-sidebar-widget.widget_search form, .blog-sidebar-widget .wp-block-search__inside-wrapper, .blog-sidebar-widget form.search-form { display: flex; gap: 0.5rem; position: relative; margin: 0; width: 100%; align-items: center; }
.blog-sidebar-widget.widget_search label, .blog-sidebar-widget form.search-form label { width: 100%; margin: 0; }
.blog-sidebar-widget .wp-block-search__label, .blog-sidebar-widget .screen-reader-text, .blog-sidebar-widget label .screen-reader-text { display: none !important; }

.blog-sidebar-widget.widget_search input[type="search"], .blog-sidebar-widget input.search-field, .blog-sidebar-widget .wp-block-search__input { width: 100%; padding: 0.8rem 1.25rem; border-radius: 2rem; border: 1px solid #e2e8f0; background: #f8fafc; font-size: 0.95rem; color: #334155; transition: all 0.3s ease; outline: none; margin: 0; }
.blog-sidebar-widget.widget_search input[type="search"]:focus, .blog-sidebar-widget input.search-field:focus, .blog-sidebar-widget .wp-block-search__input:focus { background: #ffffff; border-color: #0ea5e9; box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15); }

.blog-sidebar-widget.widget_search input[type="submit"], .blog-sidebar-widget .wp-block-search__button, .blog-sidebar-widget button.search-submit { background: #0ea5e9; color: #ffffff; border: none; padding: 0.8rem 1.5rem; border-radius: 2rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; margin: 0; }
.blog-sidebar-widget.widget_search input[type="submit"]:hover, .blog-sidebar-widget .wp-block-search__button:hover, .blog-sidebar-widget button.search-submit:hover { background: #0284c7; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2); }

.blog-sidebar-widget ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.blog-sidebar-widget ul li { padding: 0.85rem 0; border-bottom: 1px solid #f1f5f9; position: relative; }
.blog-sidebar-widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.blog-sidebar-widget ul li a { color: #475569; text-decoration: none; font-weight: 600; display: flex; align-items: center; transition: color 0.2s ease, transform 0.2s ease; }
.blog-sidebar-widget ul li a::before { content: "→"; margin-right: 0.5rem; color: #cbd5e1; font-size: 1.1rem; transition: transform 0.2s ease, color 0.2s ease; }
.blog-sidebar-widget ul li a:hover { color: #0ea5e9; transform: translateX(6px); }
.blog-sidebar-widget ul li a:hover::before { color: #0ea5e9; }

.blog-sidebar-widget .tagcloud, .blog-sidebar-widget .wp-block-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-sidebar-widget .tagcloud a, .blog-sidebar-widget .wp-block-tag-cloud a, .cs-tag-link { display: inline-block; background: #f8fafc; color: #64748b !important; padding: 0.4rem 0.85rem; border-radius: 2rem; font-size: 0.85rem !important; font-weight: 600; text-decoration: none; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.blog-sidebar-widget .tagcloud a:hover, .blog-sidebar-widget .wp-block-tag-cloud a:hover, .cs-tag-link:hover { background: #e0f2fe; color: #0284c7 !important; border-color: #bae6fd; transform: translateY(-2px); }

.cs-single-post-section { background-color: #f8fafc; padding: 2rem 0 2rem 0; }
.cs-single-content-area { background: #ffffff; border-radius: 1.5rem; padding: 3rem 4rem; box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0,0,0,0.03); }

@media (max-width: 768px) {
    .cs-single-content-area { padding: 2rem 1.5rem; }
}

.single-post-header { border-bottom: 2px solid #f1f5f9; padding-bottom: 2rem; margin-bottom: 3rem; }
.single-post-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #0f172a; line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.single-post-meta { display: flex; align-items: center; gap: 1.5rem; color: #64748b; font-weight: 600; }
.single-post-meta span { display: flex; align-items: center; gap: 0.5rem; }
.single-post-meta svg { width: 20px; height: 20px; color: #0ea5e9; flex-shrink: 0; }

.single-post-featured-image { margin-bottom: 3rem; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1); background: #f1f5f9; }
.single-post-featured-image img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 500px; }

.single-post-body { color: #334155; font-size: 1.15rem; line-height: 1.8; }
.single-post-body h2, .single-post-body h3 { color: #0f172a; font-weight: 800; margin: 2.5rem 0 1rem 0; }
.single-post-body p { margin-bottom: 1.5rem; }

.single-post-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid #f1f5f9; }
.single-post-tags .tags-title { font-weight: 800; color: #0f172a; font-size: 1.05rem; }
.single-post-tags .tags-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.single-post-navigation { display: flex; justify-content: space-between; align-items: stretch; gap: 2rem; margin-top: 4rem; padding-top: 3rem; border-top: 2px solid #f1f5f9; }
.nav-prev, .nav-next { flex: 1; display: flex; flex-direction: column; }
.nav-next { align-items: flex-end; text-align: right; }
.nav-label { font-size: 0.85rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.nav-link { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 1.15rem; font-weight: 700; color: #0ea5e9; text-decoration: none; transition: all 0.3s ease; padding: 1rem 1.5rem; background: #f8fafc; border-radius: 1rem; border: 1px solid #e2e8f0; width: 100%; }
.nav-next .nav-link { justify-content: flex-end; }
.nav-link:hover { background: #e0f2fe; color: #0284c7; border-color: #bae6fd; transform: translateY(-2px); }
.nav-link svg { width: 24px; height: 24px; flex-shrink: 0; }

.interland-hero-full-bg { background-image: url('/wp-content/uploads/2026/03/interland-hero-1.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; padding: 140px 20px; display: block !important; background-color: #0f172a !important; }
.interland-hero-full-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(15, 23, 42, 0.1) 100%); z-index: 1; }

.interland-full-container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }
.interland-text-wrapper { max-width: 650px; color: #ffffff; text-align: left; }

.interland-full-badge { display: inline-flex; align-items: center; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 8px 20px; border-radius: 50px; border: 1px rgba(255, 255, 255, 0.2) solid; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 30px; color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.interland-full-badge::before { content: ''; display: inline-block; width: 8px; height: 8px; background-color: #3b82f6; border-radius: 50%; margin-right: 10px; animation: pulse-blue 2s infinite; }

.interland-full-title { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); color: #ffffff !important; }
.interland-full-desc { font-size: 1.25rem; line-height: 1.7; opacity: 0.95; margin-bottom: 40px; font-weight: 400; color: rgba(255,255,255,0.9); }

.interland-full-btn { display: inline-flex; align-items: center; justify-content: center; background: #ffffff; color: #2563eb !important; padding: 18px 40px; border-radius: 50px; font-weight: 800; font-size: 1.125rem; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.3); border: 2px solid #ffffff; }
.interland-full-btn:hover { background: transparent; color: #ffffff !important; transform: translateY(-5px); box-shadow: 0 20px 40px -5px rgba(255, 255, 255, 0.2); }

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

@media (max-width: 992px) {
    .interland-full-title { font-size: 3rem; }
    .interland-hero-full-bg { padding: 100px 20px; }
}

@media (max-width: 768px) {
    .interland-full-title { font-size: 2.2rem; }
    .interland-text-wrapper { text-align: center; margin: 0 auto; }
    .interland-hero-full-bg { padding: 80px 20px; }
    .interland-hero-full-bg::before { background: rgba(15, 23, 42, 0.85); }
    .interland-full-btn { width: 100%; }
}

@media (max-width: 768px) {
    .cs-single-content-area {padding: 1.5rem 1.2rem; width: 100%; max-width: 100vw; box-sizing: border-box; overflow: hidden; }
    .single-post-title { font-size: 1.8rem; word-wrap: break-word; overflow-wrap: break-word; }
    .single-post-body { word-wrap: break-word; overflow-wrap: break-word; }
    .single-post-body img {max-width: 100% !important; height: auto !important; border-radius: 1rem; }
    .single-post-navigation {flex-direction: column; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; }
    .single-post-navigation > div, .single-post-navigation > a, .nav-prev, .nav-next {width: 100%; box-sizing: border-box;}
}