/* --- Variables & Core Scope --- */
.awards_scope {
    --primary: #4C2A4F;
    --primary-light: #6B3E6F;
    --accent: #E8B4A8;
    --bg: #FAF8F6;
    --text-primary: #2D1F31;
    --text-secondary: #6B5B6F;
    --red-hat: "Red Hat Display", sans-serif;
    --montreal: "Neue Montreal", sans-serif;

    background: var(--bg);
    color: var(--text-primary);
}

/* --- Shared Hero Style (Now applied to Awards) --- */
.awards_scope .testimony.banner-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    padding: 100px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: awardsFadeInDown 0.8s ease-out;
}

/* Dark gradient overlay for consistent high-end look */
.awards_scope .testimony.banner-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to right, 
        rgba(25, 40, 50, 0.1) 0%, 
        rgba(25, 40, 50, 0.1) 50%, 
        rgba(25, 40, 50, 0.1) 100%
    );
    z-index: 1;
}

.awards_scope .banner-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-left: 20px;
}

.awards_scope .testimony h1 {
    font-family: var(--red-hat);
    font-size: 70px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.awards_scope .testimony p {
    font-family: var(--montreal);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
}

/* --- Awards List Section (Your Original Styling) --- */
.awards_scope .awards_container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
}

.awards_scope .awards_list_section {
    padding: 100px 0;
    background: #ffffff;
}

.awards_scope .awards_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards_scope .award_item {
    display: flex;
    align-items: baseline;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 10px;
    flex-wrap: wrap;
}

.awards_scope .award_item:hover {
    padding-left: 20px;
    background-color: #fafafa;
    border-bottom-color: var(--primary);
}

.awards_scope .award_name {
    font-family: var(--red-hat);
    font-weight: 700;
    color: #1e1e1e;
    font-size: 1.1em;
    text-transform: uppercase;
}

.awards_scope .award_divider {
    color: var(--primary);
    font-weight: bold;
}

.awards_scope .award_title {
    font-family: var(--montreal);
    font-weight: 400;
    color: #444;
    font-style: italic;
}

.awards_scope .years {
    font-family: var(--montreal);
    color: #1C1C1C;
    font-weight: 600;
    font-size: 0.9em;
    margin-left: auto;
}

/* --- Responsive Adjustments --- */

@media (max-width: 1024px) {
    .awards_scope .testimony.banner-header {
        min-height: 450px;
        padding: 80px 40px;
    }
    .awards_scope .testimony h1 {
        font-size: 56px;
    }
    .awards_scope .awards_container {
        padding: 0 40px;
    }
	.awards_scope .awards_list_section{
		padding: 50px 0;
	}
}

@media (max-width: 767px) {
    .awards_scope .testimony.banner-header {
        min-height: 400px;
        padding: 60px 24px;
        text-align: center;
        justify-content: center;
    }

    .awards_scope .testimony.banner-header::before {
        background: rgba(25, 40, 50, 0.8);
    }

    .awards_scope .testimony h1 {
        font-size: 38px;
        text-align: center;
    }

    .awards_scope .testimony p {
        font-size: 16px;
    }

    .awards_scope .award_item {
        flex-direction: column;
        gap: 5px;
        padding: 20px 0;
    }

    .awards_scope .years {
        margin-left: 0;
        margin-top: 5px;
/*         background: #f0f7ff; */
/*         padding: 2px 8px; */
        border-radius: 4px;
    }

    .awards_scope .award_divider {
        display: none;
    }
}

@keyframes awardsFadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}