/* style/news.css */
.page-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-news__hero {
    background: linear-gradient(135deg, #3A005B, #6A008B);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: page-news-float 10s ease-in-out infinite;
}

.page-news__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: page-news-float 12s ease-in-out infinite reverse;
}

.page-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-news__hero-subtitle a {
    color: #FFD700;
    text-decoration: underline;
}

.page-news__hero-subtitle a:hover {
    color: #fff;
}

.page-news__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
}

.page-news__btn--primary {
    background-color: #FFD700;
    color: #3A005B;
    border: 2px solid #FFD700;
}

.page-news__btn--primary:hover {
    background-color: #e6c200;
    color: #2a0040;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-news__articles, .page-news__related-articles {
    padding: 60px 0;
    background-color: #fff;
}

.page-news__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #3A005B;
    position: relative;
}

.page-news__section-title .highlight {
    color: #FFD700;
}

.page-news__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-news__article-grid, .page-news__related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news__article-card, .page-news__related-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__article-card:hover, .page-news__related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-news__article-img, .page-news__related-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-news__article-content {
    padding: 25px;
}

.page-news__article-title, .page-news__related-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #3A005B;
    line-height: 1.3;
}

.page-news__article-title a, .page-news__related-title a {
    color: #3A005B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover, .page-news__related-title a:hover {
    color: #FFD700;
}

.page-news__article-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.page-news__article-excerpt {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-news__article-excerpt a {
    color: #3A005B;
    text-decoration: underline;
}

.page-news__article-excerpt a:hover {
    color: #FFD700;
}

.page-news__read-more {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news__read-more:hover {
    color: #3A005B;
}

.page-news__pagination {
    text-align: center;
    margin-top: 50px;
}

.page-news__pagination-link {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 5px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    color: #3A005B;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.page-news__pagination-link:hover,
.page-news__pagination-link.page-news__pagination-link--active {
    background-color: #FFD700;
    color: #3A005B;
}

.page-news__cta-banner {
    background: #3A005B;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-news__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-news__cta-title .highlight {
    color: #fff;
}

.page-news__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-news__cta-buttons .page-news__btn {
    margin: 0 10px;
}

.page-news__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #3A005B;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-news__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.page-news__floating-btn {
    display: block;
    background-color: #FFD700;
    color: #3A005B;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: page-news-pulse 2s infinite;
}

.page-news__floating-btn:hover {
    background-color: #e6c200;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@keyframes page-news-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes page-news-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, 10px) rotate(10deg); }
    66% { transform: translate(-10px, -10px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@media (max-width: 768px) {
    .page-news__hero-title {
        font-size: 2.5em;
    }

    .page-news__hero-subtitle {
        font-size: 1.1em;
    }

    .page-news__section-title {
        font-size: 2em;
    }

    .page-news__article-grid, .page-news__related-grid {
        grid-template-columns: 1fr;
    }

    .page-news__cta-title {
        font-size: 2.2em;
    }

    .page-news__cta-description {
        font-size: 1em;
    }

    .page-news__cta-buttons .page-news__btn {
        margin: 10px 0;
        width: 100%;
    }

    .page-news__floating-cta {
        bottom: 10px;
        right: 10px;
    }

    .page-news__floating-btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero-title {
        font-size: 2em;
    }

    .page-news__section-title {
        font-size: 1.8em;
    }

    .page-news__cta-title {
        font-size: 1.8em;
    }
}