/* ========================================
   BLOG PAGE 2100 - ULTRA PREMIUM DESIGN
   Modern, futuristic styling for blog page
======================================== */

/* ===== HERO SECTION 2100 ===== */
.blog-hero-2100 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
}

/* Background Effects */
.hero-bg-2100 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.hero-gradient-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.02); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

/* Hero Container */
.hero-container-2100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb-2100 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.breadcrumb-2100 a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-2100 a:hover {
    color: #f97316;
}

.breadcrumb-2100 .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.breadcrumb-2100 .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Content */
.hero-content-2100 {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    color: #fb923c;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-badge-2100 .badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.hero-title-2100 {
    margin-bottom: 28px;
}

.hero-title-2100 .title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.1;
}

.hero-title-2100 .title-gradient {
    background: linear-gradient(135deg, #f97316, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-2100 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Hero Search */
.hero-search-2100 {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
}

.hero-search-2100 input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.hero-search-2100 input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-search-2100 button {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-search-2100 button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

/* ===== CATEGORIES SECTION ===== */
.blog-categories-2100 {
    padding: 60px 0 0;
    background: var(--bg-primary);
}

.section-container-2100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.categories-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-chip:hover,
.category-chip.active {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.category-chip i {
    font-size: 0.9rem;
}

/* ===== FEATURED POST SECTION ===== */
.featured-section-2100 {
    padding: 80px 0;
    background: var(--bg-primary);
}

.featured-post-2100 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-post-2100:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.featured-image {
    height: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    animation: shine-effect 4s infinite;
}

@keyframes shine-effect {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.featured-image i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 50px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.featured-meta span i {
    color: #f97316;
}

.featured-category {
    background: rgba(249, 115, 22, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    color: #f97316;
    font-weight: 500;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-content h2:hover {
    color: #f97316;
}

.featured-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

/* ===== BLOG GRID SECTION ===== */
.blog-grid-section-2100 {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-header-2100 {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    color: #f97316;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title-2100 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title-2100 span {
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blog Grid */
.blog-grid-2100 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card-2100 {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blog-card-2100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color, #f97316), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-2100:hover {
    transform: translateY(-10px);
    border-color: var(--card-color, #f97316);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.blog-card-2100:hover::before {
    opacity: 1;
}

.blog-card-2100:nth-child(1) { --card-color: #f97316; }
.blog-card-2100:nth-child(2) { --card-color: #10b981; }
.blog-card-2100:nth-child(3) { --card-color: #3b82f6; }
.blog-card-2100:nth-child(4) { --card-color: #ec4899; }
.blog-card-2100:nth-child(5) { --card-color: #8b5cf6; }
.blog-card-2100:nth-child(6) { --card-color: #06b6d4; }

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-2100:nth-child(2) .blog-card-image { 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2)); 
}
.blog-card-2100:nth-child(3) .blog-card-image { 
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2)); 
}
.blog-card-2100:nth-child(4) .blog-card-image { 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.2)); 
}
.blog-card-2100:nth-child(5) .blog-card-image { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.2)); 
}
.blog-card-2100:nth-child(6) .blog-card-image { 
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(8, 145, 178, 0.2)); 
}

.blog-card-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.blog-card-2100:hover .blog-card-image i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.6);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-card-meta span i {
    color: var(--card-color, #f97316);
    font-size: 0.8rem;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-content h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-2100:hover .blog-card-content h3 {
    color: var(--card-color, #f97316);
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card-author-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--card-color, #f97316), #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-card-author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--card-color, #f97316);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 10px;
}

/* ===== NEWSLETTER SECTION 2100 ===== */
.newsletter-section-2100 {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section-2100::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: #fb923c;
}

.newsletter-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.newsletter-title span {
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #f97316;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 16px 32px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.newsletter-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-note i {
    color: #10b981;
}

/* ===== PAGINATION ===== */
.pagination-2100 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination-2100 a,
.pagination-2100 span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-2100 a:hover {
    border-color: #f97316;
    color: #f97316;
}

.pagination-2100 .active {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: transparent;
    color: white;
}

.pagination-2100 .prev,
.pagination-2100 .next {
    width: auto;
    padding: 0 20px;
}

/* ===== LIGHT THEME SUPPORT ===== */
[data-theme="light"] .blog-hero-2100,
[data-theme="light"] .newsletter-section-2100 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%) !important;
}

[data-theme="light"] .hero-bg-2100 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%) !important;
}

[data-theme="light"] .hero-gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-2 {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-3 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .hero-grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .hero-title-2100 .title-line,
[data-theme="light"] .newsletter-title {
    color: #1e293b !important;
}

[data-theme="light"] .hero-description-2100,
[data-theme="light"] .newsletter-desc {
    color: #64748b !important;
}

[data-theme="light"] .breadcrumb-2100 a {
    color: #64748b;
}

[data-theme="light"] .breadcrumb-2100 .separator {
    color: #94a3b8;
}

[data-theme="light"] .breadcrumb-2100 .current {
    color: #1e293b;
}

[data-theme="light"] .hero-search-2100 {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-search-2100 input {
    color: #1e293b;
}

[data-theme="light"] .hero-search-2100 input::placeholder {
    color: #94a3b8;
}

[data-theme="light"] .category-chip {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light"] .featured-post-2100,
[data-theme="light"] .blog-card-2100 {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light"] .newsletter-form input {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

[data-theme="light"] .newsletter-form input::placeholder {
    color: #94a3b8;
}

[data-theme="light"] .newsletter-note {
    color: #64748b;
}

[data-theme="light"] .pagination-2100 a,
[data-theme="light"] .pagination-2100 span {
    background: #ffffff;
    border-color: #e2e8f0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .blog-grid-2100 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .featured-post-2100 {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .featured-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-hero-2100 {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-search-2100 {
        flex-direction: column;
    }
    
    .hero-search-2100 button {
        width: 100%;
        justify-content: center;
    }
    
    .blog-grid-2100 {
        grid-template-columns: 1fr;
    }
    
    .categories-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-chip {
        flex-shrink: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-container-2100,
    .section-container-2100,
    .newsletter-container {
        padding: 0 1rem;
    }
    
    .featured-content {
        padding: 24px;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}
