/* style/betting-news-responsible-gambling.css */

:root {
    --page-betting-news-responsible-gambling-primary-color: #003366;
    --page-betting-news-responsible-gambling-secondary-color: #FFD700;
    --page-betting-news-responsible-gambling-text-color-dark: #333333;
    --page-betting-news-responsible-gambling-text-color-light: #ffffff;
    --page-betting-news-responsible-gambling-bg-light: #f9f9f9;
    --page-betting-news-responsible-gambling-bg-dark: #002244;
    --page-betting-news-responsible-gambling-border-color: #e0e0e0;
}

.page-betting-news-responsible-gambling {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-betting-news-responsible-gambling-text-color-dark);
    background-color: #ffffff;
}

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

.page-betting-news-responsible-gambling__hero {
    background: linear-gradient(135deg, var(--page-betting-news-responsible-gambling-primary-color), var(--page-betting-news-responsible-gambling-bg-dark));
    color: var(--page-betting-news-responsible-gambling-text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-news-responsible-gambling__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-betting-news-responsible-gambling__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-betting-news-responsible-gambling-secondary-color);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-betting-news-responsible-gambling__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
}

.page-betting-news-responsible-gambling__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-betting-news-responsible-gambling__btn--primary {
    background-color: var(--page-betting-news-responsible-gambling-secondary-color);
    color: var(--page-betting-news-responsible-gambling-primary-color);
    border: 2px solid var(--page-betting-news-responsible-gambling-secondary-color);
}

.page-betting-news-responsible-gambling__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-betting-news-responsible-gambling__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-betting-news-responsible-gambling-border-color);
}

.page-betting-news-responsible-gambling__section:last-of-type {
    border-bottom: none;
}

.page-betting-news-responsible-gambling__section--dark {
    background-color: var(--page-betting-news-responsible-gambling-bg-dark);
    color: var(--page-betting-news-responsible-gambling-text-color-light);
}

.page-betting-news-responsible-gambling__section-title {
    font-size: 2.5em;
    color: var(--page-betting-news-responsible-gambling-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-betting-news-responsible-gambling__section-title--light {
    color: var(--page-betting-news-responsible-gambling-secondary-color);
}

.page-betting-news-responsible-gambling__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-betting-news-responsible-gambling__section-description--small {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 20px;
}

.page-betting-news-responsible-gambling__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .page-betting-news-responsible-gambling__content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-betting-news-responsible-gambling__content-block {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-betting-news-responsible-gambling__content-block .page-betting-news-responsible-gambling__section-title {
    font-size: 2em;
    text-align: left;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--page-betting-news-responsible-gambling-primary-color);
}

.page-betting-news-responsible-gambling__content-block p {
    margin-bottom: 15px;
    color: var(--page-betting-news-responsible-gambling-text-color-dark);
}

.page-betting-news-responsible-gambling__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    display: block;
}

.page-betting-news-responsible-gambling__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--page-betting-news-responsible-gambling-text-color-dark);
}

.page-betting-news-responsible-gambling__list li {
    margin-bottom: 10px;
}

.page-betting-news-responsible-gambling__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-news-responsible-gambling__feature-card {
    background-color: var(--page-betting-news-responsible-gambling-primary-color);
    color: var(--page-betting-news-responsible-gambling-text-color-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-betting-news-responsible-gambling__feature-card:hover {
    transform: translateY(-10px);
}

.page-betting-news-responsible-gambling__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(289deg) brightness(108%) contrast(100%); /* Makes the icon white */
}

.page-betting-news-responsible-gambling__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--page-betting-news-responsible-gambling-secondary-color);
}

.page-betting-news-responsible-gambling__feature-card p {
    font-size: 0.95em;
    opacity: 0.9;
    color: var(--page-betting-news-responsible-gambling-text-color-light);
}

.page-betting-news-responsible-gambling__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-news-responsible-gambling__tip-card {
    background-color: var(--page-betting-news-responsible-gambling-bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--page-betting-news-responsible-gambling-border-color);
}

.page-betting-news-responsible-gambling__tip-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-betting-news-responsible-gambling__tip-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--page-betting-news-responsible-gambling-primary-color);
}

.page-betting-news-responsible-gambling__tip-card p {
    font-size: 0.95em;
    color: var(--page-betting-news-responsible-gambling-text-color-dark);
}

.page-betting-news-responsible-gambling__paragraph-bottom {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    font-style: italic;
    color: var(--page-betting-news-responsible-gambling-primary-color);
}

.page-betting-news-responsible-gambling__section--cta {
    background-color: var(--page-betting-news-responsible-gambling-primary-color);
    color: var(--page-betting-news-responsible-gambling-text-color-light);
    text-align: center;
    padding: 80px 0;
}

.page-betting-news-responsible-gambling__btn--secondary {
    background-color: var(--page-betting-news-responsible-gambling-secondary-color);
    color: var(--page-betting-news-responsible-gambling-primary-color);
    border: 2px solid var(--page-betting-news-responsible-gambling-secondary-color);
    margin-top: 30px;
}

.page-betting-news-responsible-gambling__btn--secondary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-betting-news-responsible-gambling__section--commitment {
    background-color: var(--page-betting-news-responsible-gambling-bg-light);
    padding: 60px 0;
    text-align: center;
}

.page-betting-news-responsible-gambling__section--commitment .page-betting-news-responsible-gambling__section-title {
    color: var(--page-betting-news-responsible-gambling-primary-color);
}

.page-betting-news-responsible-gambling__section--commitment p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: var(--page-betting-news-responsible-gambling-text-color-dark);
}

.page-betting-news-responsible-gambling__section--commitment .page-betting-news-responsible-gambling__list {
    list-style: none;
    padding: 0;
    margin: 20px auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-betting-news-responsible-gambling__section--commitment .page-betting-news-responsible-gambling__list li {
    background-color: #ffffff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--page-betting-news-responsible-gambling-secondary-color);
    font-weight: 500;
    color: var(--page-betting-news-responsible-gambling-primary-color);
}

.page-betting-news-responsible-gambling__section--commitment .page-betting-news-responsible-gambling__list li strong {
    color: var(--page-betting-news-responsible-gambling-primary-color);
}

.page-betting-news-responsible-gambling__cta-group {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 600px) {
    .page-betting-news-responsible-gambling__cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

.page-betting-news-responsible-gambling__btn--outline {
    background-color: transparent;
    color: var(--page-betting-news-responsible-gambling-primary-color);
    border: 2px solid var(--page-betting-news-responsible-gambling-primary-color);
}

.page-betting-news-responsible-gambling__btn--outline:hover {
    background-color: var(--page-betting-news-responsible-gambling-primary-color);
    color: var(--page-betting-news-responsible-gambling-text-color-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-betting-news-responsible-gambling__hero-title {
        font-size: 2.5em;
    }
    .page-betting-news-responsible-gambling__section-title {
        font-size: 2em;
    }
    .page-betting-news-responsible-gambling__feature-card,
    .page-betting-news-responsible-gambling__tip-card {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .page-betting-news-responsible-gambling__hero {
        padding: 60px 0;
    }
    .page-betting-news-responsible-gambling__hero-title {
        font-size: 2em;
    }
    .page-betting-news-responsible-gambling__hero-subtitle {
        font-size: 1em;
    }
    .page-betting-news-responsible-gambling__section {
        padding: 40px 0;
    }
    .page-betting-news-responsible-gambling__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-betting-news-responsible-gambling__content-block .page-betting-news-responsible-gambling__section-title {
        font-size: 1.6em;
    }
    .page-betting-news-responsible-gambling__list {
        margin-left: 10px;
    }
    .page-betting-news-responsible-gambling__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-betting-news-responsible-gambling__hero-title {
        font-size: 1.8em;
    }
    .page-betting-news-responsible-gambling__section-title {
        font-size: 1.5em;
    }
    .page-betting-news-responsible-gambling__feature-card,
    .page-betting-news-responsible-gambling__tip-card {
        padding: 20px;
    }
    .page-betting-news-responsible-gambling__feature-icon,
    .page-betting-news-responsible-gambling__tip-icon {
        width: 50px;
        height: 50px;
    }
    .page-betting-news-responsible-gambling__feature-title,
    .page-betting-news-responsible-gambling__tip-title {
        font-size: 1.3em;
    }
}