/* style/resources-clb88-brand-story.css */

.page-resources-clb88-brand-story {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light text on dark background */
    background-color: #1A2E4C; /* Main dark blue background */
    line-height: 1.6;
    overflow-x: hidden;
}

.page-resources-clb88-brand-story__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A2E4C, #000000);
    padding: 20px;
}

.page-resources-clb88-brand-story__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.page-resources-clb88-brand-story__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(26, 46, 76, 0.7);
    border-radius: 10px;
}

.page-resources-clb88-brand-story__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-clb88-brand-story__hero-subtitle {
    font-size: 1.5em;
    color: #F0F0F0;
    margin-bottom: 30px;
}

.page-resources-clb88-brand-story__section {
    padding: 80px 20px;
    text-align: center;
    background-color: #1A2E4C;
}

.page-resources-clb88-brand-story__section--light {
    background-color: #2C4362; /* Slightly lighter dark blue for contrast */
}

.page-resources-clb88-brand-story__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-clb88-brand-story__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-clb88-brand-story__content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.page-resources-clb88-brand-story__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-resources-clb88-brand-story__keyword {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-clb88-brand-story__image-full-width {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-clb88-brand-story__milestone-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-clb88-brand-story__milestone-item {
    background-color: #1A2E4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-resources-clb88-brand-story__milestone-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-resources-clb88-brand-story__milestone-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-clb88-brand-story__milestone-description {
    font-size: 1em;
    color: #C0C0C0;
}

.page-resources-clb88-brand-story__value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.page-resources-clb88-brand-story__value-item {
    background-color: #1A2E4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-resources-clb88-brand-story__value-item:hover {
    background-color: #2C4362;
}

.page-resources-clb88-brand-story__value-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-clb88-brand-story__value-description {
    font-size: 1em;
    color: #E0E0E0;
}

.page-resources-clb88-brand-story__section--cta {
    background: linear-gradient(45deg, #1A2E4C, #000000);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.page-resources-clb88-brand-story__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-resources-clb88-brand-story__section--cta > .page-resources-clb88-brand-story__section-title,
.page-resources-clb88-brand-story__section--cta > .page-resources-clb88-brand-story__paragraph,
.page-resources-clb88-brand-story__section--cta > .page-resources-clb88-brand-story__cta-buttons {
    position: relative;
    z-index: 2;
}

.page-resources-clb88-brand-story__section--cta .page-resources-clb88-brand-story__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-resources-clb88-brand-story__section--cta .page-resources-clb88-brand-story__paragraph {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-resources-clb88-brand-story__cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-clb88-brand-story__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-resources-clb88-brand-story__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E4C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-resources-clb88-brand-story__btn--primary:hover {
    background-color: #e5c300;
    color: #0d1e36;
    transform: translateY(-3px);
}

.page-resources-clb88-brand-story__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-clb88-brand-story__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E4C;
    transform: translateY(-3px);
}

.page-resources-clb88-brand-story__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-clb88-brand-story__inline-link:hover {
    color: #e5c300;
    text-decoration: underline;
}

.page-resources-clb88-brand-story__section--related {
    background-color: #1A2E4C;
    padding: 60px 20px;
}

.page-resources-clb88-brand-story__related-links {
    list-style: none;
    padding: 0;
    margin: 30px auto 0 auto;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-resources-clb88-brand-story__related-links li {
    display: inline-block;
}

.page-resources-clb88-brand-story__related-links .page-resources-clb88-brand-story__inline-link {
    padding: 10px 15px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    font-size: 1em;
}

.page-resources-clb88-brand-story__related-links .page-resources-clb88-brand-story__inline-link:hover {
    background-color: #FFD700;
    color: #1A2E4C;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-clb88-brand-story__hero-title {
        font-size: 2.8em;
    }
    .page-resources-clb88-brand-story__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-clb88-brand-story__section-title {
        font-size: 2.2em;
    }
    .page-resources-clb88-brand-story__milestone-list, .page-resources-clb88-brand-story__value-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-clb88-brand-story__hero {
        height: 500px;
    }
    .page-resources-clb88-brand-story__hero-title {
        font-size: 2.2em;
    }
    .page-resources-clb88-brand-story__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-clb88-brand-story__section {
        padding: 60px 15px;
    }
    .page-resources-clb88-brand-story__section-title {
        font-size: 1.8em;
    }
    .page-resources-clb88-brand-story__paragraph {
        font-size: 1em;
    }
    .page-resources-clb88-brand-story__milestone-list, .page-resources-clb88-brand-story__value-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-clb88-brand-story__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-resources-clb88-brand-story__hero {
        height: 400px;
    }
    .page-resources-clb88-brand-story__hero-title {
        font-size: 1.8em;
    }
    .page-resources-clb88-brand-story__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-clb88-brand-story__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-clb88-brand-story__section-title {
        font-size: 1.5em;
    }
    .page-resources-clb88-brand-story__milestone-title, .page-resources-clb88-brand-story__value-title {
        font-size: 1.4em;
    }
}