/* ==========================
   BLOG PAGE STYLES
   Follows Prowse Phillips design system
   ========================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(180deg, #F4F8F5 0%, #ffffff 100%);
    padding: 5rem 2rem 4rem 2rem;
    text-align: center;
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Search */
.blog-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    width: 20px;
    height: 20px;
    color: var(--gray-text);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.search-input::placeholder {
    color: #9CA3AF;
}

/* ==========================
   CATEGORY FILTER SECTION
   ========================== */

.category-section {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    background: #ffffff;
    color: var(--navy-text);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}

/* ==========================
   FEATURED ARTICLE SECTION
   ========================== */

.featured-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header-inline .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 0;
    font-family: 'Inter Tight', sans-serif;
}

/* Featured Article Card */
.featured-article {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #E8F3EA;
    transition: all 0.4s ease;
}

.featured-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.featured-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary-green);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.featured-badge svg {
    width: 16px;
    height: 16px;
}

.featured-content {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    background: rgba(74, 124, 89, 0.1);
    color: var(--primary-green);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.article-date {
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 500;
}

.article-read-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 500;
}

.article-read-time svg {
    width: 14px;
    height: 14px;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-text);
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
}

.featured-excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), #5A8B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-text);
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* ==========================
   ARTICLES GRID SECTION
   ========================== */

.articles-section {
    background: #F8FAFC;
    padding: 5rem 2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Article Card */
.article-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

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

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

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-green);
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.article-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-body .article-meta {
    margin-bottom: 1rem;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--navy-text);
    margin-bottom: 0.75rem;
    font-family: 'Inter Tight', sans-serif;
}

.article-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.article-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.article-link:hover {
    color: var(--primary-green-hover);
}

.article-link:hover svg {
    transform: translateX(4px);
}

/* ==========================
   LOAD MORE SECTION
   ========================== */

.load-more-section {
    text-align: center;
    padding: 2rem 0;
}

.load-more-text {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.load-more-section .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================
   NEWSLETTER SECTION
   ========================== */

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #5A8B6B 100%);
    padding: 5rem 2rem;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.newsletter-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-content {
    color: #ffffff;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
}

.newsletter-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group-horizontal {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: var(--gray-text);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.newsletter-privacy a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.newsletter-privacy a:hover {
    text-decoration: underline;
}

/* ==========================
   BLOG CTA SECTION
   ========================== */

.blog-cta-section {
    background: #F8FAFC;
    padding: 5rem 2rem;
    text-align: center;
}

.blog-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-cta-content .cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-text);
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
}

.blog-cta-content .cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

.blog-cta-content .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ==========================
   BLOG ARTICLE PAGE STYLES
   ========================== */

.blog-article {
    padding: 2rem 0;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-text);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--gray-text);
}

.breadcrumb a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-green);
}

.breadcrumb li[aria-current="page"] {
    color: var(--navy-text);
    font-weight: 500;
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.article-date,
.article-read-time {
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-read-time svg {
    width: 16px;
    height: 16px;
}

/* Article Title */
.article-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Article Excerpt */
.article-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E5E7EB;
}

/* Article Content */
.article-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--navy-text);
}

.article-content h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy-text);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-content h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article-content strong {
    font-weight: 600;
    color: var(--navy-text);
}

.article-content em {
    font-style: italic;
}

.article-content a {
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: var(--dark-green);
}

/* Article Highlight Box */
.article-highlight {
    background: linear-gradient(135deg, #F4F8F5 0%, #E8F3EC 100%);
    border-left: 4px solid var(--primary-green);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.article-highlight h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--navy-text);
}

.article-highlight ul {
    margin-bottom: 0;
}

/* Article Callout */
.article-callout {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.article-callout h3 {
    margin-top: 0;
    font-size: 1.125rem;
    color: #92400E;
}

.article-callout p {
    margin-bottom: 0.5rem;
}

.article-callout ul {
    margin-bottom: 0;
}

/* Timeline Table */
.timeline-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-table thead {
    background: var(--primary-green);
    color: #ffffff;
}

.timeline-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
}

.timeline-table td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.timeline-table tbody tr:last-child td {
    border-bottom: none;
}

.timeline-table tbody tr:hover {
    background: #F9FAFB;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.article-cta h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.875rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.article-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Article Author */
.article-author {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid #E5E7EB;
}

.article-author h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--navy-text);
}

.article-author p {
    margin-bottom: 0;
    color: var(--gray-text);
}

/* Related Articles */
.related-articles {
    margin: 3rem 0;
    padding-top: 3rem;
    border-top: 2px solid #E5E7EB;
}

.related-articles h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 1.5rem;
}

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

.related-card {
    display: block;
    padding: 1.5rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: #ffffff;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.15);
}

.related-card h4 {
    color: var(--navy-text);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-card p {
    color: var(--gray-text);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Social Share */
.article-share {
    margin: 3rem 0;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 12px;
    text-align: center;
}

.article-share h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--navy-text);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */

@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-image {
        min-height: 350px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .newsletter-card {
        gap: 3rem;
    }
}

@media (max-width: 899px) {
    .blog-hero {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }
    
    .blog-hero-title {
        font-size: 2.75rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .category-filter {
        gap: 0.75rem;
    }
    
    .category-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .featured-section,
    .articles-section {
        padding: 4rem 1.5rem;
    }
    
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .section-header-inline .section-title {
        font-size: 2.25rem;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 280px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .featured-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 3rem 1rem 2.5rem 1rem;
    }
    
    .blog-hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .blog-search {
        max-width: 100%;
    }
    
    .search-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .category-section {
        padding: 1.5rem 0;
    }
    
    .category-filter {
        gap: 0.625rem;
        padding: 0 1rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .featured-section,
    .articles-section,
    .blog-cta-section {
        padding: 3rem 1rem;
    }
    
    .section-header-inline .section-title {
        font-size: 2rem;
    }
    
    .featured-image {
        min-height: 240px;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-image {
        height: 200px;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.125rem;
    }
    
    .newsletter-section {
        padding: 3rem 1rem;
    }
    
    .newsletter-card {
        gap: 2rem;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group-horizontal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .blog-cta-content .cta-title {
        font-size: 2rem;
    }
    
    .blog-cta-content .cta-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .blog-cta-content .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-cta-content .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .section-header-inline .section-title {
        font-size: 1.75rem;
    }
    
    .featured-title {
        font-size: 1.35rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .blog-cta-content .cta-title {
        font-size: 1.75rem;
    }
    
    .article-card {
        border-radius: 12px;
    }
    
    .featured-article {
        border-radius: 16px;
    }
}

/* ==========================
   ACCESSIBILITY IMPROVEMENTS
   ========================== */

@media (prefers-reduced-motion: reduce) {
    .featured-article,
    .article-card,
    .category-btn {
        transition: none;
    }
    
    .featured-article:hover,
    .article-card:hover {
        transform: none;
    }
    
    .featured-image img,
    .article-image img {
        transition: none;
    }
    
    .featured-article:hover .featured-image img,
    .article-card:hover .article-image img {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .featured-article,
    .article-card {
        border: 2px solid var(--navy-text);
    }
    
    .category-btn {
        border-width: 2px;
    }
}

/* Focus improvements for keyboard navigation */
.category-btn:focus,
.search-input:focus,
.newsletter-input:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.article-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
    border-radius: 4px;
}

