/* style/blog-safe-fast-cash-out-methods.css */

/* Base styles for the page content, ensuring light text on dark body */
.page-blog-safe-fast-cash-out-methods {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a; /* Ensure consistency with body background if needed, but body handles primary */
}

.page-blog-safe-fast-cash-out-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-safe-fast-cash-out-methods__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-safe-fast-cash-out-methods__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px; /* Space between image and text */
}

.page-blog-safe-fast-cash-out-methods__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-safe-fast-cash-out-methods__hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above image if there's any positioning conflict */
}

.page-blog-safe-fast-cash-out-methods__main-title {
    color: #26A9E0; /* Brand color for title */
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure it fits in container */
}

.page-blog-safe-fast-cash-out-methods__hero-description {
    font-size: 1.1em;
    color: #f0f0f0; /* Slightly off-white for readability */
    margin-bottom: 30px;
}

.page-blog-safe-fast-cash-out-methods__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog-safe-fast-cash-out-methods__btn-primary,
.page-blog-safe-fast-cash-out-methods__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt to container width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    text-align: center;
}

.page-blog-safe-fast-cash-out-methods__btn-primary {
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-blog-safe-fast-cash-out-methods__btn-primary:hover {
    background-color: #1e87c2;
    border-color: #1e87c2;
}

.page-blog-safe-fast-cash-out-methods__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-blog-safe-fast-cash-out-methods__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Content Area Sections */
.page-blog-safe-fast-cash-out-methods__content-area {
    padding: 60px 0;
}

.page-blog-safe-fast-cash-out-methods__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast with body */
    color: #ffffff;
}

.page-blog-safe-fast-cash-out-methods__light-bg {
    background-color: #0a0a0a; /* Use body background for some sections to vary */
    color: #ffffff;
}

.page-blog-safe-fast-cash-out-methods__section-title {
    color: #26A9E0;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
}

.page-blog-safe-fast-cash-out-methods__sub-title {
    color: #ffffff;
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-blog-safe-fast-cash-out-methods p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

/* Images within content */
.page-blog-safe-fast-cash-out-methods__image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin: 30px 0;
    text-align: center;
}

.page-blog-safe-fast-cash-out-methods__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* FAQ Section */
.page-blog-safe-fast-cash-out-methods__faq-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-blog-safe-fast-cash-out-methods__faq-list {
    margin-top: 30px;
}

.page-blog-safe-fast-cash-out-methods__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for card-like effect */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-safe-fast-cash-out-methods__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #26A9E0; /* Brand color for question */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-safe-fast-cash-out-methods__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-safe-fast-cash-out-methods__faq-qtext {
    flex-grow: 1;
    margin-right: 10px;
}

.page-blog-safe-fast-cash-out-methods__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-safe-fast-cash-out-methods__faq-item[open] .page-blog-safe-fast-cash-out-methods__faq-toggle {
    transform: rotate(45deg); /* Rotate + to become x or - */
}

.page-blog-safe-fast-cash-out-methods__faq-answer {
    padding: 20px;
    padding-top: 0;
    color: #f0f0f0;
}

/* Responsive design */
@media (max-width: 1024px) {
    .page-blog-safe-fast-cash-out-methods__main-title {
        font-size: 2.5em;
    }
    .page-blog-safe-fast-cash-out-methods__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-blog-safe-fast-cash-out-methods {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-safe-fast-cash-out-methods__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles --header-offset */
        padding-bottom: 40px;
    }

    .page-blog-safe-fast-cash-out-methods__hero-content {
        padding: 0 15px;
    }

    .page-blog-safe-fast-cash-out-methods__main-title {
        font-size: 2em; /* Smaller font size for mobile H1 */
        margin-bottom: 15px;
    }

    .page-blog-safe-fast-cash-out-methods__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-blog-safe-fast-cash-out-methods__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 10px;
        padding: 0 15px; /* Add padding to button container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-safe-fast-cash-out-methods__btn-primary,
    .page-blog-safe-fast-cash-out-methods__btn-secondary,
    .page-blog-safe-fast-cash-out-methods a[class*="button"],
    .page-blog-safe-fast-cash-out-methods a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important; /* Ensure buttons take full width */
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px !important; /* Adjust padding for smaller screens */
    }
    
    .page-blog-safe-fast-cash-out-methods__content-area {
        padding: 40px 0;
    }

    .page-blog-safe-fast-cash-out-methods__container {
        padding: 0 15px; /* Adjust container padding for mobile */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-safe-fast-cash-out-methods__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-blog-safe-fast-cash-out-methods__sub-title {
        font-size: 1.3em;
        margin-top: 30px;
    }

    /* Images responsiveness */
    .page-blog-safe-fast-cash-out-methods img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Video responsiveness (if any, though none explicitly requested for this page) */
    .page-blog-safe-fast-cash-out-methods video,
    .page-blog-safe-fast-cash-out-methods__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-safe-fast-cash-out-methods__video-section,
    .page-blog-safe-fast-cash-out-methods__video-container,
    .page-blog-safe-fast-cash-out-methods__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-safe-fast-cash-out-methods__video-section {
        padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    }
}

/* Ensure no filter on images */
.page-blog-safe-fast-cash-out-methods img {
    filter: none !important;
}

/* Text contrast fixes if needed for specific elements, as per requirements */
.page-blog-safe-fast-cash-out-methods__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-safe-fast-cash-out-methods__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}