/* ============================================ */
/*              NEWS PAGE STYLES                */
/* ============================================ */

/* Use existing CSS variables from styles.css */
.news-page {
    background-color: var(--light-grey, #f4f4f4);
    min-height: 100vh;
}

/* ============================================ */
/*              Page Header                     */
/* ============================================ */
.news-header {
    background: linear-gradient(135deg, var(--primary-green, #006400) 0%, var(--dark-grey, #2c3e50) 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.news-header-content h1 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.news-header-content p {
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================ */
/*         Featured Article Hero                */
/* ============================================ */
.featured-article-section {
    max-width: 1200px;
    margin: -40px auto 60px;
    padding: 0 20px;
}

.featured-article {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.featured-article-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

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

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gold, #D4AF37);
    color: var(--dark-grey, #2c3e50);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.featured-article-content {
    padding: 40px;
}

.featured-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.featured-category-badge {
    background: var(--primary-green, #006400);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.featured-article-date {
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-article-content h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 15px;
    line-height: 1.2;
}

.featured-article-content .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.featured-article-content .excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-author-info {
    display: flex;
    flex-direction: column;
}

.featured-author-name {
    font-weight: 700;
    color: var(--dark-grey, #2c3e50);
    font-size: 0.95rem;
}

.featured-author-title {
    font-size: 0.85rem;
    color: #777;
}

.featured-read-time {
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================ */
/*           Category Filter Tabs               */
/* ============================================ */
.category-filter-section {
    background: white;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-tabs {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: var(--primary-green, #006400);
    border-radius: 2px;
}

.category-tab {
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--dark-grey, #2c3e50);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover {
    background: var(--light-grey, #f4f4f4);
    border-color: var(--primary-green, #006400);
}

.category-tab.active {
    background: var(--primary-green, #006400);
    color: white;
    border-color: var(--primary-green, #006400);
}

.category-dropdown-mobile {
    display: none;
    padding: 15px 0;
}

.category-dropdown-mobile select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-grey, #2c3e50);
    background: white;
    cursor: pointer;
}

/* ============================================ */
/*              News List Section               */
/* ============================================ */
.news-list-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.news-container {
    position: relative;
    min-height: 400px;
}

.news-results-info {
    margin-bottom: 30px;
    color: #666;
    font-size: 0.95rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ============================================ */
/*              News Card (List Style)          */
/* ============================================ */
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 200px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-card-image {
    width: 280px;
    min-width: 280px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.news-card:hover .news-card-overlay {
    opacity: 1;
}

.news-card-overlay-text {
    color: white;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.news-category-badge {
    background: var(--primary-green, #006400);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-card-date {
    color: #777;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-content h3 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: var(--primary-green, #006400);
}

.news-card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-author {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-read-time {
    color: #999;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================ */
/*           Empty & Loading States             */
/* ============================================ */
.news-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.news-empty-state i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.news-empty-state h3 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 10px;
}

.news-empty-state p {
    color: #777;
    font-size: 1rem;
    margin-bottom: 30px;
}

.news-loading-state {
    text-align: center;
    padding: 80px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-green, #006400);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.news-loading-state p {
    color: #777;
    font-size: 1rem;
}

/* ============================================ */
/*              Pagination                      */
/* ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-number {
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--dark-grey, #2c3e50);
    border-radius: 8px;
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 45px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled),
.pagination-number:hover:not(.active) {
    background: var(--light-grey, #f4f4f4);
    border-color: var(--primary-green, #006400);
}

.pagination-number.active {
    background: var(--primary-green, #006400);
    color: white;
    border-color: var(--primary-green, #006400);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: #999;
    padding: 10px 5px;
}

/* ============================================ */
/*         Responsive Design - Tablet           */
/* ============================================ */
@media (max-width: 992px) {
    .news-header-content h1 {
        font-size: 2.5rem;
    }

    .featured-article-image {
        height: 350px;
    }

    .featured-article-content h2 {
        font-size: 2rem;
    }

    .news-card {
        height: 180px;
    }

    .news-card-image {
        width: 220px;
        min-width: 220px;
        height: 180px;
    }

    .news-card-content {
        padding: 20px;
    }

    .news-card-content h3 {
        font-size: 1.3rem;
    }
}

/* ============================================ */
/*         Responsive Design - Mobile           */
/* ============================================ */
@media (max-width: 768px) {
    .news-header {
        padding: 40px 20px;
    }

    .news-header-content h1 {
        font-size: 2rem;
    }

    .news-header-content p {
        font-size: 1rem;
    }

    .featured-article-section {
        margin: -30px auto 40px;
    }

    .featured-article-image {
        height: 250px;
    }

    .featured-article-content {
        padding: 25px;
    }

    .featured-article-content h2 {
        font-size: 1.6rem;
    }

    .featured-article-content .subtitle {
        font-size: 1rem;
    }

    .featured-article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Hide category tabs, show dropdown */
    .category-tabs {
        display: none;
    }

    .category-dropdown-mobile {
        display: block;
    }

    .category-filter-section {
        top: 70px;
    }

    .news-list-section {
        padding: 40px 15px;
    }

    /* Stack news cards vertically */
    .news-card {
        flex-direction: column;
        height: auto;
    }

    .news-card-image {
        width: 100%;
        height: 200px;
    }

    .news-card-content {
        padding: 20px;
    }

    .news-card-content h3 {
        font-size: 1.4rem;
    }

    .news-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pagination {
        gap: 5px;
    }

    .pagination-btn,
    .pagination-number {
        padding: 8px 12px;
        font-size: 0.9rem;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .featured-badge {
        top: 15px;
        left: 15px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .news-card-content h3 {
        font-size: 1.2rem;
    }

    .news-card-excerpt {
        font-size: 0.9rem;
    }
}

/* ============================================ */
/*           ARTICLE DETAIL PAGE STYLES         */
/* ============================================ */

.article-page {
    background-color: var(--light-grey, #f4f4f4);
    min-height: 100vh;
}

/* ============================================ */
/*              Breadcrumb Navigation           */
/* ============================================ */
.breadcrumb-section {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb i {
    color: #999;
    font-size: 0.7rem;
}

.breadcrumb span {
    color: var(--dark-grey, #2c3e50);
    font-weight: 600;
}

/* ============================================ */
/*           Article Content Section            */
/* ============================================ */
.article-content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.article-loading {
    text-align: center;
    padding: 100px 20px;
}

.article-loading p {
    color: #777;
    font-size: 1rem;
    margin-top: 20px;
}

/* ============================================ */
/*           Article Not Found                  */
/* ============================================ */
.article-not-found {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.article-not-found i {
    font-size: 80px;
    color: #f39c12;
    margin-bottom: 20px;
}

.article-not-found h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 2rem;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 15px;
}

.article-not-found p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.not-found-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* ============================================ */
/*           Article Container                  */
/* ============================================ */
.article-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ============================================ */
/*           Hero Image                         */
/* ============================================ */
.article-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================ */
/*           Article Body                       */
/* ============================================ */
.article-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 40px;
}

/* ============================================ */
/*           Article Meta                       */
/* ============================================ */
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.article-category-badge {
    background: var(--primary-green, #006400);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-date {
    color: #777;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-read-time {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================ */
/*           Title & Subtitle                   */
/* ============================================ */
.article-title {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-grey, #2c3e50);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.article-subtitle {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark-grey, #2c3e50);
    line-height: 1.5;
    margin-bottom: 35px;
    font-weight: 400;
}

/* ============================================ */
/*           Author Section                     */
/* ============================================ */
.article-author-section {
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 35px;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.article-author-info {
    display: flex;
    flex-direction: column;
}

.article-author-name {
    font-weight: 700;
    color: var(--dark-grey, #2c3e50);
    font-size: 1rem;
    margin-bottom: 3px;
}

.article-author-title {
    font-size: 0.9rem;
    color: #777;
}

/* ============================================ */
/*           Article Text Content               */
/* ============================================ */
.article-text-content {
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

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

.article-text-content h2 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green, #006400);
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
}

.article-text-content h3 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-grey, #2c3e50);
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

.article-text-content strong,
.article-text-content b {
    font-weight: 700;
    color: var(--dark-grey, #2c3e50);
}

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

.article-text-content ul,
.article-text-content ol {
    margin-left: 30px;
    margin-bottom: 1.5em;
}

.article-text-content li {
    margin-bottom: 0.5em;
}

.article-text-content a {
    color: var(--primary-green, #006400);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.article-text-content a:hover {
    border-bottom-color: var(--primary-green, #006400);
}

.article-text-content blockquote {
    border-left: 4px solid var(--primary-gold, #D4AF37);
    padding-left: 25px;
    margin: 2em 0;
    font-style: italic;
    color: #555;
    font-size: 1.15rem;
}

.article-text-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
    display: block;
}

/* ============================================ */
/*       Social Platforms Section               */
/* ============================================ */
.article-social-platforms {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.article-social-platforms h3 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.social-platforms-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: white;
}

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

.platform-link i {
    font-size: 1.1rem;
}

.platform-twitter { background: #1DA1F2; }
.platform-facebook { background: #1877F2; }
.platform-youtube { background: #FF0000; }
.platform-instagram { background: #E4405F; }
.platform-tiktok { background: #000000; }
.platform-linkedin { background: #0A66C2; }

/* ============================================ */
/*           Share Section                      */
/* ============================================ */
.article-share-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.article-share-section h3 {
    font-family: var(--font-header, 'Oswald', sans-serif);
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--dark-grey, #2c3e50);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.article-share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

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

.share-btn i {
    font-size: 1.1rem;
}

.share-twitter { background: #1DA1F2; }
.share-facebook { background: #1877F2; }
.share-linkedin { background: #0A66C2; }
.share-whatsapp { background: #25D366; }
.share-copy { background: #6c757d; }

.copy-success-message {
    margin-top: 15px;
    padding: 12px 20px;
    background: #27ae60;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* ============================================ */
/*         Responsive - Tablet                  */
/* ============================================ */
@media (max-width: 992px) {
    .article-body {
        padding: 40px 30px;
    }

    .article-title {
        font-size: 2.5rem;
    }

    .article-subtitle {
        font-size: 1.2rem;
    }

    .article-text-content {
        font-size: 1.05rem;
    }

    .article-text-content h2 {
        font-size: 1.6rem;
    }

    .article-text-content h3 {
        font-size: 1.3rem;
    }
}

/* ============================================ */
/*         Responsive - Mobile                  */
/* ============================================ */
@media (max-width: 768px) {
    .article-content-section {
        padding: 20px 15px 60px;
    }

    .article-body {
        padding: 30px 20px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-text-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .article-text-content h2 {
        font-size: 1.5rem;
        margin-top: 1.5em;
    }

    .article-text-content h3 {
        font-size: 1.2rem;
    }

    .article-share-buttons,
    .social-platforms-list {
        flex-direction: column;
    }

    .share-btn,
    .platform-link {
        width: 100%;
        justify-content: center;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .article-body {
        padding: 25px 15px;
    }

    .article-title {
        font-size: 1.7rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}