* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}



.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 100px;
    /* padding: 15px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80%;
    font-size: 20px;
    color: #4fc3f7;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.clarity {
    font-size: 28px;
    font-weight: bold;
    color: #666;
    letter-spacing: 2px;
}

.tagline {
    font-size: 12px;
    color: #999;
    margin-top: -2px;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #666;
}

.phone,
.email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone i,
.email i {
    color: #999;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #999;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4fc3f7;
}

.search-icon {
    color: #4fc3f7;
    font-size: 18px;
    cursor: pointer;
}

/* Navigation Menu */
.nav-menu {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 5px;
    justify-content: space-evenly;
    align-items: center;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 15px 0;
}

.menu-items li a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.menu-items li a:hover {
    color: #4fc3f7;
}

.menu-item li a {
    color: white;
}

.menu-items li.dropdown a i {
    font-size: 10px;
}

.menu-items .dropdown-menu {
    display: none;
    position: absolute;
    border-radius: 20px;
    background: #1483ae;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

.menu-items .dropdown.open>.dropdown-menu {
    display: block;
}

.menu-items .dropdown {
    position: relative;
}

.menu-items .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.menu-items .dropdown-menu li a:hover {
    background: #17b9dd;
    border-radius: 10px;
}

/* Donate Button */
.btn-donate {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

.btn-donate i {
    color: #ff6b6b;
}

/* Hero Section */
.hero-section {
    background: url('../images/latest-news-bg.png') center center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: #503444;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 18px;
    padding-bottom: 50px;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    color: black;
}



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

/* Header Section */
.header-section {
    margin-bottom: 30px;
}

.breadcrumb {
    color: #87ceeb;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.title {
    font-size: 48px;
    font-weight: bold;
    color: #5d4e75;
    margin-bottom: 15px;
}

.blue-line {
    width: 60px;
    height: 4px;
    background-color: #87ceeb;
    margin-bottom: 30px;
}

/* Description Section */
.description-section {
    margin-bottom: 40px;
    max-width: 800px;
}

.description-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.hashtag {
    color: #87ceeb;
    font-weight: 600;
}

.contact-info {
    margin-top: 20px;
}

.phone-link, .email-link {
    color: #87ceeb;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover, .email-link:hover {
    text-decoration: underline;
}

/* Calendar Section */
.calendar-section {
    margin-top: 50px;
}

.month-selector {
    margin-bottom: 30px;
}

.month-selector select {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background-color: white;
    color: #666;
    min-width: 200px;
    outline: none;
    cursor: pointer;
}

.month-selector select:focus {
    border-color: #87ceeb;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.nav-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: #87ceeb;
}

.current-month {
    font-size: 22px;
    font-weight: 600;
    color: #87ceeb;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.calendar-header {
    background-color: #f5f5f5;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #666;
}

.calendar-day {
    background-color: white;
    padding: 20px 15px;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-day:hover {
    background-color: #f0f8ff;
}

.calendar-day.other-month {
    color: #ccc;
    background-color: #fafafa;
}

.calendar-day.today {
    background-color: #87ceeb;
    color: white;
    font-weight: bold;
}

.calendar-day.has-event {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.calendar-day.has-event:hover {
    background-color: #fff0b3;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .title {
        font-size: 36px;
    }
    
    .description-section p {
        font-size: 14px;
    }
    
    .calendar-navigation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .calendar-day {
        padding: 15px 8px;
        min-height: 60px;
        font-size: 14px;
    }
    
    .month-selector select {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .calendar-grid {
        font-size: 12px;
    }
    
    .calendar-day {
        padding: 10px 5px;
        min-height: 50px;
    }
}


/* Accessibility Controls */
.accessibility-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zoom-level {
    color: white;
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

.zoom-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.reset-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Container */
.news-archive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
.header-section {
    margin-bottom: 50px;
}

.breadcrumb {
    margin-bottom: 15px;
    font-size: 16px;
}

.breadcrumb-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--secondary-blue);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-gray);
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    margin-bottom: 30px;
}

/* Controls Section */
.controls-section {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
}

.sort-dropdown {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    background-color: var(--white);
    color: var(--text-gray);
    min-width: 200px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 50px;
}

.sort-dropdown:focus {
    border-color: var(--primary-blue);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* News Cards */
.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-fit: cover;
}

/* Card Image Backgrounds */
.love-undivided-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
    height: 100%;
}

.voices-text {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-gray);
    letter-spacing: 1px;
}


.service-illustration,
.telehealth-illustration,
.mental-health-illustration,
.workshop-illustration,
.partnership-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.service-text,
.telehealth-text,
.mental-health-text,
.workshop-text,
.partnership-text {
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

/* Card Content */
.card-content {
    padding: 25px;
    flex-grow: 1;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-excerpt {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

.publish-date {
    font-weight: 500;
}

.category {
    background: var(--primary-blue);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

/* Card Footer */
.card-footer {
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
}

.read-more-btn {
    background: #4fc3f7;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background: #29b6f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
}

.read-more-btn:active {
    transform: translateY(0);
}

/* Pagination */
.pagination-section {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

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

.page-btn {
    padding: 10px 15px;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.page-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* View More Section */
.view-more-section {
    margin: 50px 0 30px;
    text-align: center;
}

.view-more-container {
    max-width: 400px;
    margin: 0 auto;
}

.view-more-btn {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
    background: linear-gradient(135deg, #29b6f6, #0288d1);
}

.view-more-btn:active {
    transform: translateY(-1px);
}

.view-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.view-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateY(2px);
}

.view-more-description {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-archive-container {
        padding: 20px 15px;
    }

    .page-title {
        font-size: 36px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .controls-section {
        justify-content: center;
    }

    .sort-dropdown {
        width: 100%;
        max-width: 300px;
    }

    .accessibility-controls {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
        justify-content: center;
    }

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

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .view-more-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .view-more-section {
        margin: 30px 0 20px;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 20px;
    }

    .card-footer {
        padding: 0 20px 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .page-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .accessibility-controls,
    .pagination-section {
        display: none;
    }

    .news-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--border-light);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0066cc;
        --text-gray: #000;
        --border-light: #666;
    }

    .news-card {
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}






.footer {
    background-color: #e7e7e7;
    color: #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Logo Section */
.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #4db8e8;
}

.logo-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Links Section */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4db8e8;
}

/* Location Sections */
.location-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.location-section p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Social Section */
.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.phone {
    background-color: #4db8e8;
    color: white;
}

.social-icon.email {
    background-color: #4db8e8;
    color: white;
}

.social-icon.instagram {
    background-color: #4db8e8;
    color: white;
}

.social-icon.facebook {
    background-color: #4db8e8;
    color: white;
}

.social-icon.linkedin {
    background-color: #4db8e8;
    color: white;
}

.mailing-list-btn {
    background-color: #4db8e8;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mailing-list-btn:hover {
    background-color: #3da3d3;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a;
    color: #888;
    padding: 20px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-bottom p {
    font-size: 0.85rem;
    text-align: center;
}

/* News Detail Page Styles */
.news-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

/* Header Section */
.header-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    letter-spacing: -1px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4FC3F7, #29B6F6);
    margin-bottom: 30px;
}

.breadcrumb {
    margin-bottom: 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #4FC3F7;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #29B6F6;
}

.back-link i {
    margin-right: 8px;
    font-size: 14px;
}

/* Article Content */
.article-content {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.article-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Poster Section */
.poster-section {
    position: sticky;
    top: 20px;
}

.event-poster {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Text Section */
.text-section {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.intro-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

.intro-text em {
    font-style: italic;
    color: #4FC3F7;
    font-weight: 500;
}

/* Event Details */
.event-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #4FC3F7;
}

.event-details h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.details-list li:last-child {
    margin-bottom: 0;
}

.details-list i {
    color: #4FC3F7;
    width: 20px;
    margin-right: 12px;
    font-size: 14px;
}

.details-list strong {
    color: #333;
    margin-right: 8px;
}

/* Participation Section */
.participation-section {
    margin: 30px 0;
}

.participation-section h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.participation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.participation-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.participation-list li:last-child {
    margin-bottom: 0;
}

.participation-list i {
    color: #4CAF50;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 16px;
    flex-shrink: 0;
}

.participation-list strong {
    color: #333;
}

.fundraising-link {
    color: #4FC3F7;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s ease;
}

.fundraising-link:hover {
    color: #29B6F6;
    text-decoration: underline;
}

/* Closing Text */
.closing-text {
    margin: 30px 0 20px 0;
    font-size: 16px;
    color: #555;
}

.call-to-action {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 20px;
    background: linear-gradient(135deg, #E3F2FD, #F0F8FF);
    border-radius: 8px;
    border-left: 4px solid #4FC3F7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-detail-container {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .poster-section {
        position: static;
        order: -1;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .event-details {
        padding: 20px;
    }
    
    .details-list li {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .details-list i {
        margin-bottom: 5px;
    }
    
    .participation-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .participation-list i {
        margin-bottom: 5px;
    }
    
    .call-to-action {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .fundraising-link {
        font-size: 14px;
    }
}
