/* style/blog-f8bet25-latest-updates.css */
.page-blog-f8bet25-latest-updates {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    padding-top: 10px; /* Small top padding for content, relying on body for header offset */
}

.page-blog-f8bet25-latest-updates__hero-section {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-f8bet25-latest-updates__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
}

.page-blog-f8bet25-latest-updates__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* Consistent aspect ratio for hero */
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
}

.page-blog-f8bet25-latest-updates__hero-content {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-blog-f8bet25-latest-updates__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Use clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    max-width: 800px; /* Constrain h1 width */
    margin-left: auto;
    margin-right: auto;
}

.page-blog-f8bet25-latest-updates__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-f8bet25-latest-updates__cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.page-blog-f8bet25-latest-updates__cta-button,
.page-blog-f8bet25-latest-updates__secondary-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-blog-f8bet25-latest-updates__cta-button {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-blog-f8bet25-latest-updates__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-f8bet25-latest-updates__secondary-button {
    background-color: transparent;
    border: 2px solid #2E7A4E; /* Border color */
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-f8bet25-latest-updates__secondary-button:hover {
    background-color: rgba(46, 122, 78, 0.1); /* Lighter version of border color */
    color: #F2FFF6; /* Text Main */
}

.page-blog-f8bet25-latest-updates__news-section,
.page-blog-f8bet25-latest-updates__features-section,
.page-blog-f8bet25-latest-updates__cta-banner {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.page-blog-f8bet25-latest-updates__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-f8bet25-latest-updates__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2AD16F; /* Button top color for emphasis */
    border-radius: 2px;
}

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

.page-blog-f8bet25-latest-updates__news-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.page-blog-f8bet25-latest-updates__news-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    filter: none; /* No filter */
    min-width: 200px; /* Min size */
    min-height: 200px;
}

.page-blog-f8bet25-latest-updates__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog-f8bet25-latest-updates__card-date {
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
}

.page-blog-f8bet25-latest-updates__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.page-blog-f8bet25-latest-updates__card-title a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-f8bet25-latest-updates__card-title a:hover {
    color: #2AD16F; /* Button top color */
}

.page-blog-f8bet25-latest-updates__card-description {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-blog-f8bet25-latest-updates__read-more {
    color: #2AD16F; /* Button top color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.page-blog-f8bet25-latest-updates__read-more:hover {
    text-decoration: underline;
}

.page-blog-f8bet25-latest-updates__view-all {
    text-align: center;
    margin-top: 20px;
}

.page-blog-f8bet25-latest-updates__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-blog-f8bet25-latest-updates__feature-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-blog-f8bet25-latest-updates__feature-item:hover {
    transform: translateY(-5px);
}

.page-blog-f8bet25-latest-updates__feature-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    filter: none; /* No filter */
    min-width: 200px; /* Min size */
    min-height: 200px;
    /* HTML width/height attributes for layout hints, CSS overrides for responsiveness */
    object-fit: cover;
}

.page-blog-f8bet25-latest-updates__feature-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-blog-f8bet25-latest-updates__feature-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

.page-blog-f8bet25-latest-updates__cta-banner {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 80px;
}

.page-blog-f8bet25-latest-updates__cta-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
}

.page-blog-f8bet25-latest-updates__cta-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-f8bet25-latest-updates__hero-content {
        padding: 0 15px;
    }

    .page-blog-f8bet25-latest-updates__main-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .page-blog-f8bet25-latest-updates__description {
        font-size: 1rem;
    }

    .page-blog-f8bet25-latest-updates__cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-f8bet25-latest-updates__cta-button,
    .page-blog-f8bet25-latest-updates__secondary-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-blog-f8bet25-latest-updates__news-section,
    .page-blog-f8bet25-latest-updates__features-section,
    .page-blog-f8bet25-latest-updates__cta-banner {
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .page-blog-f8bet25-latest-updates__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 30px;
    }

    .page-blog-f8bet25-latest-updates__news-grid,
    .page-blog-f8bet25-latest-updates__features-grid {
        gap: 20px;
    }
    
    /* Crucial: Mobile image overflow prevention */
    .page-blog-f8bet25-latest-updates img {
        max-width: 100%;
        height: auto;
        display: block;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }
    .page-blog-f8bet25-latest-updates__feature-item img {
        width: 100%; /* Override specific width for responsiveness */
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-f8bet25-latest-updates__hero-section {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .page-blog-f8bet25-latest-updates__main-title {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
    }
    .page-blog-f8bet25-latest-updates__cta-banner {
        padding: 40px 20px;
    }
    .page-blog-f8bet25-latest-updates__cta-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
}