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

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

.page-betting-news__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #304C89 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
}

.page-betting-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-betting-news__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-betting-news__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue */
}

.page-betting-news__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-betting-news__button--secondary {
    background-color: #0A2463; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-betting-news__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-betting-news__latest-news, .page-betting-news__industry-insights, .page-betting-news__cta-section, .page-betting-news__about-us {
    padding: 60px 0;
}

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

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

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

.page-betting-news__article-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-betting-news__article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-betting-news__article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-betting-news__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-betting-news__article-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-betting-news__article-title a {
    text-decoration: none;
    color: #0A2463;
    transition: color 0.3s ease;
}

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

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

.page-betting-news__read-more {
    display: inline-block;
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-betting-news__read-more:hover {
    color: #0A2463;
    border-color: #0A2463;
}

.page-betting-news__articles-list {
    display: grid;
    gap: 25px;
}

.page-betting-news__list-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-news__list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-betting-news__list-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-betting-news__list-content {
    flex-grow: 1;
}

.page-betting-news__list-title {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 8px;
    line-height: 1.4;
}

.page-betting-news__list-title a {
    text-decoration: none;
    color: #0A2463;
    transition: color 0.3s ease;
}

.page-betting-news__list-title a:hover {
    color: #FFD700;
}

.page-betting-news__list-excerpt {
    font-size: 0.9em;
    color: #666;
}

.page-betting-news__cta-section {
    background-color: #0A2463; /* Dark blue */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

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

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

.page-betting-news__about-us {
    background-color: #F0F2F5;
    padding: 60px 0;
}

.page-betting-news__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-betting-news__hero-title {
        font-size: 2.8em;
    }
    .page-betting-news__section-title {
        font-size: 2.2em;
    }
    .page-betting-news__cta-title {
        font-size: 2.4em;
    }
    .page-betting-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-betting-news__hero-title {
        font-size: 2.4em;
    }
    .page-betting-news__hero-description {
        font-size: 1.1em;
    }
    .page-betting-news__section-title {
        font-size: 2em;
    }
    .page-betting-news__cta-title {
        font-size: 2em;
    }
    .page-betting-news__list-item {
        flex-direction: column;
        text-align: center;
    }
    .page-betting-news__list-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-betting-news__article-title {
        font-size: 1.3em;
    }
    .page-betting-news__list-title {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-betting-news__hero-section {
        padding: 50px 0;
    }
    .page-betting-news__hero-title {
        font-size: 2em;
    }
    .page-betting-news__hero-description {
        font-size: 1em;
    }
    .page-betting-news__section-title {
        font-size: 1.8em;
    }
    .page-betting-news__cta-title {
        font-size: 1.8em;
    }
    .page-betting-news__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-news__article-image {
        height: 180px;
    }
    .page-betting-news__article-content {
        padding: 20px;
    }
    .page-betting-news__list-image {
        width: 100%;
        height: 150px;
    }
}