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

.page-news-center__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news-center__hero-section {
    background: linear-gradient(135deg, #B22222, #FFD700);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.page-news-center__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF; /* Ensure high contrast */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-center__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0; /* Slightly off-white for contrast */
}

.page-news-center__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA */
    color: #B22222; /* Dark red text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFD700;
}

.page-news-center__hero-btn:hover {
    background-color: #B22222; /* Dark red on hover */
    color: #FFD700; /* Gold text on hover */
    border-color: #FFD700;
}

.page-news-center__section-title {
    font-size: 2.5em;
    color: #B22222; /* Primary color for titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-news-center__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Secondary color for underline */
    border-radius: 2px;
}

.page-news-center__featured-news, .page-news-center__categories, .page-news-center__latest-articles, .page-news-center__about-sv368 {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-news-center__featured-news:nth-of-type(even), .page-news-center__latest-articles:nth-of-type(even) {
    background-color: #ffffff;
}

.page-news-center__news-grid, .page-news-center__category-list, .page-news-center__articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news-center__news-card, .page-news-center__article-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news-center__news-card:hover, .page-news-center__article-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-center__news-image, .page-news-center__article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-news-center__news-content, .page-news-center__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-news-center__news-title, .page-news-center__article-title {
    font-size: 1.5em;
    color: #B22222; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news-center__news-excerpt, .page-news-center__article-excerpt {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news-center__read-more {
    display: inline-block;
    color: #FFD700; /* Secondary color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.page-news-center__read-more:hover {
    color: #B22222; /* Primary color on hover */
    text-decoration: underline;
}

.page-news-center__category-item {
    background-color: #B22222;
    color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-center__category-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for titles on dark background */
}

.page-news-center__category-description {
    font-size: 1em;
    margin-bottom: 25px;
    color: #F0F0F0;
}

.page-news-center__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA */
    color: #B22222; /* Dark red text for contrast */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFD700;
}

.page-news-center__btn:hover {
    background-color: #B22222; /* Dark red on hover */
    color: #FFD700; /* Gold text on hover */
    border-color: #FFD700;
}

.page-news-center__btn--secondary {
    background-color: #FFD700;
    color: #B22222;
    border-color: #FFD700;
}

.page-news-center__btn--secondary:hover {
    background-color: #FFFFFF;
    color: #B22222;
    border-color: #B22222;
}

.page-news-center__cta-section {
    background: url('[GALLERY:bg:sv368_cockfight_arena,dynamic_background,excitement]') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.page-news-center__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.page-news-center__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-news-center__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0;
}

.page-news-center__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-news-center__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-news-center__btn--outline:hover {
    background-color: #FFD700;
    color: #B22222;
    border-color: #FFD700;
}

.page-news-center__about-sv368 {
    padding: 80px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-news-center__about-text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 25px;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-news-center__hero-title {
        font-size: 2.8em;
    }
    .page-news-center__section-title {
        font-size: 2em;
    }
    .page-news-center__cta-title {
        font-size: 2.2em;
    }
    .page-news-center__news-grid, .page-news-center__category-list, .page-news-center__articles-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news-center__hero-section {
        padding: 80px 0;
    }
    .page-news-center__hero-title {
        font-size: 2.2em;
    }
    .page-news-center__hero-description {
        font-size: 1em;
    }
    .page-news-center__section-title {
        font-size: 1.8em;
    }
    .page-news-center__news-content, .page-news-center__article-content {
        padding: 20px;
    }
    .page-news-center__news-title, .page-news-center__article-title {
        font-size: 1.3em;
    }
    .page-news-center__cta-title {
        font-size: 1.8em;
    }
    .page-news-center__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-news-center__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-news-center__hero-section {
        padding: 60px 0;
    }
    .page-news-center__hero-title {
        font-size: 1.8em;
    }
    .page-news-center__hero-description {
        font-size: 0.9em;
    }
    .page-news-center__section-title {
        font-size: 1.5em;
    }
    .page-news-center__cta-title {
        font-size: 1.5em;
    }
    .page-news-center__btn {
        width: 90%;
    }
}