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

.page-news-gambling-policy-interpretation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-news-gambling-policy-interpretation__hero {
    background: linear-gradient(135deg, #4A0E6B, #805697);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-news-gambling-policy-interpretation__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-news-gambling-policy-interpretation__hero > .page-news-gambling-policy-interpretation__container {
    position: relative;
    z-index: 1;
}

.page-news-gambling-policy-interpretation__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-news-gambling-policy-interpretation__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-news-gambling-policy-interpretation__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #4A0E6B;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-gambling-policy-interpretation__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Content Section */
.page-news-gambling-policy-interpretation__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-news-gambling-policy-interpretation__content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.page-news-gambling-policy-interpretation__main-article {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-news-gambling-policy-interpretation__heading {
    font-size: 2em;
    color: #4A0E6B;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-news-gambling-policy-interpretation__sub-heading {
    font-size: 1.5em;
    color: #6A1A9A;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-news-gambling-policy-interpretation__main-article p {
    margin-bottom: 15px;
    color: #444;
}

.page-news-gambling-policy-interpretation__main-article ul,
.page-news-gambling-policy-interpretation__main-article ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-news-gambling-policy-interpretation__main-article li {
    margin-bottom: 8px;
    color: #555;
}

.page-news-gambling-policy-interpretation__main-article a {
    color: #4A0E6B;
    text-decoration: none;
    font-weight: bold;
}

.page-news-gambling-policy-interpretation__main-article a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-news-gambling-policy-interpretation__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-gambling-policy-interpretation__call-to-action {
    background-color: #4A0E6B;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-news-gambling-policy-interpretation__call-to-action p {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-news-gambling-policy-interpretation__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Sidebar */
.page-news-gambling-policy-interpretation__sidebar {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-news-gambling-policy-interpretation__sidebar-block {
    margin-bottom: 30px;
}

.page-news-gambling-policy-interpretation__sidebar-heading {
    font-size: 1.6em;
    color: #4A0E6B;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.page-news-gambling-policy-interpretation__news-list,
.page-news-gambling-policy-interpretation__benefits-list {
    list-style: none;
    padding: 0;
}

.page-news-gambling-policy-interpretation__news-list li,
.page-news-gambling-policy-interpretation__benefits-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.page-news-gambling-policy-interpretation__news-list li::before {
    content: '▶';
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
}

.page-news-gambling-policy-interpretation__benefits-list li::before {
    content: '✓';
    color: #4A0E6B;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.page-news-gambling-policy-interpretation__sidebar-block a {
    color: #4A0E6B;
    text-decoration: none;
}

.page-news-gambling-policy-interpretation__sidebar-block a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-news-gambling-policy-interpretation__sidebar-cta-button {
    display: block;
    background-color: #FFD700;
    color: #4A0E6B;
    padding: 12px 20px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news-gambling-policy-interpretation__sidebar-cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-news-gambling-policy-interpretation__qr-code {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 5px solid #eee;
    border-radius: 5px;
}

/* Related Articles */
.page-news-gambling-policy-interpretation__related-articles {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-news-gambling-policy-interpretation__article-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-gambling-policy-interpretation__card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-gambling-policy-interpretation__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-news-gambling-policy-interpretation__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-news-gambling-policy-interpretation__card-title {
    font-size: 1.3em;
    color: #4A0E6B;
    padding: 15px 20px 5px;
}

.page-news-gambling-policy-interpretation__card-title a {
    text-decoration: none;
    color: #4A0E6B;
}

.page-news-gambling-policy-interpretation__card-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-news-gambling-policy-interpretation__card-description {
    color: #666;
    padding: 0 20px 15px;
    font-size: 0.95em;
}

.page-news-gambling-policy-interpretation__card-link {
    display: inline-block;
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px 20px;
    transition: color 0.3s ease;
}

.page-news-gambling-policy-interpretation__card-link:hover {
    color: #4A0E6B;
    text-decoration: underline;
}

/* Floating CTA */
.page-news-gambling-policy-interpretation__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.page-news-gambling-policy-interpretation__floating-cta a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: #4A0E6B;
    font-weight: bold;
    font-size: 1.1em;
}

.page-news-gambling-policy-interpretation__floating-cta-image {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-gambling-policy-interpretation__content-grid {
        grid-template-columns: 1fr;
    }
    .page-news-gambling-policy-interpretation__sidebar {
        order: -1; /* Sidebar appears above main content on smaller screens */
    }
    .page-news-gambling-policy-interpretation__title {
        font-size: 2.5em;
    }
    .page-news-gambling-policy-interpretation__subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-news-gambling-policy-interpretation__hero {
        padding: 60px 15px;
    }
    .page-news-gambling-policy-interpretation__title {
        font-size: 2em;
    }
    .page-news-gambling-policy-interpretation__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news-gambling-policy-interpretation__content-section,
    .page-news-gambling-policy-interpretation__related-articles {
        padding: 40px 0;
    }
    .page-news-gambling-policy-interpretation__main-article,
    .page-news-gambling-policy-interpretation__sidebar {
        padding: 20px;
    }
    .page-news-gambling-policy-interpretation__heading {
        font-size: 1.8em;
    }
    .page-news-gambling-policy-interpretation__sub-heading {
        font-size: 1.3em;
    }
    .page-news-gambling-policy-interpretation__card-title {
        font-size: 1.1em;
    }
    .page-news-gambling-policy-interpretation__floating-cta a {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .page-news-gambling-policy-interpretation__floating-cta-image {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .page-news-gambling-policy-interpretation__title {
        font-size: 1.8em;
    }
    .page-news-gambling-policy-interpretation__subtitle {
        font-size: 0.9em;
    }
    .page-news-gambling-policy-interpretation__article-cards {
        grid-template-columns: 1fr;
    }
    .page-news-gambling-policy-interpretation__floating-cta {
        bottom: 10px;
        right: 10px;
    }
    .page-news-gambling-policy-interpretation__floating-cta a {
        font-size: 0.8em;
        padding: 6px 10px;
    }
}