.page-blog {
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px);
}

.page-blog__hero-section {
    background-color: #000000;
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

.page-blog__hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-blog__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.page-blog__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-blog__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-blog__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
}

.page-blog__hero-button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-blog__hero-button--register:hover {
    background-color: #FCBC45;
    color: #FFFFFF;
    border-color: #FCBC45;
}

.page-blog__hero-button--login {
    background-color: #FCBC45;
    color: #FFFFFF;
    border: 2px solid #FCBC45;
}

.page-blog__hero-button--login:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.page-blog__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-blog__section-title {
    font-size: 2.2em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
}

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

.page-blog__article-card,
.page-blog__guide-card,
.page-blog__insight-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog__article-card:hover,
.page-blog__guide-card:hover,
.page-blog__insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog__article-image,
.page-blog__guide-image,
.page-blog__responsive-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure images are not too small */
}

.page-blog__article-content,
.page-blog__guide-card h3,
.page-blog__insight-card h3 {
    padding: 20px;
}

.page-blog__article-title,
.page-blog__guide-title,
.page-blog__insight-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog__article-title a,
.page-blog__guide-title a,
.page-blog__insight-title a {
    color: #000000;
    text-decoration: none;
}

.page-blog__article-title a:hover,
.page-blog__guide-title a:hover,
.page-blog__insight-title a:hover {
    color: #FCBC45;
}

.page-blog__article-excerpt,
.page-blog__guide-excerpt,
.page-blog__insight-excerpt {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-blog__read-more,
.page-blog__read-more-button {
    display: inline-block;
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    padding-top: 10px;
}

.page-blog__read-more:hover,
.page-blog__read-more-button:hover {
    text-decoration: underline;
}

.page-blog__responsible-gaming,
.page-blog__promotions {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.page-blog__content-wrapper--reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
}

.page-blog__content-wrapper--alt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.page-blog__text-content {
    flex: 1;
}

.page-blog__image-container {
    flex: 1;
    min-width: 200px;
}

.page-blog__responsive-image {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog__subsection-title {
    font-size: 1.6em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog__paragraph {
    font-size: 1em;
    color: #444444;
    margin-bottom: 15px;
}

.page-blog__industry-insights {
    padding: 60px 0;
}

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

.page-blog__insight-card {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog__cta-section {
    background-color: #000000;
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

.page-blog__cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.page-blog__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-blog__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-blog__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
}

.page-blog__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-blog__cta-button--register:hover {
    background-color: #FCBC45;
    color: #FFFFFF;
    border-color: #FCBC45;
}

.page-blog__cta-button--download {
    background-color: #FCBC45;
    color: #FFFFFF;
    border: 2px solid #FCBC45;
}

.page-blog__cta-button--download:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog__hero-title {
        font-size: 2.5em;
    }
    .page-blog__section-title {
        font-size: 2em;
    }
    .page-blog__cta-title {
        font-size: 2.2em;
    }
    .page-blog__content-wrapper--reverse,
    .page-blog__content-wrapper--alt {
        flex-direction: column;
        text-align: center;
    }
    .page-blog__image-container {
        order: -1; /* Image first on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-blog__hero-title {
        font-size: 2em;
    }
    .page-blog__hero-description {
        font-size: 1em;
    }
    .page-blog__hero-actions,
    .page-blog__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog__hero-button,
    .page-blog__cta-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-blog__section-title {
        font-size: 1.8em;
    }
    .page-blog__section-intro {
        font-size: 1em;
    }
    .page-blog__article-title,
    .page-blog__guide-title,
    .page-blog__insight-title {
        font-size: 1.2em;
    }
    .page-blog__article-excerpt,
    .page-blog__guide-excerpt,
    .page-blog__insight-excerpt {
        font-size: 0.9em;
    }
    .page-blog__subsection-title {
        font-size: 1.4em;
    }
    .page-blog__paragraph {
        font-size: 0.95em;
    }
    .page-blog__cta-title {
        font-size: 1.8em;
    }
    .page-blog__cta-description {
        font-size: 1em;
    }
    .page-blog__article-image, .page-blog__guide-image, .page-blog__responsive-image, .page-blog__image-container img {
        max-width: 100%;
        height: auto;
        min-height: 200px;
    }
    .page-blog__latest-articles img, .page-blog__game-guides img, .page-blog__responsible-gaming img, .page-blog__promotions img {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-blog__hero-section,
    .page-blog__cta-section {
        padding: 60px 15px;
    }
    .page-blog__content-wrapper {
        padding: 30px 15px;
    }
    .page-blog__hero-title {
        font-size: 1.8em;
    }
    .page-blog__section-title {
        font-size: 1.6em;
    }
    .page-blog__cta-title {
        font-size: 1.6em;
    }
    .page-blog__hero-button,
    .page-blog__cta-button {
        width: 90%;
    }
}

.page-blog__latest-articles img, .page-blog__game-guides img, .page-blog__responsible-gaming img, .page-blog__promotions img, .page-blog__insight-cards img {
    min-width: 200px;
    min-height: 200px;
}