/* style/latest-news-responsible-gaming-campaign.css */

.page-latest-news-responsible-gaming-campaign {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-latest-news-responsible-gaming-campaign .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-latest-news-responsible-gaming-campaign .hero-section {
    background: linear-gradient(135deg, #00A86B, #28a745);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-latest-news-responsible-gaming-campaign .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-latest-news-responsible-gaming-campaign .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-latest-news-responsible-gaming-campaign .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-latest-news-responsible-gaming-campaign .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0ffe0; /* Lighter green for readability, contrast ratio against #00A86B is ~4.5:1 */
}

.page-latest-news-responsible-gaming-campaign .hero-actions .btn {
    margin: 0 10px;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.page-latest-news-responsible-gaming-campaign .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #00764b; /* Darker green for contrast, contrast ratio against #FFD700 is ~10.5:1 */
    border: 2px solid #FFD700;
}

.page-latest-news-responsible-gaming-campaign .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-latest-news-responsible-gaming-campaign .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-latest-news-responsible-gaming-campaign .btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-latest-news-responsible-gaming-campaign .hero-image-wrapper {
    display: none; /* Hide image on smaller screens, or adjust as needed */
}

.page-latest-news-responsible-gaming-campaign .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-latest-news-responsible-gaming-campaign section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-latest-news-responsible-gaming-campaign section:nth-of-type(even) {
    background-color: #f0fdf6; /* Light green tint */
}

.page-latest-news-responsible-gaming-campaign .section-title {
    font-size: 2.2em;
    color: #00764b; /* Darker green, contrast ratio against white is ~4.5:1 */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-latest-news-responsible-gaming-campaign .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-latest-news-responsible-gaming-campaign p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #555; /* Dark gray, contrast ratio against white is ~7.5:1 */
    text-align: justify;
}

.page-latest-news-responsible-gaming-campaign strong {
    color: #00764b; /* Darker green */
}

.page-latest-news-responsible-gaming-campaign .image-with-text {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-latest-news-responsible-gaming-campaign .image-with-text .feature-image {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-latest-news-responsible-gaming-campaign .image-with-text p {
    flex: 1;
    min-width: 300px;
}

.page-latest-news-responsible-gaming-campaign .commitment-grid, 
.page-latest-news-responsible-gaming-campaign .tools-grid, 
.page-latest-news-responsible-gaming-campaign .support-grid, 
.page-latest-news-responsible-gaming-campaign .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-news-responsible-gaming-campaign .commitment-item, 
.page-latest-news-responsible-gaming-campaign .tool-item, 
.page-latest-news-responsible-gaming-campaign .support-item, 
.page-latest-news-responsible-gaming-campaign .why-choose-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #00A86B;
}

.page-latest-news-responsible-gaming-campaign .commitment-item:hover, 
.page-latest-news-responsible-gaming-campaign .tool-item:hover, 
.page-latest-news-responsible-gaming-campaign .support-item:hover, 
.page-latest-news-responsible-gaming-campaign .why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-latest-news-responsible-gaming-campaign .commitment-icon, 
.page-latest-news-responsible-gaming-campaign .tool-icon, 
.page-latest-news-responsible-gaming-campaign .support-icon, 
.page-latest-news-responsible-gaming-campaign .why-choose-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-latest-news-responsible-gaming-campaign .commitment-item h3, 
.page-latest-news-responsible-gaming-campaign .tool-item h3, 
.page-latest-news-responsible-gaming-campaign .support-item h3, 
.page-latest-news-responsible-gaming-campaign .why-choose-item h3 {
    font-size: 1.4em;
    color: #00764b; /* Darker green */
    margin-bottom: 15px;
}

.page-latest-news-responsible-gaming-campaign ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-latest-news-responsible-gaming-campaign ul li {
    background-color: #e8f8f0; /* Very light green */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #00A86B;
    border-radius: 5px;
    color: #333;
    font-size: 1.05em;
}

.page-latest-news-responsible-gaming-campaign .tips-list li {
    background-color: #fdfae7; /* Very light gold tint */
    border-left-color: #FFD700;
}

.page-latest-news-responsible-gaming-campaign .btn-text {
    color: #00A86B; /* Emerald Green */
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.page-latest-news-responsible-gaming-campaign .btn-text:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-latest-news-responsible-gaming-campaign .cta-section {
    background: #00764b; /* Darker green, contrast ratio against white is ~4.5:1 */
    color: #fff;
    text-align: center;
    padding: 70px 0;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page-latest-news-responsible-gaming-campaign .cta-section .section-title {
    color: #FFD700; /* Gold, contrast ratio against #00764b is ~4.5:1 */
}

.page-latest-news-responsible-gaming-campaign .cta-section .section-title::after {
    background-color: #e6c200;
}

.page-latest-news-responsible-gaming-campaign .cta-section p {
    font-size: 1.15em;
    margin-bottom: 40px;
    color: #e0ffe0; /* Lighter green, contrast ratio against #00764b is ~4.5:1 */
}

.page-latest-news-responsible-gaming-campaign .cta-actions .btn {
    margin: 0 15px;
}

/* Animation for JS */
.page-latest-news-responsible-gaming-campaign .fade-in-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-latest-news-responsible-gaming-campaign .fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-news-responsible-gaming-campaign .hero-title {
        font-size: 2.8em;
    }
    .page-latest-news-responsible-gaming-campaign .section-title {
        font-size: 2em;
    }
    .page-latest-news-responsible-gaming-campaign .image-with-text .feature-image {
        max-width: 100%;
    }
    .page-latest-news-responsible-gaming-campaign .image-with-text {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-latest-news-responsible-gaming-campaign .hero-section {
        padding: 60px 0;
    }
    .page-latest-news-responsible-gaming-campaign .hero-title {
        font-size: 2.2em;
    }
    .page-latest-news-responsible-gaming-campaign .hero-description {
        font-size: 1em;
    }
    .page-latest-news-responsible-gaming-campaign .hero-actions .btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
    .page-latest-news-responsible-gaming-campaign section {
        padding: 40px 0;
    }
    .page-latest-news-responsible-gaming-campaign .section-title {
        font-size: 1.8em;
    }
    .page-latest-news-responsible-gaming-campaign p, .page-latest-news-responsible-gaming-campaign ul li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-latest-news-responsible-gaming-campaign .hero-title {
        font-size: 1.8em;
    }
    .page-latest-news-responsible-gaming-campaign .section-title {
        font-size: 1.5em;
    }
    .page-latest-news-responsible-gaming-campaign .cta-actions .btn {
        width: 90%;
    }
}