/* style/blog-78be-app-asia-market-outlook.css */

/* General styles for the page content, ensuring text color contrasts with body background */
/* Assuming body background is dark (from shared.css var(--background-color): #08160F;), text should be light */
.page-blog-78be-app-asia-market-outlook {
    font-family: Arial, sans-serif;
    color: var(--text-main-color, #F2FFF6); /* Text Main */
    line-height: 1.6;
    background-color: var(--background-color, #08160F); /* Background */
}

.page-blog-78be-app-asia-market-outlook__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-78be-app-asia-market-outlook__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding-bottom: 40px;
    background-color: var(--deep-green-color, #0A4B2C); /* Deep Green */
}

.page-blog-78be-app-asia-market-outlook__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-blog-78be-app-asia-market-outlook__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
    filter: none; /* Ensure no filter is applied */
}

.page-blog-78be-app-asia-market-outlook__hero-content {
    text-align: center;
    padding: 20px 20px 0;
    max-width: 900px;
    color: var(--text-main-color, #F2FFF6);
    z-index: 1; /* Ensure content is above any potential background layers */
}

.page-blog-78be-app-asia-market-outlook__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* H1 font size with clamp */
    color: var(--gold-color, #F2C14E); /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-78be-app-asia-market-outlook__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
}

.page-blog-78be-app-asia-market-outlook__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.page-blog-78be-app-asia-market-outlook__btn-primary,
.page-blog-78be-app-asia-market-outlook__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for button responsiveness */
    max-width: 100%; /* Crucial for button responsiveness */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-blog-78be-app-asia-market-outlook__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #ffffff;
    border: none;
}

.page-blog-78be-app-asia-market-outlook__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-78be-app-asia-market-outlook__btn-secondary {
    background: transparent;
    color: var(--main-color, #11A84E); /* Main Color */
    border: 2px solid var(--main-color, #11A84E); /* Main Color */
}

.page-blog-78be-app-asia-market-outlook__btn-secondary:hover {
    background: var(--main-color, #11A84E); /* Main Color */
    color: #ffffff;
    transform: translateY(-2px);
}

.page-blog-78be-app-asia-market-outlook__section {
    padding: 60px 0;
    background-color: var(--background-color, #08160F); /* Background */
    color: var(--text-main-color, #F2FFF6);
}

.page-blog-78be-app-asia-market-outlook__section:nth-of-type(even) {
    background-color: var(--card-bg-color, #11271B); /* Card BG */
}

.page-blog-78be-app-asia-market-outlook__section-title {
    font-size: 2.5rem;
    color: var(--gold-color, #F2C14E); /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-78be-app-asia-market-outlook__subsection-title {
    font-size: 1.8rem;
    color: var(--main-color, #11A84E); /* Main Color */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-78be-app-asia-market-outlook__text-block p {
    margin-bottom: 15px;
    color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
}

.page-blog-78be-app-asia-market-outlook__text-block a {
    color: var(--gold-color, #F2C14E); /* Gold */
    text-decoration: underline;
}

.page-blog-78be-app-asia-market-outlook__text-block a:hover {
    color: var(--glow-color, #57E38D); /* Glow */
}

.page-blog-78be-app-asia-market-outlook__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
    filter: none; /* Ensure no filter is applied */
}

/* Feature Grid for Advantages section */
.page-blog-78be-app-asia-market-outlook__feature-grid,
.page-blog-78be-app-asia-market-outlook__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-78be-app-asia-market-outlook__feature-card,
.page-blog-78be-app-asia-market-outlook__step-card {
    background-color: var(--card-bg-color, #11271B); /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color, #2E7A4E); /* Border */
}

.page-blog-78be-app-asia-market-outloook__card-title {
    font-size: 1.5rem;
    color: var(--main-color, #11A84E); /* Main Color */
    margin-bottom: 15px;
}

.page-blog-78be-app-asia-market-outloook__card-title + p {
    color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to join section specific styles */
.page-blog-78be-app-asia-market-outlook__step-card .page-blog-78be-app-asia-market-outlook__btn-primary,
.page-blog-78be-app-asia-market-outlook__step-card .page-blog-78be-app-asia-market-outlook__btn-secondary {
    margin-top: 20px;
    align-self: flex-start;
}

/* FAQ Section */
.page-blog-78be-app-asia-market-outlook__faq-section {
    background-color: var(--card-bg-color, #11271B); /* Card BG */
}

.page-blog-78be-app-asia-market-outlook__faq-list {
    margin-top: 30px;
}

.page-blog-78be-app-asia-market-outlook__faq-item {
    background-color: var(--card-bg-color, #11271B); /* Card BG */
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color, #2E7A4E); /* Border */
    overflow: hidden;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-78be-app-asia-market-outlook__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;
    font-size: 1.1rem;
    color: var(--text-main-color, #F2FFF6);
    background-color: var(--card-bg-color, #11271B); /* Card BG */
    transition: background-color 0.3s ease;
}

.page-blog-78be-app-asia-market-outlook__faq-item summary:hover {
    background-color: rgba(var(--main-color-rgb, 17, 168, 78), 0.1); /* Light hover effect */
}

.page-blog-78be-app-asia-market-outlook__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-78be-app-asia-market-outlook__faq-qtext {
    flex-grow: 1;
    color: var(--main-color, #11A84E); /* Main Color */
}

.page-blog-78be-app-asia-market-outlook__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color, #F2C14E); /* Gold */
}

.page-blog-78be-app-asia-market-outlook__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
}

.page-blog-78be-app-asia-market-outlook__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion section specific styles */
.page-blog-78be-app-asia-market-outlook__conclusion .page-blog-78be-app-asia-market-outlook__cta-buttons--bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--divider-color, #1E3A2A); /* Divider */
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-blog-78be-app-asia-market-outlook {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-78be-app-asia-market-outlook__container {
        padding: 0 15px; /* Adjust padding for mobile */
    }

    .page-blog-78be-app-asia-market-outlook__hero-content {
        padding: 15px 15px 0;
    }

    .page-blog-78be-app-asia-market-outlook__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-blog-78be-app-asia-market-outlook__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-78be-app-asia-market-outlook__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px; /* Add horizontal padding to button group */
    }

    .page-blog-78be-app-asia-market-outlook__btn-primary,
    .page-blog-78be-app-asia-market-outlook__btn-secondary {
        width: 100% !important; /* Force full width for buttons */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-78be-app-asia-market-outlook__section {
        padding: 40px 0;
    }

    .page-blog-78be-app-asia-market-outlook__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-blog-78be-app-asia-market-outlook__subsection-title {
        font-size: 1.5rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-blog-78be-app-asia-market-outlook__content-image,
    .page-blog-78be-app-asia-market-outlook__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px; /* Ensure images are not too small */
    }

    .page-blog-78be-app-asia-market-outlook__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-78be-app-asia-market-outlook__feature-grid,
    .page-blog-78be-app-asia-market-outlook__steps-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 20px;
    }

    .page-blog-78be-app-asia-market-outlook__feature-card,
    .page-blog-78be-app-asia-market-outlook__step-card {
        padding: 20px;
    }

    .page-blog-78be-app-asia-market-outloook__card-title {
        font-size: 1.3rem;
    }

    .page-blog-78be-app-asia-market-outlook__faq-item summary {
        padding: 15px;
        font-size: 1rem;
    }

    .page-blog-78be-app-asia-market-outlook__faq-answer {
        padding: 0 15px 15px;
    }
}