/* style/blog-how-to-download-7clubs.css */
/* body đã padding-top: var(--header-offset)；trang này không được viết lại biến đó */
.page-blog-how-to-download-7clubs {
    background-color: var(--bg, #08160F); /* Nền mặc định là Deep Green */
    color: var(--text-main, #F2FFF6); /* Màu chữ chính là Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Khoảng cách trước footer */
}

/* Hero Section */
.page-blog-how-to-download-7clubs__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Hình ảnh ở trên, nội dung chữ ở dưới */
    align-items: center;
    padding: 20px 0 60px 0; /* Khoảng cách trên nhỏ, dưới lớn hơn */
    overflow: hidden;
    background-color: var(--bg, #08160F);
}

.page-blog-how-to-download-7clubs__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Giới hạn chiều rộng hình ảnh */
    margin-bottom: 30px; /* Khoảng cách giữa hình ảnh và nội dung */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-blog-how-to-download-7clubs__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.page-blog-how-to-download-7clubs__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Kích thước font H1 responsive */
    font-weight: bold;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-how-to-download-7clubs__description {
    font-size: 1.15rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
}

/* General Section Styling */
.page-blog-how-to-download-7clubs__section {
    padding: 60px 0;
    background-color: var(--bg, #08160F);
}

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

.page-blog-how-to-download-7clubs__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-main, #F2FFF6);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-how-to-download-7clubs__text-block {
    font-size: 1.1rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-blog-how-to-download-7clubs__btn-primary,
.page-blog-how-to-download-7clubs__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Cho phép chữ xuống dòng */
    word-wrap: break-word; /* Cho phép chữ bị ngắt */
    max-width: 100%; /* Đảm bảo nút vừa với container */
}

.page-blog-how-to-download-7clubs__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-download-7clubs__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-download-7clubs__btn-secondary {
    background-color: transparent;
    color: var(--main-color, #11A84E); /* Sử dụng màu thương hiệu chính cho chữ */
    border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-how-to-download-7clubs__btn-secondary:hover {
    background-color: rgba(var(--main-color-rgb, 17, 168, 78), 0.1); /* Nền nhẹ khi hover */
    color: var(--glow-color, #57E38D); /* Xanh lá sáng hơn khi hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.page-blog-how-7clubs__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-download-7clubs__feature-card {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-download-7clubs__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-download-7clubs__feature-title {
    font-size: 1.5rem;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-download-7clubs__feature-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1rem;
}

/* Step-by-step Guide */
.page-blog-how-to-download-7clubs__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-blog-how-to-download-7clubs__step-item {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-blog-how-to-download-7clubs__step-title {
    font-size: 1.6rem;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-download-7clubs__step-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.page-blog-how-to-download-7clubs__step-image {
    width: 100%;
    max-width: 600px; /* Giới hạn chiều rộng hình ảnh bước */
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Important Notes */
.page-blog-how-to-download-7clubs__notes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-download-7clubs__note-item {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-download-7clubs__note-title {
    font-size: 1.4rem;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-download-7clubs__note-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1rem;
}

.page-blog-how-to-download-7clubs__note-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-how-to-download-7clubs__faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-blog-how-to-download-7clubs__faq-item {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-blog-how-to-download-7clubs__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main, #F2FFF6);
    background-color: var(--card-bg, #11271B);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
    list-style: none; /* Xóa dấu mặc định */
}

.page-blog-how-to-download-7clubs__faq-question::-webkit-details-marker {
    display: none; /* Xóa dấu mặc định cho Webkit */
}

.page-blog-how-to-download-7clubs__faq-item[open] .page-blog-how-to-download-7clubs__faq-question {
    border-bottom-color: var(--border-color, #2E7A4E);
    background-color: var(--deep-green, #0A4B2C); /* Hơi tối hơn khi mở */
}

.page-blog-how-to-download-7clubs__faq-question:hover {
    background-color: var(--deep-green, #0A4B2C);
}

.page-blog-how-to-download-7clubs__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-download-7clubs__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color, #57E38D);
}

.page-blog-how-to-download-7clubs__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1.05rem;
    color: var(--text-secondary, #A7D9B8);
    background-color: var(--card-bg, #11271B);
}

.page-blog-how-to-download-7clubs__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-how-to-download-7clubs__conclusion-section {
    text-align: center;
}

.page-blog-how-to-download-7clubs__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Cho phép các nút xuống dòng trên màn hình nhỏ hơn */
}

/* Keyword highlighting */
.page-blog-how-to-download-7clubs .keyword {
    color: var(--glow-color, #57E38D); /* Đánh dấu từ khóa bằng màu xanh lá cây phát sáng */
    font-weight: bold;
}

/* Links within text */
.page-blog-how-to-download-7clubs__step-text a,
.page-blog-how-to-download-7clubs__note-text a,
.page-blog-how-to-download-7clubs__faq-answer a {
    color: var(--glow-color, #57E38D); /* Màu liên kết */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-how-to-download-7clubs__step-text a:hover,
.page-blog-how-to-download-7clubs__note-text a:hover,
.page-blog-how-to-download-7clubs__faq-answer a:hover {
    color: var(--gold-color, #F2C14E); /* Màu vàng khi hover */
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-download-7clubs__hero-content {
        padding: 0 15px;
    }
    .page-blog-how-to-download-7clubs__container {
        padding: 0 15px;
    }
    .page-blog-how-to-download-7clubs__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-how-to-download-7clubs__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-blog-how-to-download-7clubs__feature-title,
    .page-blog-how-to-download-7clubs__step-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-download-7clubs {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-download-7clubs__section {
        padding: 40px 0;
    }

    .page-blog-how-to-download-7clubs__hero-section {
        padding-top: 10px !important; /* body đã xử lý --header-offset */
        padding-bottom: 40px;
    }

    .page-blog-how-to-download-7clubs__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-blog-how-to-download-7clubs__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-how-to-download-7clubs__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-how-to-download-7clubs__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-blog-how-7clubs__features-grid,
    .page-blog-how-to-download-7clubs__notes-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-download-7clubs__feature-card,
    .page-blog-how-to-download-7clubs__step-item,
    .page-blog-how-to-download-7clubs__note-item,
    .page-blog-how-to-download-7clubs__faq-item {
        padding: 20px;
    }

    .page-blog-how-to-download-7clubs__feature-title,
    .page-blog-how-to-download-7clubs__step-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .page-blog-how-to-download-7clubs__step-text,
    .page-blog-how-to-download-7clubs__note-text,
    .page-blog-how-to-download-7clubs__feature-text,
    .page-blog-how-to-download-7clubs__faq-answer {
        font-size: 0.95rem;
    }

    .page-blog-how-to-download-7clubs__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-blog-how-to-download-7clubs__faq-toggle {
        font-size: 1.5rem;
    }

    .page-blog-how-to-download-7clubs__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Hình ảnh và container responsive */
    .page-blog-how-to-download-7clubs img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-how-to-download-7clubs__section,
    .page-blog-how-to-download-7clubs__card,
    .page-blog-how-to-download-7clubs__container,
    .page-blog-how-to-download-7clubs__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-download-7clubs__btn-primary,
    .page-blog-how-to-download-7clubs__btn-secondary,
    .page-blog-how-to-download-7clubs a[class*="button"],
    .page-blog-how-to-download-7clubs a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important; /* Chiều rộng đầy đủ cho các nút trên di động */
        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__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Đảm bảo hình ảnh khu vực nội dung có chiều rộng tối thiểu 200px */
    .page-blog-how-to-download-7clubs__step-image,
    .page-blog-how-to-download-7clubs__note-image {
        min-width: 200px; /* Thực thi kích thước tối thiểu */
        min-height: 200px;
        object-fit: cover; /* Đảm bảo hình ảnh bao phủ khu vực mà không bị biến dạng */
    }
}