/* Blog Styles */

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Blog Post Header */
.blog-post-header {
    padding: 3rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.blog-post-header .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.blog-post-category {
    display: inline-block;
    background: #f97316;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .blog-post-title {
        font-size: 3rem;
    }
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Blog Post Content */
.blog-post-content {
    padding: 4rem 0;
}

.blog-post-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334155;
    margin: 2.5rem 0 1.25rem;
    line-height: 1.4;
}

.blog-post-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #475569;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.blog-post-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: #64748b;
    line-height: 1.8;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.blog-post-content strong {
    color: #334155;
    font-weight: 600;
}

.blog-post-content blockquote {
    border-left: 4px solid #f97316;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #64748b;
}

/* Blog Post Image */
.blog-post-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Post Tags */
.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.blog-post-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-tag:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

/* Blog Hero Section */
.blog-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.blog-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-category {
    display: inline-block;
    background: #f97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hero section category badge */
.blog-hero .blog-category {
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

/* Hero Blog Title */
.blog-hero .blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    margin-top: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    max-width: 100%;
    display: block;
}

@media (min-width: 768px) {
    .blog-hero .blog-title {
        font-size: 3.5rem;
    }
}

/* Hero Blog Excerpt */
.blog-hero .blog-excerpt {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.875rem;
    opacity: 0.9;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Ensure meta items are visible in hero */
.blog-hero .blog-meta-item {
    color: white;
    opacity: 0.9;
}

/* Blog Article Layout */
.blog-article {
    padding: 4rem 1rem;
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr 300px;
        gap: 4rem;
    }
}

/* Blog Content */
.blog-content {
    max-width: 800px;
    color: #334155;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.blog-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #f97316;
    border-radius: 2px;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334155;
    margin: 2rem 0 1rem;
}

.blog-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.blog-content ul, .blog-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.blog-content img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-content a {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Table of Contents */
.blog-toc {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    position: sticky;
    top: 2rem;
}

.blog-toc h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.blog-toc li {
    margin-bottom: 0.75rem;
}

.blog-toc a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.blog-toc a:hover {
    color: #f97316;
    border-left-color: #f97316;
    background: rgba(249, 115, 22, 0.05);
}

.blog-toc a.active {
    color: #f97316;
    font-weight: 600;
    border-left-color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Camp Cards */
.camp-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.camp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.camp-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.camp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camp-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.camp-content {
    padding: 2rem;
}

.camp-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.camp-stars {
    display: flex;
    color: #fbbf24;
}

.camp-category {
    font-size: 0.875rem;
    color: #64748b;
}

.camp-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.camp-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.camp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.camp-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.camp-feature i {
    color: #f97316;
    font-size: 1rem;
}

.camp-pricing {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.camp-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.25rem;
    color: #64748b;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
}

.camp-cta {
    display: flex;
    gap: 1rem;
}

.camp-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.camp-btn-primary {
    background: #f97316;
    color: white;
}

.camp-btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.camp-btn-secondary {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
}

.camp-btn-secondary:hover {
    background: #f97316;
    color: white;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.comparison-header {
    background: #f8fafc;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    color: #64748b;
}

.comparison-content {
    padding: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comparison-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 3rem 0;
}

.blog-tag {
    display: inline-block;
    background: #f8fafc;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

/* Author Bio */
.blog-author {
    background: #f8fafc;
    padding: 3rem 0;
}

.blog-author .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-author > .container > .blog-author {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-author-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.blog-author-bio {
    color: #64748b;
    line-height: 1.6;
}

/* Share Buttons */
.blog-share {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 3rem 0;
}

.blog-share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-share-facebook {
    background: #1877f2;
    color: white;
}

.blog-share-twitter {
    background: #1da1f2;
    color: white;
}

.blog-share-linkedin {
    background: #0077b5;
    color: white;
}

.blog-share-whatsapp {
    background: #25d366;
    color: white;
}

.blog-share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.blog-related {
    padding: 4rem 1rem;
    background: #f8fafc;
}

.blog-related .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-related h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-content {
    padding: 1.5rem;
}

.related-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.related-title a {
    color: inherit;
    text-decoration: none;
}

.related-title a:hover {
    color: #f97316;
}

.related-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-link {
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.related-link:hover {
    gap: 1rem;
}

/* Blog Index Styles */
.blog-categories {
    background: #f8fafc;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 0;
}

.categories-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.category-btn:hover {
    border-color: #f97316;
    color: #f97316;
}

.category-btn.active {
    background: #f97316;
    border-color: #f97316;
    color: white;
}


.blog-grid-section {
    padding: 0 1rem 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Featured Post */
.blog-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-featured-title a {
    color: inherit;
    text-decoration: none;
}

.blog-featured-title a:hover {
    color: #f97316;
}

.blog-featured-excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.blog-read-more {
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 1rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #f97316;
}

.blog-card-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-link {
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 1rem;
}

/* Newsletter Section */
.blog-newsletter {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 4rem 1rem;
    color: white;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 1023px) {
    .blog-toc {
        display: none;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-content {
        padding: 2rem;
    }
    
    .blog-featured-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .blog-hero .blog-title {
        font-size: 2rem;
    }
    
    .blog-hero .blog-excerpt {
        font-size: 1rem;
    }
    
    .blog-meta {
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .camp-features {
        grid-template-columns: 1fr;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Missing Styles for Blog Index Page */

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
}

/* Blog Image (for index cards) */
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Blog Content (for index cards) */
.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Blog Title (for index cards) */
.blog-card .blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card .blog-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card .blog-title a:hover {
    color: #f97316;
}

/* Blog Excerpt (for index cards) */
.blog-card .blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Read More Link */
.read-more {
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

/* Blog Meta (for index cards) */
.blog-card .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
}

.blog-card .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card .blog-meta i {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Featured Article */
.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-card.featured .blog-image {
    height: 100%;
    min-height: 350px;
}

.blog-card.featured .blog-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card.featured .blog-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-card.featured .blog-excerpt {
    font-size: 1.125rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    border-color: #f97316;
    color: #f97316;
}

.pagination-btn.active {
    background: #f97316;
    border-color: #f97316;
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 4rem 0;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.newsletter-content {
    margin-bottom: 2rem;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
}

.newsletter-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: #1e293b;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured .blog-image {
        min-height: 250px;
    }
    
    .blog-card.featured .blog-content {
        padding: 2rem;
    }
    
    .blog-card.featured .blog-title {
        font-size: 1.5rem;
    }
}