/* style/index-latest-promotions-brief.css */
.page-index-latest-promotions-brief {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-index-latest-promotions-brief__hero {
    background: linear-gradient(135deg, #B22222, #FFD700);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-brief__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,subtle,sv368]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-latest-promotions-brief__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-index-latest-promotions-brief__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-brief__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
}

.page-index-latest-promotions-brief__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-latest-promotions-brief__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-index-latest-promotions-brief__btn--primary {
    background-color: #B22222;
    color: #fff;
    border: 2px solid #B22222;
}

.page-index-latest-promotions-brief__btn--primary:hover {
    background-color: #9a1e1e;
    border-color: #9a1e1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-brief__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-index-latest-promotions-brief__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-brief__hero-image-wrapper {
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
    z-index: 1;
}

.page-index-latest-promotions-brief__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-brief__section-title {
    font-size: 2.5em;
    color: #B22222;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    padding-top: 40px;
}

.page-index-latest-promotions-brief__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-index-latest-promotions-brief__promotions-overview {
    padding: 60px 20px;
    background-color: #fff;
}

.page-index-latest-promotions-brief__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-latest-promotions-brief__promo-card {
    background-color: #fefefe;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-promotions-brief__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions-brief__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-index-latest-promotions-brief__promo-card-title {
    font-size: 1.6em;
    color: #B22222;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-promotions-brief__promo-card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-latest-promotions-brief__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 25px;
    background-color: #FFD700;
    color: #B22222;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions-brief__btn--small:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #a01c1c;
}

.page-index-latest-promotions-brief__why-sv368 {
    background-color: #f0f0f0;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-latest-promotions-brief__why-sv368-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-index-latest-promotions-brief__why-sv368-content .page-index-latest-promotions-brief__section-title {
    text-align: left;
    padding-top: 0;
}

.page-index-latest-promotions-brief__why-sv368-content p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
}

.page-index-latest-promotions-brief__why-sv368-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-latest-promotions-brief__why-sv368-content ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.page-index-latest-promotions-brief__why-sv368-content ul li .icon-check {
    color: #B22222;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Basic icon-check style, assuming a font icon or SVG */
.page-index-latest-promotions-brief .icon-check::before {
    content: '✔'; /* Placeholder for a checkmark icon */
}

.page-index-latest-promotions-brief__why-sv368-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-index-latest-promotions-brief__why-sv368-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions-brief__how-to-join {
    padding: 60px 20px;
    background-color: #fff;
}

.page-index-latest-promotions-brief__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-index-latest-promotions-brief__step-card {
    background-color: #fefefe;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.page-index-latest-promotions-brief__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    background-color: #B22222;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-brief__step-title {
    font-size: 1.8em;
    color: #B22222;
    margin-bottom: 15px;
}

.page-index-latest-promotions-brief__step-card p {
    color: #666;
    margin-bottom: 20px;
}

.page-index-latest-promotions-brief__download-app {
    background: linear-gradient(45deg, #B22222 0%, #a01c1c 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-brief__download-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,technology,lines,subtle,dark]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-latest-promotions-brief__download-app-content {
    max-width: 900px;
    z-index: 1;
}

.page-index-latest-promotions-brief__download-app-content .page-index-latest-promotions-brief__section-title {
    color: #fff;
}

.page-index-latest-promotions-brief__download-app-content p {
    font-size: 1.2em;
    color: #eee;
    margin-bottom: 40px;
}

.page-index-latest-promotions-brief__download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.page-index-latest-promotions-brief__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    min-width: 280px;
}

.page-index-latest-promotions-brief__download-note {
    font-size: 0.9em;
    color: #ccc;
    z-index: 1;
}

.page-index-latest-promotions-brief__download-app-image-wrapper {
    margin-top: 40px;
    max-width: 400px;
    width: 100%;
    z-index: 1;
}

.page-index-latest-promotions-brief__download-app-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-brief__faq {
    padding: 60px 20px;
    background-color: #fefefe;
    max-width: 1000px;
    margin: 0 auto;
}

.page-index-latest-promotions-brief__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions-brief__faq-question {
    font-size: 1.4em;
    color: #B22222;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-index-latest-promotions-brief__faq-answer {
    font-size: 1em;
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
    margin-top: 15px;
}

.page-index-latest-promotions-brief__contact-cta {
    background-color: #FFD700;
    padding: 60px 20px;
    text-align: center;
    color: #B22222;
}

.page-index-latest-promotions-brief__contact-cta .page-index-latest-promotions-brief__section-title {
    color: #B22222;
}

.page-index-latest-promotions-brief__contact-cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #B22222;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-latest-promotions-brief__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions-brief__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-brief__why-sv368 {
        flex-direction: column;
        text-align: center;
    }
    .page-index-latest-promotions-brief__why-sv368-content .page-index-latest-promotions-brief__section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-brief__hero {
        padding: 60px 15px;
    }
    .page-index-latest-promotions-brief__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-brief__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions-brief__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-latest-promotions-brief__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-index-latest-promotions-brief__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-brief__section-description {
        font-size: 0.95em;
    }
    .page-index-latest-promotions-brief__promotions-overview,
    .page-index-latest-promotions-brief__why-sv368,
    .page-index-latest-promotions-brief__how-to-join,
    .page-index-latest-promotions-brief__download-app,
    .page-index-latest-promotions-brief__faq,
    .page-index-latest-promotions-brief__contact-cta {
        padding: 40px 15px;
    }
    .page-index-latest-promotions-brief__promo-grid,
    .page-index-latest-promotions-brief__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions-brief__promo-card-title {
        font-size: 1.4em;
    }
    .page-index-latest-promotions-brief__step-title {
        font-size: 1.6em;
    }
    .page-index-latest-promotions-brief__download-buttons {
        flex-direction: column;
    }
    .page-index-latest-promotions-brief__btn--large {
        width: 80%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-brief__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-brief__section-title {
        font-size: 1.6em;
    }
    .page-index-latest-promotions-brief__promo-card-title {
        font-size: 1.2em;
    }
    .page-index-latest-promotions-brief__faq-question {
        font-size: 1.2em;
    }
}