/* ========================================
 BLOGS PAGE STYLES - Zonixtec
 Blog-specific styles only (no navbar/footer)
 ======================================== */

:root {
 --primary: #0066ff;
 --primary-dark: #0044cc;
 --secondary: #00f2ff;
 --accent: #ff3366;
 --dark: #050511;
 --dark-light: #0a0a1a;
 --light: #f5f5f5;
 --gray: #888;
 --success: #27ae60;
 --tech-gradien/* ========================================
 BLOGS PAGE STYLES - Zonixtec
 Blog-specific styles only (no navbar/footer)
 ======================================== */

:root {
 --primary: #0066ff;
 --primary-dark: #0044cc;
 --secondary: #00f2ff;
 --accent: #ff3366;
 --dark: #050511;
 --dark-light: #0a0a1a;
 --light: #f5f5f5;
 --gray: #888;
 --success: #27ae60;
 --tech-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: "Poppins", sans-serif;
 background: linear-gradient(135deg, #0f172a, #1e293b);
 color: var(--light);
 line-height: 1.6;
 overflow-x: hidden;
 position: relative;
 min-height: 100vh;
}

html {
 overflow-x: hidden;
}

/* Prevent animation overflow */
main {
 overflow-x: hidden;
 width: 100%;
}

section {
 overflow-x: hidden;
 width: 100%;
}

body::before {
 content: "";
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(
 circle at 10% 20%,
 rgba(37, 99, 235, 0.1) 0%,
 transparent 20%
 ),
 radial-gradient(
 circle at 90% 80%,
 rgba(6, 182, 212, 0.1) 0%,
 transparent 20%
 );
 z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: "Orbitron", sans-serif;
 font-weight: 600;
 margin-bottom: 1rem;
}

.container {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

.section-padding {
 padding: 80px 0;
}

.section-title {
 font-size: 2.5rem;
 text-align: center;
 margin-bottom: 3rem;
 position: relative;
 color: var(--light);
}

.section-title::after {
 content: "";
 position: absolute;
 bottom: -15px;
 left: 50%;
 transform: translateX(-50%);
 width: 80px;
 height: 4px;
 background: var(--tech-gradient);
 border-radius: 2px;
}

.section-title span {
 color: var(--secondary);
 position: relative;
}

.section-title span.pulse {
 animation: pulse 2s infinite;
}

@keyframes pulse {
 0% {
 text-shadow: 0 0 5px var(--secondary);
 }
 50% {
 text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--secondary);
 }
 100% {
 text-shadow: 0 0 5px var(--secondary);
 }
}

.hero-subtitle {
 text-align: center;
 font-size: 1.2rem;
 color: var(--gray);
 margin-bottom: 3rem;
 max-width: 800px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.8;
}

/* ========================================
 BLOG HERO
 ======================================== */

.blog-hero {
 padding-top: 150px;
 padding-bottom: 80px;
 text-align: center;
 position: relative;
 overflow: hidden;
}

.blog-hero::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(
 circle at top right,
 rgba(0, 102, 255, 0.1),
 transparent 70%
 );
 z-index: -1;
}

.blog-hero h1 {
 font-size: 3.5rem;
 margin-bottom: 1.5rem;
 color: var(--light);
}

.blog-hero p {
 font-size: 1.3rem;
 color: var(--gray);
 max-width: 800px;
 margin: 0 auto 2rem;
 line-height: 1.8;
}

.hero-stats {
 display: flex;
 justify-content: center;
 gap: 40px;
 margin-top: 40px;
 flex-wrap: wrap;
}

.stat-item {
 text-align: center;
}

.stat-number {
 font-size: 2.5rem;
 font-weight: 700;
 color: var(--secondary);
 display: block;
 margin-bottom: 8px;
}

.stat-label {
 color: var(--gray);
 font-size: 0.9rem;
}

/* ========================================
 BLOG GRID
 ======================================== */

.blog-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 30px;
 margin-bottom: 60px;
}

.blog-card {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 overflow: hidden;
 border: 1px solid rgba(255, 255, 255, 0.05);
 transition: all 0.3s ease;
}

.blog-card:hover {
 transform: translateY(-10px);
 border-color: var(--primary);
 box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
}

.blog-image {
 height: 200px;
 background: linear-gradient(45deg, var(--primary), var(--dark-light));
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--light);
 font-size: 1.5rem;
 position: relative;
 overflow: hidden;
 font-family: "Orbitron", sans-serif;
 font-weight: 600;
 text-align: center;
 padding: 20px;
}

.blog-image::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(
 45deg,
 rgba(0, 102, 255, 0.3),
 rgba(0, 242, 255, 0.3)
 );
 z-index: 0;
}

.blog-image {
 position: relative;
 z-index: 1;
}

.blog-content {
 padding: 30px;
}

.blog-meta {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-bottom: 15px;
 color: var(--gray);
 font-size: 0.9rem;
 flex-wrap: wrap;
}

.blog-meta span {
 display: flex;
 align-items: center;
 gap: 5px;
}

.blog-meta i {
 color: var(--secondary);
}

.blog-title {
 font-size: 1.5rem;
 color: var(--light);
 margin-bottom: 15px;
 line-height: 1.4;
}

.blog-excerpt {
 color: var(--gray);
 margin-bottom: 20px;
 line-height: 1.6;
}

.read-more {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: var(--secondary);
 text-decoration: none;
 font-weight: 600;
 transition: all 0.3s ease;
}

.read-more:hover {
 gap: 12px;
 color: var(--light);
}

.read-more i {
 transition: transform 0.3s ease;
}

.read-more:hover i {
 transform: translateX(5px);
}

/* ========================================
 BLOG CONTENT
 ======================================== */

.blog-content-full {
 width: 100%;
 margin: 0 auto;
}

.blog-article {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 50px;
 margin-bottom: 40px;
 border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-header {
 margin-bottom: 30px;
 padding-bottom: 20px;
 border-bottom: 2px solid rgba(0, 242, 255, 0.2);
}

.blog-header h1 {
 font-size: 2.5rem;
 color: var(--light);
 margin-bottom: 15px;
 line-height: 1.3;
}

.blog-header-meta {
 display: flex;
 align-items: center;
 gap: 20px;
 color: var(--gray);
 font-size: 0.95rem;
 flex-wrap: wrap;
}

.blog-header-meta span {
 display: flex;
 align-items: center;
 gap: 8px;
}

.blog-header-meta i {
 color: var(--secondary);
}

.blog-body {
 color: var(--gray);
 line-height: 1.8;
}

.blog-body h2 {
 font-size: 1.8rem;
 color: var(--secondary);
 margin: 30px 0 15px;
}

.blog-body h3 {
 font-size: 1.4rem;
 color: var(--light);
 margin: 25px 0 15px;
}

.blog-body p {
 margin-bottom: 20px;
 font-size: 1.1rem;
}

.blog-body ul,
.blog-body ol {
 margin: 20px 0;
 padding-left: 30px;
}

.blog-body li {
 margin-bottom: 10px;
 color: var(--gray);
}

.blog-body strong {
 color: var(--light);
 font-weight: 600;
}

.highlight-box {
 background: rgba(0, 102, 255, 0.1);
 border-left: 4px solid var(--primary);
 padding: 25px;
 margin: 30px 0;
 border-radius: 0 8px 8px 0;
}

.highlight-box p {
 margin: 0;
 color: var(--light);
 font-size: 1.05rem;
 line-height: 1.8;
}

.highlight-box h3 {
 margin-top: 0;
 margin-bottom: 15px;
 color: var(--secondary);
}

.ceo-section {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 40px;
 margin: 40px 0;
 border: 1px solid rgba(255, 255, 255, 0.05);
 position: relative;
}

.ceo-section::before {
 content: "";
 position: absolute;
 top: 0;
 right: 0;
 width: 150px;
 height: 150px;
 background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
 opacity: 0.1;
}

.ceo-quote {
 font-size: 1.5rem;
 font-style: italic;
 margin-bottom: 25px;
 color: var(--secondary);
 position: relative;
}

.ceo-content {
 font-size: 1.1rem;
 color: var(--gray);
 line-height: 1.8;
 margin-bottom: 20px;
}

.ceo-content p {
 margin-bottom: 15px;
}

.ceo-signature {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-top: 30px;
}

.ceo-avatar {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 background: linear-gradient(45deg, var(--primary), var(--secondary));
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.2rem;
 color: var(--dark);
 font-weight: bold;
}

.ceo-info h4 {
 color: var(--secondary);
 margin-bottom: 5px;
}

.ceo-info p {
 color: var(--gray);
 margin: 0;
}

/* ========================================
 NEWSLETTER SECTION
 ======================================== */

.newsletter-section {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 60px;
 margin-top: 60px;
 text-align: center;
 border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-section h2 {
 font-size: 2.2rem;
 color: var(--secondary);
 margin-bottom: 20px;
}

.newsletter-section p {
 color: var(--gray);
 font-size: 1.2rem;
 margin-bottom: 30px;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.8;
}

.newsletter-form {
 display: flex;
 max-width: 500px;
 margin: 0 auto;
 gap: 0;
}

.newsletter-input {
 flex: 1;
 padding: 10px 25px;
 background: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 30px 0 0 30px;
 color: var(--light);
 font-size: 1rem;
 outline: none;
 transition: all 0.3s ease;
}

.newsletter-input:focus {
 border-color: var(--primary);
 background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
 color: var(--gray);
}

.newsletter-btn {
 background: var(--primary);
 color: var(--light);
 border: none;
 padding: 10px 30px;
 border-radius: 0 30px 30px 0;
 cursor: pointer;
 transition: background 0.3s ease;
 font-weight: 600;
 font-size: 1rem;
}

.newsletter-btn:hover {
 background: var(--primary-dark);
}

/* ========================================
 RESPONSIVE STYLES
 ======================================== */

@media (max-width: 1024px) {
 .blog-hero h1 {
 font-size: 2.5rem;
 }

 .blog-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .section-title {
 font-size: 2.2rem;
 }
}

@media (max-width: 768px) {
 .section-padding {
 padding: 30px 0 40px;
 }

 .blog-hero {
 padding-top: 120px;
 padding-bottom: 60px;
 }

 .blog-hero h1 {
 font-size: 1.9rem;
 }

 .blog-hero p {
 font-size: 1.1rem;
 }

 .section-title {
 font-size: 2rem;
 }

 .blog-article {
 padding: 30px 20px;
 }

 .blog-header h1 {
 font-size: 2rem;
 }

 .newsletter-section {
 padding: 40px 20px;
 }

 .newsletter-section h2 {
 font-size: 1.8rem;
 }

 .newsletter-form {
 flex-direction: column;
 gap: 15px;
 }

 .newsletter-input,
 .newsletter-btn {
 border-radius: 30px;
 width: 100%;
 }

 .hero-stats {
 gap: 30px;
 }

 .stat-number {
 font-size: 2rem;
 }
}

@media (max-width: 576px) {
 .blog-hero h1 {
 font-size: 1.5rem;
 }

 .section-title {
 font-size: 1.5rem;
 }

 .blog-grid {
 grid-template-columns: 1fr;
 }

 .blog-header-meta {
 flex-direction: column;
 align-items: flex-start;
 gap: 10px;
 }

 .blog-header h1 {
 font-size: 1.5rem;
 }

 .blog-body h2 {
 font-size: 1.5rem;
 }

 .blog-body h3 {
 font-size: 1.2rem;
 }

 .stat-number {
 font-size: 1.8rem;
 }

 .stat-label {
 font-size: 0.8rem;
 }
}

t: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: "Poppins", sans-serif;
 background: linear-gradient(135deg, #0f172a, #1e293b);
 color: var(--light);
 line-height: 1.6;
 overflow-x: hidden;
 position: relative;
 min-height: 100vh;
}

html {
 overflow-x: hidden;
}

/* Prevent animation overflow */
main {
 overflow-x: hidden;
 width: 100%;
}

section {
 overflow-x: hidden;
 width: 100%;
}

body::before {
 content: "";
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(
 circle at 10% 20%,
 rgba(37, 99, 235, 0.1) 0%,
 transparent 20%
 ),
 radial-gradient(
 circle at 90% 80%,
 rgba(6, 182, 212, 0.1) 0%,
 transparent 20%
 );
 z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: "Orbitron", sans-serif;
 font-weight: 600;
 margin-bottom: 1rem;
}

.container {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

.section-padding {
 padding: 80px 0;
}

.section-title {
 font-size: 2.5rem;
 text-align: center;
 margin-bottom: 3rem;
 position: relative;
 color: var(--light);
}

.section-title::after {
 content: "";
 position: absolute;
 bottom: -15px;
 left: 50%;
 transform: translateX(-50%);
 width: 80px;
 height: 4px;
 background: var(--tech-gradient);
 border-radius: 2px;
}

.section-title span {
 color: var(--secondary);
 position: relative;
}

.section-title span.pulse {
 animation: pulse 2s infinite;
}

@keyframes pulse {
 0% {
 text-shadow: 0 0 5px var(--secondary);
 }
 50% {
 text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--secondary);
 }
 100% {
 text-shadow: 0 0 5px var(--secondary);
 }
}

.hero-subtitle {
 text-align: center;
 font-size: 1.2rem;
 color: var(--gray);
 margin-bottom: 3rem;
 max-width: 800px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.8;
}

/* ========================================
 BLOG HERO
 ======================================== */

.blog-hero {
 padding-top: 150px;
 padding-bottom: 80px;
 text-align: center;
 position: relative;
 overflow: hidden;
}

.blog-hero::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(
 circle at top right,
 rgba(0, 102, 255, 0.1),
 transparent 70%
 );
 z-index: -1;
}

.blog-hero h1 {
 font-size: 3.5rem;
 margin-bottom: 1.5rem;
 color: var(--light);
}

.blog-hero p {
 font-size: 1.3rem;
 color: var(--gray);
 max-width: 800px;
 margin: 0 auto 2rem;
 line-height: 1.8;
}

.hero-stats {
 display: flex;
 justify-content: center;
 gap: 40px;
 margin-top: 40px;
 flex-wrap: wrap;
}

.stat-item {
 text-align: center;
}

.stat-number {
 font-size: 2.5rem;
 font-weight: 700;
 color: var(--secondary);
 display: block;
 margin-bottom: 8px;
}

.stat-label {
 color: var(--gray);
 font-size: 0.9rem;
}

/* ========================================
 BLOG GRID
 ======================================== */

.blog-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 30px;
 margin-bottom: 60px;
}

.blog-card {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 overflow: hidden;
 border: 1px solid rgba(255, 255, 255, 0.05);
 transition: all 0.3s ease;
}

.blog-card:hover {
 transform: translateY(-10px);
 border-color: var(--primary);
 box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
}

.blog-image {
 height: 200px;
 background: linear-gradient(45deg, var(--primary), var(--dark-light));
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--light);
 font-size: 1.5rem;
 position: relative;
 overflow: hidden;
 font-family: "Orbitron", sans-serif;
 font-weight: 600;
 text-align: center;
 padding: 20px;
}

.blog-image::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(
 45deg,
 rgba(0, 102, 255, 0.3),
 rgba(0, 242, 255, 0.3)
 );
 z-index: 0;
}

.blog-image {
 position: relative;
 z-index: 1;
}

.blog-content {
 padding: 30px;
}

.blog-meta {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-bottom: 15px;
 color: var(--gray);
 font-size: 0.9rem;
 flex-wrap: wrap;
}

.blog-meta span {
 display: flex;
 align-items: center;
 gap: 5px;
}

.blog-meta i {
 color: var(--secondary);
}

.blog-title {
 font-size: 1.5rem;
 color: var(--light);
 margin-bottom: 15px;
 line-height: 1.4;
}

.blog-excerpt {
 color: var(--gray);
 margin-bottom: 20px;
 line-height: 1.6;
}

.read-more {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: var(--secondary);
 text-decoration: none;
 font-weight: 600;
 transition: all 0.3s ease;
}

.read-more:hover {
 gap: 12px;
 color: var(--light);
}

.read-more i {
 transition: transform 0.3s ease;
}

.read-more:hover i {
 transform: translateX(5px);
}

/* ========================================
 BLOG CONTENT
 ======================================== */

.blog-content-full {
 width: 100%;
 margin: 0 auto;
}

.blog-article {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 50px;
 margin-bottom: 40px;
 border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-header {
 margin-bottom: 30px;
 padding-bottom: 20px;
 border-bottom: 2px solid rgba(0, 242, 255, 0.2);
}

.blog-header h1 {
 font-size: 2.5rem;
 color: var(--light);
 margin-bottom: 15px;
 line-height: 1.3;
}

.blog-header-meta {
 display: flex;
 align-items: center;
 gap: 20px;
 color: var(--gray);
 font-size: 0.95rem;
 flex-wrap: wrap;
}

.blog-header-meta span {
 display: flex;
 align-items: center;
 gap: 8px;
}

.blog-header-meta i {
 color: var(--secondary);
}

.blog-body {
 color: var(--gray);
 line-height: 1.8;
}

.blog-body h2 {
 font-size: 1.8rem;
 color: var(--secondary);
 margin: 30px 0 15px;
}

.blog-body h3 {
 font-size: 1.4rem;
 color: var(--light);
 margin: 25px 0 15px;
}

.blog-body p {
 margin-bottom: 20px;
 font-size: 1.1rem;
}

.blog-body ul,
.blog-body ol {
 margin: 20px 0;
 padding-left: 30px;
}

.blog-body li {
 margin-bottom: 10px;
 color: var(--gray);
}

.blog-body strong {
 color: var(--light);
 font-weight: 600;
}

.highlight-box {
 background: rgba(0, 102, 255, 0.1);
 border-left: 4px solid var(--primary);
 padding: 25px;
 margin: 30px 0;
 border-radius: 0 8px 8px 0;
}

.highlight-box p {
 margin: 0;
 color: var(--light);
 font-size: 1.05rem;
 line-height: 1.8;
}

.highlight-box h3 {
 margin-top: 0;
 margin-bottom: 15px;
 color: var(--secondary);
}

.ceo-section {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 40px;
 margin: 40px 0;
 border: 1px solid rgba(255, 255, 255, 0.05);
 position: relative;
}

.ceo-section::before {
 content: "";
 position: absolute;
 top: 0;
 right: 0;
 width: 150px;
 height: 150px;
 background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
 opacity: 0.1;
}

.ceo-quote {
 font-size: 1.5rem;
 font-style: italic;
 margin-bottom: 25px;
 color: var(--secondary);
 position: relative;
}

.ceo-content {
 font-size: 1.1rem;
 color: var(--gray);
 line-height: 1.8;
 margin-bottom: 20px;
}

.ceo-content p {
 margin-bottom: 15px;
}

.ceo-signature {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-top: 30px;
}

.ceo-avatar {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 background: linear-gradient(45deg, var(--primary), var(--secondary));
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.2rem;
 color: var(--dark);
 font-weight: bold;
}

.ceo-info h4 {
 color: var(--secondary);
 margin-bottom: 5px;
}

.ceo-info p {
 color: var(--gray);
 margin: 0;
}

/* ========================================
 NEWSLETTER SECTION
 ======================================== */

.newsletter-section {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 60px;
 margin-top: 60px;
 text-align: center;
 border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-section h2 {
 font-size: 2.2rem;
 color: var(--secondary);
 margin-bottom: 20px;
}

.newsletter-section p {
 color: var(--gray);
 font-size: 1.2rem;
 margin-bottom: 30px;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.8;
}

.newsletter-form {
 display: flex;
 max-width: 500px;
 margin: 0 auto;
 gap: 0;
}

.newsletter-input {
 flex: 1;
 padding: 10px 25px;
 background: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 30px 0 0 30px;
 color: var(--light);
 font-size: 1rem;
 outline: none;
 transition: all 0.3s ease;
}

.newsletter-input:focus {
 border-color: var(--primary);
 background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
 color: var(--gray);
}

.newsletter-btn {
 background: var(--primary);
 color: var(--light);
 border: none;
 padding: 10px 30px;
 border-radius: 0 30px 30px 0;
 cursor: pointer;
 transition: background 0.3s ease;
 font-weight: 600;
 font-size: 1rem;
}

.newsletter-btn:hover {
 background: var(--primary-dark);
}

/* ========================================
 RESPONSIVE STYLES
 ======================================== */

@media (max-width: 1024px) {
 .blog-hero h1 {
 font-size: 2.5rem;
 }

 .blog-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .section-title {
 font-size: 2.2rem;
 }
}

@media (max-width: 768px) {
 .section-padding {
 padding: 30px 0 40px;
 }

 .blog-hero {
 padding-top: 120px;
 padding-bottom: 60px;
 }

 .blog-hero h1 {
 font-size: 1.9rem;
 }

 .blog-hero p {
 font-size: 1.1rem;
 }

 .section-title {
 font-size: 2rem;
 }

 .blog-article {
 padding: 30px 20px;
 }

 .blog-header h1 {
 font-size: 2rem;
 }

 .newsletter-section {
 padding: 40px 20px;
 }

 .newsletter-section h2 {
 font-size: 1.8rem;
 }

 .newsletter-form {
 flex-direction: column;
 gap: 15px;
 }

 .newsletter-input,
 .newsletter-btn {
 border-radius: 30px;
 width: 100%;
 }

 .hero-stats {
 gap: 30px;
 }

 .stat-number {
 font-size: 2rem;
 }
}

@media (max-width: 576px) {
 .blog-hero h1 {
 font-size: 1.5rem;
 }

 .section-title {
 font-size: 1.5rem;
 }

 .blog-grid {
 grid-template-columns: 1fr;
 }

 .blog-header-meta {
 flex-direction: column;
 align-items: flex-start;
 gap: 10px;
 }

 .blog-header h1 {
 font-size: 1.5rem;
 }

 .blog-body h2 {
 font-size: 1.5rem;
 }

 .blog-body h3 {
 font-size: 1.2rem;
 }

 .stat-number {
 font-size: 1.8rem;
 }

 .stat-label {
 font-size: 0.8rem;
 }
}
