/* style/gambling-glossary-e-h.css */

.page-gambling-glossary-e-h {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark background */
    background-color: #000000; /* Main background color */
}

.page-gambling-glossary-e-h__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-gambling-glossary-e-h__hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-gambling-glossary-e-h__hero-content {
    flex: 1;
    min-width: 300px;
    padding-left: 20px;
}

.page-gambling-glossary-e-h__hero h1 {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gambling-glossary-e-h__hero p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-gambling-glossary-e-h__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding-right: 20px;
}

.page-gambling-glossary-e-h__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-gambling-glossary-e-h__section {
    padding: 60px 0;
    border-bottom: 1px solid #333;
}

.page-gambling-glossary-e-h__section:last-of-type {
    border-bottom: none;
}

.page-gambling-glossary-e-h__section h2 {
    font-size: 2.2em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-glossary-e-h__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

/* Glossary Term List */
.page-gambling-glossary-e-h__term-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gambling-glossary-e-h__term-item {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-glossary-e-h__term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-gambling-glossary-e-h__term-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-gambling-glossary-e-h__term-item h3 a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gambling-glossary-e-h__term-item h3 a:hover {
    color: #ffe066;
}

.page-gambling-glossary-e-h__term-item p {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.7;
}

.page-gambling-glossary-e-h__term-item p strong {
    color: #FFD700;
}

.page-gambling-glossary-e-h__section-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.page-gambling-glossary-e-h__cta {
    background: linear-gradient(90deg, #000000, #333333);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-glossary-e-h__cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-gambling-glossary-e-h__cta h2 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-gambling-glossary-e-h__cta p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-gambling-glossary-e-h__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-gambling-glossary-e-h__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-gambling-glossary-e-h__button--primary {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
}

.page-gambling-glossary-e-h__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gambling-glossary-e-h__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gambling-glossary-e-h__button--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-2px);
}

.page-gambling-glossary-e-h__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

/* Related Articles Section */
.page-gambling-glossary-e-h__related-articles {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.page-gambling-glossary-e-h__related-articles h2 {
    font-size: 2.2em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-glossary-e-h__related-articles h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

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

.page-gambling-glossary-e-h__article-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-gambling-glossary-e-h__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-gambling-glossary-e-h__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-gambling-glossary-e-h__article-card h3 {
    font-size: 1.3em;
    margin: 20px 20px 10px;
}

.page-gambling-glossary-e-h__article-card h3 a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gambling-glossary-e-h__article-card h3 a:hover {
    color: #ffe066;
}

.page-gambling-glossary-e-h__article-card p {
    font-size: 0.95em;
    color: #cccccc;
    margin: 0 20px 20px;
    flex-grow: 1;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-glossary-e-h__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-gambling-glossary-e-h__hero-content,
    .page-gambling-glossary-e-h__hero-image-wrapper {
        padding: 0 20px;
    }

    .page-gambling-glossary-e-h__hero h1 {
        font-size: 2.2em;
    }

    .page-gambling-glossary-e-h__hero p {
        font-size: 1em;
    }

    .page-gambling-glossary-e-h__cta h2 {
        font-size: 2em;
    }

    .page-gambling-glossary-e-h__cta p {
        font-size: 1.1em;
    }

    .page-gambling-glossary-e-h__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-gambling-glossary-e-h__section h2,
    .page-gambling-glossary-e-h__related-articles h2 {
        font-size: 1.8em;
    }

    .page-gambling-glossary-e-h__term-item h3 {
        font-size: 1.3em;
    }

    .page-gambling-glossary-e-h__term-item p {
        font-size: 0.9em;
    }

    .page-gambling-glossary-e-h__cta h2 {
        font-size: 1.8em;
    }

    .page-gambling-glossary-e-h__cta p {
        font-size: 1em;
    }

    .page-gambling-glossary-e-h__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-gambling-glossary-e-h__button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-gambling-glossary-e-h__hero {
        padding: 40px 0;
    }

    .page-gambling-glossary-e-h__hero h1 {
        font-size: 1.8em;
    }

    .page-gambling-glossary-e-h__hero p {
        font-size: 0.9em;
    }

    .page-gambling-glossary-e-h__section {
        padding: 40px 0;
    }

    .page-gambling-glossary-e-h__section h2,
    .page-gambling-glossary-e-h__related-articles h2 {
        font-size: 1.6em;
    }

    .page-gambling-glossary-e-h__term-list {
        grid-template-columns: 1fr;
    }

    .page-gambling-glossary-e-h__cta {
        padding: 50px 0;
    }

    .page-gambling-glossary-e-h__cta h2 {
        font-size: 1.6em;
    }

    .page-gambling-glossary-e-h__cta p {
        font-size: 0.9em;
    }

    .page-gambling-glossary-e-h__article-card h3 {
        font-size: 1.1em;
    }

    .page-gambling-glossary-e-h__article-card p {
        font-size: 0.85em;
    }
}