/* style/blog-how-to-download-7clubs-app.css */

.page-blog-how-to-download-7clubs-app {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

.page-blog-how-to-download-7clubs-app__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-download-7clubs-app__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-how-to-download-7clubs-app__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-how-to-download-7clubs-app__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-how-to-download-7clubs-app__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-how-to-download-7clubs-app__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-how-to-download-7clubs-app__description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-blog-how-to-download-7clubs-app__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-how-to-download-7clubs-app__btn-primary,
.page-blog-how-to-download-7clubs-app__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog-how-to-download-7clubs-app__btn-primary {
    background-color: #017439;
    color: #ffffff;
    border: 2px solid #017439;
}

.page-blog-how-to-download-7clubs-app__btn-primary:hover {
    background-color: #005a2e;
    border-color: #005a2e;
}

.page-blog-how-to-download-7clubs-app__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-blog-how-to-download-7clubs-app__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

/* Specific colors for login/register buttons */
.page-blog-how-to-download-7clubs-app__register-btn {
    background-color: #C30808;
    color: #FFFF00;
    border-color: #C30808;
}

.page-blog-how-to-download-7clubs-app__register-btn:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-blog-how-to-download-7clubs-app__login-btn {
    background-color: #C30808;
    color: #FFFF00;
    border-color: #C30808;
}

.page-blog-how-to-download-7clubs-app__login-btn:hover {
    background-color: #a30606;
    border-color: #a30606;
}

/* Content Sections */
.page-blog-how-to-download-7clubs-app__content-section {
    padding: 60px 0;
}

.page-blog-how-to-download-7clubs-app__dark-bg {
    background-color: #0a0a0a;
    color: #ffffff;
}

.page-blog-how-to-download-7clubs-app__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-blog-how-to-download-7clubs-app__section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: inherit;
}

.page-blog-how-to-download-7clubs-app__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: inherit;
}

.page-blog-how-to-download-7clubs-app__step-list,
.page-blog-how-to-download-7clubs-app__advantage-list,
.page-blog-how-to-download-7clubs-app__troubleshoot-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.page-blog-how-to-download-7clubs-app__list-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #ffffff;
}

.page-blog-how-to-download-7clubs-app__light-bg .page-blog-how-to-download-7clubs-app__list-item {
    background-color: #f8f8f8;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-blog-how-to-download-7clubs-app__list-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: inherit;
}

.page-blog-how-to-download-7clubs-app__image-with-cta {
    text-align: center;
    margin-top: 30px;
}

.page-blog-how-to-download-7clubs-app__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

.page-blog-how-to-download-7clubs-app__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.page-blog-how-to-download-7clubs-app__card {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-download-7clubs-app__card-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: inherit;
}

/* FAQ Section */
.page-blog-how-to-download-7clubs-app__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-download-7clubs-app__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: #ffffff;
}

.page-blog-how-to-download-7clubs-app__light-bg .page-blog-how-to-download-7clubs-app__faq-item {
    background-color: #f8f8f8;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-blog-how-to-download-7clubs-app__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* For <details> summary */
    color: inherit;
}

.page-blog-how-to-download-7clubs-app__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-download-7clubs-app__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #017439;
}

.page-blog-how-to-download-7clubs-app__faq-item[open] .page-blog-how-to-download-7clubs-app__faq-toggle {
    content: '−';
}

.page-blog-how-to-download-7clubs-app__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.1em;
    color: inherit;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-download-7clubs-app__container {
        padding: 20px 30px;
    }

    .page-blog-how-to-download-7clubs-app__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-blog-how-to-download-7clubs-app__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-blog-how-to-download-7clubs-app__hero-content {
        padding: 0 15px;
    }

    .page-blog-how-to-download-7clubs-app__main-title {
        font-size: 2em; /* Smaller H1 for mobile */
        margin-bottom: 15px;
    }

    .page-blog-how-to-download-7clubs-app__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* 通用图片与容器 */
    .page-blog-how-to-download-7clubs-app img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-how-to-download-7clubs-app__section,
    .page-blog-how-to-download-7clubs-app__card,
    .page-blog-how-to-download-7clubs-app__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 按钮与按钮容器 */
    .page-blog-how-to-download-7clubs-app__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding: 0 15px; /* Add padding to button container */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-blog-how-to-download-7clubs-app__btn-primary,
    .page-blog-how-to-download-7clubs-app__btn-secondary,
    .page-blog-how-to-download-7clubs-app a[class*="button"],
    .page-blog-how-to-download-7clubs-app a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 其他内容模块 */
    .page-blog-how-to-download-7clubs-app__content-section {
        padding: 40px 0;
    }

    .page-blog-how-to-download-7clubs-app__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-blog-how-to-download-7clubs-app__list-title {
        font-size: 1.3em;
    }

    .page-blog-how-to-download-7clubs-app__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-blog-how-to-download-7clubs-app__faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 1em;
    }

    .page-blog-how-to-download-7clubs-app__grid-2-col {
        grid-template-columns: 1fr;
    }

    .page-blog-how-to-download-7clubs-app__card {
        padding: 20px;
    }
}