.page-blog-hot789-latest-games {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-hot789-latest-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-blog-hot789-latest-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-blog-hot789-latest-games__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog-hot789-latest-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px 40px;
}

.page-blog-hot789-latest-games__main-title {
    font-weight: bold;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-hot789-latest-games__description {
    font-size: 1.1em;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 30px;
}

.page-blog-hot789-latest-games__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-blog-hot789-latest-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 176, 74, 0.4);
}

/* Article Section */
.page-blog-hot789-latest-games__article-section {
    padding: 40px 0;
}

.page-blog-hot789-latest-games__section-title {
    font-size: 2.2em;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-blog-hot789-latest-games__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hot789-latest-games__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-blog-hot789-latest-games__game-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border */
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.page-blog-hot789-latest-games__game-card:hover {
    transform: translateY(-5px);
}

.page-blog-hot789-latest-games__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency, will be object-fit */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-hot789-latest-games__card-content {
    padding: 20px;
    flex-grow: 1;
}

.page-blog-hot789-latest-games__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-hot789-latest-games__card-title a {
    color: #F3C54D; /* Gold */
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-blog-hot789-latest-games__card-title a:hover {
    color: #FFB04A;
}

.page-blog-hot789-latest-games__card-meta {
    font-size: 0.9em;
    color: rgba(255, 241, 232, 0.7); /* Lighter Text Main */
    margin-bottom: 15px;
}

.page-blog-hot789-latest-games__card-excerpt {
    font-size: 1em;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 20px;
}

.page-blog-hot789-latest-games__read-more {
    display: inline-block;
    color: #FFB04A; /* Button color for read more */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.page-blog-hot789-latest-games__read-more:hover {
    color: #F3C54D;
}

/* Benefits List */
.page-blog-hot789-latest-games__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-blog-hot789-latest-games__benefits-item {
    background-color: #2A1212; /* Card BG */
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #6A1E1E; /* Border */
    text-align: center;
}

.page-blog-hot789-latest-games__benefits-heading {
    font-size: 1.3em;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
}

.page-blog-hot789-latest-games__benefits-description {
    font-size: 0.95em;
    color: #FFF1E8; /* Text Main */
}

/* CTA Bottom */
.page-blog-hot789-latest-games__cta-bottom {
    text-align: center;
    padding: 50px 20px;
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    margin-top: 60px;
    border: 1px solid #6A1E1E; /* Border */
}

.page-blog-hot789-latest-games__cta-text {
    font-size: 1.4em;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 30px;
    font-weight: bold;
}

/* Related Articles Section */
.page-blog-hot789-latest-games__related-articles {
    padding: 40px 0 60px;
}

.page-blog-hot789-latest-games__related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-hot789-latest-games__related-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border */
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.page-blog-hot789-latest-games__related-card:hover {
    transform: translateY(-5px);
}

.page-blog-hot789-latest-games__related-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px; /* Set min-height to 200px for card images as per rule */
}

.page-blog-hot789-latest-games__related-content {
    padding: 15px 20px;
    flex-grow: 1;
}

.page-blog-hot789-latest-games__related-title {
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: bold;
}

.page-blog-hot789-latest-games__related-title a {
    color: #F3C54D; /* Gold */
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-blog-hot789-latest-games__related-title a:hover {
    color: #FFB04A;
}

.page-blog-hot789-latest-games__related-meta {
    font-size: 0.85em;
    color: rgba(255, 241, 232, 0.7); /* Lighter Text Main */
}

.page-blog-hot789-latest-games__view-all-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-blog-hot789-latest-games__view-all-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-blog-hot789-latest-games__view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 176, 74, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-hot789-latest-games__hero-image {
        max-height: 500px;
    }
    .page-blog-hot789-latest-games__main-title {
        font-size: 2.5em; /* Adjusted for medium screens */
    }
    .page-blog-hot789-latest-games__section-title {
        font-size: 2em;
    }
    .page-blog-hot789-latest-games__game-card {
        max-width: none;
    }
    .page-blog-hot789-latest-games__related-card {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .page-blog-hot789-latest-games__hero-image {
        max-height: 400px;
    }
    .page-blog-hot789-latest-games__main-title {
        font-size: 2em; /* Adjusted for smaller screens */
    }
    .page-blog-hot789-latest-games__description {
        font-size: 1em;
    }
    .page-blog-hot789-latest-games__section-title {
        font-size: 1.8em;
    }
    .page-blog-hot789-latest-games__game-list,
    .page-blog-hot789-latest-games__benefits-list,
    .page-blog-hot789-latest-games__related-list {
        grid-template-columns: 1fr;
    }
    .page-blog-hot789-latest-games__card-image,
    .page-blog-hot789-latest-games__related-image {
        max-width: 100%;
        height: auto; /* Ensure responsiveness and prevent overflow */
        min-height: 200px; /* Enforce min-height for content images */
    }
    .page-blog-hot789-latest-games__cta-text {
        font-size: 1.2em;
    }
    .page-blog-hot789-latest-games__container {
        padding: 15px;
    }
    /* Enforce min-width/height for all content images in mobile */
    .page-blog-hot789-latest-games img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    /* For images that are explicitly set height, ensure they still respect min-height and auto width */
    .page-blog-hot789-latest-games__card-image,
    .page-blog-hot789-latest-games__related-image {
        height: auto;
    }
}