/* style/news.css */

/* Variables for brand colors */
:root {
    --f188bet-primary-color: #11A84E;
    --f188bet-secondary-color: #22C768;
    --f188bet-button-gradient-start: #2AD16F;
    --f188bet-button-gradient-end: #13994A;
    --f188bet-card-bg: #11271B;
    --f188bet-background-color: #08160F;
    --f188bet-text-main: #F2FFF6;
    --f188bet-text-secondary: #A7D9B8;
    --f188bet-border-color: #2E7A4E;
    --f188bet-glow-color: #57E38D;
    --f188bet-gold-color: #F2C14E;
    --f188bet-divider-color: #1E3A2A;
    --f188bet-deep-green: #0A4B2C;
}

.page-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--f188bet-text-main); /* Default text color for the page */
    background-color: var(--f188bet-background-color); /* Page background from custom colors */
    padding-bottom: 50px; /* Add some padding at the bottom */
}

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
    margin-bottom: 50px;
    background-color: var(--f188bet-deep-green); /* Ensure good contrast for hero content */
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-news__hero-image {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for desktop hero */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-news__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover for desktop */
    display: block;
}

.page-news__hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 15px;
    background: linear-gradient(to top, rgba(8, 22, 15, 0.9) 0%, rgba(8, 22, 15, 0) 100%); /* Gradient overlay */
    text-align: center;
    color: var(--f188bet-text-main);
}

.page-news__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    color: var(--f188bet-text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--f188bet-text-secondary);
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* General Button Styles */
.page-news__btn-primary,
.page-news__btn-secondary,
.page-news__read-more {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-news__btn-primary {
    background: var(--f188bet-button-gradient-start); /* Fallback for gradient */
    background: linear-gradient(180deg, var(--f188bet-button-gradient-start) 0%, var(--f188bet-button-gradient-end) 100%);
    color: var(--f188bet-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-news__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    filter: brightness(1.1);
}

.page-news__btn-secondary {
    background: transparent;
    color: var(--f188bet-secondary-color);
    border: 2px solid var(--f188bet-secondary-color);
}

.page-news__btn-secondary:hover {
    background: var(--f188bet-secondary-color);
    color: var(--f188bet-background-color);
    transform: translateY(-2px);
}

.page-news__read-more {
    background: transparent;
    color: var(--f188bet-secondary-color);
    border: 1px solid var(--f188bet-border-color);
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.page-news__read-more:hover {
    background: var(--f188bet-secondary-color);
    color: var(--f188bet-background-color);
    border-color: var(--f188bet-secondary-color);
}

/* Section Titles */
.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--f188bet-text-main);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--f188bet-gold-color);
    border-radius: 2px;
}

.page-news__section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--f188bet-text-secondary);
    font-size: 1.05rem;
}

/* Featured News Section */
.page-news__featured-section {
    margin-bottom: 60px;
    padding-top: 40px;
}

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

.page-news__news-card {
    background-color: var(--f188bet-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}