/* style/blog-mm88b-latest-features.css */

/* --- General Page Styles --- */
.page-blog-mm88b-latest-features {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light body background */
    line-height: 1.6;
    background-color: #FFFFFF; /* Ensure consistency with body background */
}

.page-blog-mm88b-latest-features__section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-mm88b-latest-features__section-inner--centered {
    text-align: center;
}

.page-blog-mm88b-latest-features__section-title {
    color: #26A9E0;
    font-size: clamp(28px, 4vw, 42px); /* Responsive font size for H2 */
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.page-blog-mm88b-latest-features__section-title--white {
    color: #FFFFFF;
}

.page-blog-mm88b-latest-features p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333333;
}

.page-blog-mm88b-latest-features__highlight {
    color: #26A9E0;
    font-weight: 700;
}

.page-blog-mm88b-latest-features__inline-link {
    color: #26A9E0;
    text-decoration: underline;
}
.page-blog-mm88b-latest-features__inline-link:hover {
    color: #EA7C07;
}

/* --- Buttons --- */
.page-blog-mm88b-latest-features__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-blog-mm88b-latest-features__btn-primary,
.page-blog-mm88b-latest-features__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-blog-mm88b-latest-features__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-blog-mm88b-latest-features__btn-primary:hover {
    background-color: #1a7eb3;
    border-color: #1a7eb3;
    transform: translateY(-2px);
}

.page-blog-mm88b-latest-features__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-blog-mm88b-latest-features__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #1a7eb3;
    border-color: #1a7eb3;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.page-blog-mm88b-latest-features__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #26A9E0; /* Dark background for hero */
}

.page-blog-mm88b-latest-features__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.page-blog-mm88b-latest-features__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px; /* Limit height for aesthetic */
}

.page-blog-mm88b-latest-features__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-mm88b-latest-features__main-title {
    color: #FFFFFF;
    font-size: clamp(32px, 5vw, 56px); /* Responsive H1 font size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-blog-mm88b-latest-features__description {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* --- Content Sections --- */
.page-blog-mm88b-latest-features__content-area {
    padding: 60px 20px;
    background-color: #FFFFFF; /* Light background for content */
}

.page-blog-mm88b-latest-features__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-blog-mm88b-latest-features__cta-buttons--centered {
    margin-top: 40px;
    margin-bottom: 0;
}

/* --- FAQ Section --- */
.page-blog-mm88b-latest-features__faq-section {
    padding: 60px 20px;
    background-color: #f8f8f8; /* Slightly off-white for contrast */
}

.page-blog-mm88b-latest-features__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-blog-mm88b-latest-features__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-blog-mm88b-latest-features__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #26A9E0;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}
.page-blog-mm88b-latest-features__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-mm88b-latest-features__faq-question {
    flex-grow: 1;
}

.page-blog-mm88b-latest-features__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0;
}

.page-blog-mm88b-latest-features__faq-item[open] summary {
    background-color: #e6f7ff; /* Lighter background when open */
    border-bottom: 1px solid #cceeff;
}

.page-blog-mm88b-latest-features__faq-answer {
    padding: 20px 25px;
    font-size: 16px;
    color: #555555;
}

/* --- Conclusion Section --- */
.page-blog-mm88b-latest-features__conclusion-section {
    padding: 60px 20px;
    background-color: #26A9E0;
    color: #FFFFFF;
    text-align: center;
}

.page-blog-mm88b-latest-features__conclusion-section p {
    color: #f0f0f0;
    font-size: 17px;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-blog-mm88b-latest-features__hero-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .page-blog-mm88b-latest-features__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-mm88b-latest-features__main-title {
        font-size: clamp(28px, 8vw, 40px);
    }
    .page-blog-mm88b-latest-features__description {
        font-size: 16px;
    }
    .page-blog-mm88b-latest-features__section-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    .page-blog-mm88b-latest-features p {
        font-size: 15px;
    }
    .page-blog-mm88b-latest-features__btn-primary,
    .page-blog-mm88b-latest-features__btn-secondary {
        padding: 10px 20px;
        font-size: 16px;
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-mm88b-latest-features__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Mobile image responsiveness */
    .page-blog-mm88b-latest-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Mobile video responsiveness (if any, though none currently in HTML) */
    .page-blog-mm88b-latest-features video,
    .page-blog-mm88b-latest-features__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Containers for mobile responsiveness */
    .page-blog-mm88b-latest-features__hero-section,
    .page-blog-mm88b-latest-features__content-area,
    .page-blog-mm88b-latest-features__faq-section,
    .page-blog-mm88b-latest-features__conclusion-section,
    .page-blog-mm88b-latest-features__section-inner,
    .page-blog-mm88b-latest-features__video-container,
    .page-blog-mm88b-latest-features__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-blog-mm88b-latest-features__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
}

@media (max-width: 480px) {
    .page-blog-mm88b-latest-features__main-title {
        font-size: clamp(24px, 10vw, 36px);
    }
    .page-blog-mm88b-latest-features__section-title {
        font-size: clamp(20px, 8vw, 30px);
    }
    .page-blog-mm88b-latest-features__faq-item summary {
        font-size: 16px;
        padding: 15px 20px;
    }
    .page-blog-mm88b-latest-features__faq-answer {
        padding: 15px 20px;
    }
}