/* blog-23winvn-in-depth-review.css */
.page-blog-23winvn-in-depth-review {
    padding-top: 10px; /* Small top padding to respect shared header */
    background-color: #FFFFFF; /* Default background for the page content */
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-23winvn-in-depth-review__hero-section {
    background-color: #017439; /* Primary color for hero background */
    padding: 20px 0;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-23winvn-in-depth-review__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.page-blog-23winvn-in-depth-review__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5; /* Adjusted for a wider hero image */
}

.page-blog-23winvn-in-depth-review__hero-content {
    max-width: 960px;
    padding: 0 20px;
}

.page-blog-23winvn-in-depth-review__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* Using clamp for responsive font size, but within strict limits */
    font-size: clamp(2rem, 5vw, 2.8rem); 
}

.page-blog-23winvn-in-depth-review__main-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-23winvn-in-depth-review__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-23winvn-in-depth-review__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-blog-23winvn-in-depth-review__button--register {
    background-color: #C30808; /* Register button color */
    color: #FFFF00; /* Register button font color */
}

.page-blog-23winvn-in-depth-review__button--register:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-blog-23winvn-in-depth-review__button--login {
    background-color: #C30808; /* Login button color */
    color: #FFFF00; /* Login button font color */
}

.page-blog-23winvn-in-depth-review__button--login:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-blog-23winvn-in-depth-review__button--learn-more {
    background-color: #017439;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.page-blog-23winvn-in-depth-review__button--learn-more:hover {
    background-color: #005a2e;
    transform: translateY(-2px);
}

.page-blog-23winvn-in-depth-review__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-23winvn-in-depth-review__section-title {
    color: #017439; /* Primary color for section titles */
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.page-blog-23winvn-in-depth-review__text-content {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #333333;
}

.page-blog-23winvn-in-depth-review__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 25px 0;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-blog-23winvn-in-depth-review__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-blog-23winvn-in-depth-review__feature-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-23winvn-in-depth-review__card-title {
    color: #017439;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-blog-23winvn-in-depth-review__card-text {
    color: #555555;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-23winvn-in-depth-review__card-link {
    display: inline-block;
    color: #017439;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.page-blog-23winvn-in-depth-review__card-link:hover {
    color: #005a2e;
    text-decoration: underline;
}

.page-blog-23winvn-in-depth-review__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.page-blog-23winvn-in-depth-review__game-card {
    display: block;
    text-decoration: none;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-23winvn-in-depth-review__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-blog-23winvn-in-depth-review__game-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/2;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-blog-23winvn-in-depth-review__game-title {
    display: block;
    padding: 15px;
    color: #333333;
    font-weight: bold;
    text-align: center;
    font-size: 1.1em;
}

.page-blog-23winvn-in-depth-review__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-blog-23winvn-in-depth-review__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog-23winvn-in-depth-review__hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-blog-23winvn-in-depth-review__hero-image-wrapper {
        margin-bottom: 15px;
    }
    .page-blog-23winvn-in-depth-review__hero-image {
        aspect-ratio: 4/3; /* Taller on mobile */
    }
    .page-blog-23winvn-in-depth-review__button {
        width: 80%;
        max-width: 300px;
    }
    .page-blog-23winvn-in-depth-review__feature-grid, .page-blog-23winvn-in-depth-review__game-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Ensure content area images are responsive and do not overflow */
    .page-blog-23winvn-in-depth-review img {
        max-width: 100%;
        height: auto;
    }
    .page-blog-23winvn-in-depth-review {
        overflow-x: hidden;
    }
    .page-blog-23winvn-in-depth-review__section {
        margin: 20px auto;
        padding: 15px;
    }
    .page-blog-23winvn-in-depth-review__section-title {
        font-size: 1.8em;
    }
    .page-blog-23winvn-in-depth-review__main-description {
        font-size: 1em;
    }
    .page-blog-23winvn-in-depth-review__text-content {
        font-size: 0.95em;
    }
}

@media (max-width: 549px) {
    .page-blog-23winvn-in-depth-review__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .page-blog-23winvn-in-depth-review__hero-actions {
        gap: 10px;
    }
    .page-blog-23winvn-in-depth-review__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-blog-23winvn-in-depth-review__section-title {
        font-size: 1.6em;
    }
}