/* Modern Blog CSS - Dezick Architects */

/* ========================
   BLOG HERO SECTION
======================== */
.blog-hero {
    background: linear-gradient(135deg, #131212 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="%23094c23" points="1000,100 1000,0 0,0 0,100"/></svg>') no-repeat bottom center;
    background-size: 100% 20px;
    opacity: 0.1;
}

.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.blog-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #094c23, #0a5c2a);
    border-radius: 2px;
}

.blog-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========================
   SEARCH & FILTER SECTION
======================== */
.search-filter-section {
    background: #1a1a1a;
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

.search-filter-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

/* Advanced Search Bar */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    box-shadow: 0 15px 50px rgba(9, 76, 35, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    color: #094c23;
    font-size: 18px;
    margin-right: 15px;
}

#search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 0;
    font-size: 16px;
    color: #333;
    outline: none;
}

#search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-clear {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-clear:hover {
    color: #666;
    background: rgba(0, 0, 0, 0.1);
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-icon {
    color: #094c23;
    font-size: 14px;
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-tab:hover::before {
    left: 100%;
}

.filter-tab:hover,
.filter-tab.active {
    background: #094c23;
    border-color: #094c23;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(9, 76, 35, 0.3);
}

.filter-tab i {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-tab.active .article-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Sort & View Controls */
.sort-view-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sort-dropdown select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 40px 12px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.sort-dropdown select:focus {
    border-color: #094c23;
    background-color: rgba(9, 76, 35, 0.1);
}

.view-toggle {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
}

.view-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: #094c23;
    color: #fff;
    transform: scale(1.05);
}

/* Search Results Info */
.search-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(9, 76, 35, 0.1);
    border: 1px solid rgba(9, 76, 35, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 20px;
}

.results-text {
    color: #fff;
    font-weight: 600;
}

.clear-search {
    background: #094c23;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.clear-search:hover {
    background: #0a5c2a;
    transform: translateY(-1px);
}

/* ========================
   FEATURED ARTICLE SECTION
======================== */
.featured-section {
    background: #111;
    padding: 50px 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-10px);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #094c23, #0a5c2a);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(9, 76, 35, 0.3);
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 20px 0;
    line-height: 1.2;
}

.featured-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-tag {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-tag.sustainable {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
}

.category-tag.technology {
    background: linear-gradient(135deg, #3498db, #74b9ff);
    color: #fff;
}

.category-tag.wellness {
    background: linear-gradient(135deg, #e74c3c, #fd79a8);
    color: #fff;
}

.category-tag.design {
    background: linear-gradient(135deg, #9b59b6, #a29bfe);
    color: #fff;
}

.reading-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #094c23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.publish-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.article-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #094c23;
    color: #fff;
    transform: scale(1.1);
}

.read-article-btn {
    background: linear-gradient(135deg, #094c23, #0a5c2a);
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-article-btn:hover {
    background: linear-gradient(135deg, #0a5c2a, #094c23);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 76, 35, 0.3);
}

/* ========================
   ARTICLES GRID SECTION
======================== */
.articles-main {
    background: #111;
    padding: 50px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.articles-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.article-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(9, 76, 35, 0.3);
}

.articles-grid.list-view .article-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    border-radius: 15px;
}

.articles-grid.list-view .article-card:hover {
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.articles-grid.list-view .card-image {
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover .image-overlay {
    opacity: 1;
}

.quick-read-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-read-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.articles-grid.list-view .card-content {
    padding: 30px;
}

.article-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 15px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.articles-grid.list-view .article-title {
    font-size: 24px;
    margin: 10px 0 15px;
}

.article-card:hover .article-title {
    color: #0a5c2a;
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.articles-grid.list-view .article-excerpt {
    font-size: 16px;
    margin-bottom: 25px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-stats {
    display: flex;
    gap: 20px;
}

.views,
.likes {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========================
   LOAD MORE & PAGINATION
======================== */
.load-more-section {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: linear-gradient(135deg, #094c23, #0a5c2a);
    border: none;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #0a5c2a, #094c23);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(9, 76, 35, 0.3);
}

.pagination-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ========================
   NEWSLETTER SECTION
======================== */
.newsletter-section {
    background: linear-gradient(135deg, #094c23, #0a5c2a);
    padding: 60px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: #fff;
    border: none;
    color: #094c23;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========================
   ARTICLE MODAL
======================== */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 90%;
    margin: 5% auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: #1a1a1a;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b6b;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modal-action-btn:hover {
    background: #094c23;
    color: #fff;
}

.modal-content {
    flex: 1;
    overflow: hidden;
}

.modal-body {
    height: 100%;
    overflow-y: auto;
    padding: 40px;
    font-family: Georgia, serif;
    line-height: 1.8;
}

.modal-body h1 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #444;
    margin: 30px 0 20px;
}

.modal-body p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.modal-body .lead {
    font-size: 22px;
    font-weight: 400;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #094c23;
    border-radius: 0 10px 10px 0;
}

.modal-body blockquote {
    font-size: 20px;
    font-style: italic;
    color: #666;
    margin: 30px 0;
    padding: 20px 30px;
    background: #f8f9fa;
    border-left: 4px solid #094c23;
    border-radius: 0 10px 10px 0;
}

.modal-body ul,
.modal-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.modal-body li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0 30px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.article-category {
    background: #094c23;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.article-date,
.article-time {
    color: #999;
    font-size: 14px;
}

/* ========================
   RESPONSIVE DESIGN
======================== */
@media (max-width: 1200px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 968px) {
    .blog-hero h1 {
        font-size: 36px;
    }
    
    .blog-hero p {
        font-size: 16px;
    }
    
    .search-filter-wrapper {
        gap: 20px;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .sort-view-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .articles-grid.list-view .article-card {
        grid-template-columns: 1fr;
    }
    
    .articles-grid.list-view .card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .search-filter-section {
        padding: 30px 0;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-bar {
        padding: 0 15px;
    }
    
    #search-input {
        padding: 15px 0;
        font-size: 14px;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-tab {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .featured-section {
        padding: 30px 0;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .featured-excerpt {
        font-size: 14px;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .articles-main {
        padding: 30px 0;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 18px;
    }
    
    .article-excerpt {
        font-size: 14px;
    }
    
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-text h3 {
        font-size: 24px;
    }
    
    .modal-container {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body h1 {
        font-size: 28px;
    }
    
    .modal-body h2 {
        font-size: 22px;
    }
    
    .modal-body p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .search-bar {
        padding: 0 12px;
    }
    
    #search-input {
        padding: 12px 0;
        font-size: 14px;
    }
    
    .filter-tab span {
        display: none;
    }
    
    .filter-tab {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .article-count {
        display: none;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .newsletter-text h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-body h1 {
        font-size: 24px;
    }
    
    .modal-body h2 {
        font-size: 20px;
    }
    
    .modal-body p {
        font-size: 15px;
    }
}

/* ========================
   ANIMATION EFFECTS
======================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.article-card,
.featured-article {
    animation: fadeInUp 0.6s ease-out;
}

.filter-tab {
    animation: slideInRight 0.4s ease-out;
}

.filter-tab:nth-child(1) { animation-delay: 0s; }
.filter-tab:nth-child(2) { animation-delay: 0.1s; }
.filter-tab:nth-child(3) { animation-delay: 0.2s; }
.filter-tab:nth-child(4) { animation-delay: 0.3s; }
.filter-tab:nth-child(5) { animation-delay: 0.4s; }

/* ========================
   UTILITY CLASSES
======================== */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.no-results p {
    font-size: 16px;
    margin-bottom: 20px;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
} 