/* style/resources-safe-gambling-best-practices.css */

.page-resources-safe-gambling-best-practices {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is dark, so text should be light */
    background-color: #000000; /* Matching body background */
}

/* Fixed header spacing - applied to the main content area or hero */
.page-resources-safe-gambling-best-practices__hero-section {
    padding-top: var(--header-offset, 120px);
}

.page-resources-safe-gambling-best-practices__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
    min-height: 500px;
    overflow: hidden;
    background-color: #26A9E0; /* Brand main color for hero, will be overlaid by image */
    color: #ffffff;
}

.page-resources-safe-gambling-best-practices__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-resources-safe-gambling-best-practices__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-resources-safe-gambling-best-practices__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-safe-gambling-best-practices__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-safe-gambling-best-practices__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-resources-safe-gambling-best-practices__content-section {
    padding: 60px 20px;
    background-color: #0d0d0d; /* Slightly lighter dark background for content contrast */
    color: #f0f0f0;
}

.page-resources-safe-gambling-best-practices__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-safe-gambling-best-practices__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.page-resources-safe-gambling-best-practices__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.page-resources-safe-gambling-best-practices__grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-safe-gambling-best-practices__card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards on dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-safe-gambling-best-practices__card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-safe-gambling-best-practices__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    text-align: left;
}

.page-resources-safe-gambling-best-practices__card-text {
    font-size: 1em;
    color: #e0e0e0;
    text-align: left;
}

.page-resources-safe-gambling-best-practices__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}}