/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333333;
    background-color: #F5F7FA;
    line-height: 1.6;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions__section {
    padding: 40px 0;
    text-align: center;
}

.page-promotions__section--types {
    background-color: #F5F7FA;
}

.page-promotions__section--guide {
    background-color: #E53935; /* Primary brand color */
    color: #ffffff;
}

.page-promotions__dark-bg {
    background-color: #E53935;
    color: #ffffff;
}

.page-promotions__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
    color: #E53935;
    font-weight: 700;
}

.page-promotions__section-title--light {
    color: #ffffff;
}

.page-promotions__section-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

.page-promotions__section-description--light {
    color: #f0f0f0;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background-color: #ffffff;
    color: #E53935;
    border: 2px solid #E53935;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__btn-secondary:hover {
    background-color: #E53935;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-promotions__btn-secondary--light {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-promotions__btn-secondary--light:hover {
    background-color: #ffffff;
    color: #E53935;
}

/* Hero Section */
.page-promotions__hero-section {
    padding-top: 10px; /* Adheres to the 10px rule, not var(--header-offset) */
    background-color: #F5F7FA;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.page-promotions__hero-text-block {
    text-align: center;
    max-width: 900px;
}

.page-promotions__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #E53935;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.page-promotions__hero-description {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 30px;
}

/* Promo Grid Section */
.page-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__promo-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-promotions__card-title {
    font-size: 1.4rem;
    color: #E53935;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-promotions__card-title a {
    color: #E53935;
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    text-decoration: underline;
}

.page-promotions__card-text {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Guide Section */
.page-promotions__guide-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions__guide-step {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.page-promotions__step-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__step-text {
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 25px;
}

/* New Member Offer Section */
.page-promotions__section--new-member {
    background-color: #F5F7FA;
}