/* style/promotions-latest-details.css */

/* Base Styles */
.page-promotions-latest-details {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #FFFFFF; /* Default background */
}

.page-promotions-latest-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-promotions-latest-details__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background-color: #26A9E0; /* Main brand color for hero background */
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-promotions-latest-details__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-promotions-latest-details__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
}

.page-promotions-latest-details__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-promotions-latest-details__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: block;
}

/* Content Area */
.page-promotions-latest-details__content-area {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background for content */
    color: #333333;
}

.page-promotions-latest-details__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-latest-details__sub-title {
    font-size: 2em;
    color: #26A9E0;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: left;
}

.page-promotions-latest-details__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}