/* Research Mandate Section Styling */
.research-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    height: 65vh;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background-image: url('/img/logos/csgm_small.svg');
    background-size: 150%;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.11;
    z-index: 1;
}

.research-section .container {
    position: relative;
    z-index: 2;
}

.research-title {
    color: #EDAA03;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: right;
}

.research-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    text-align: right;
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
}

.research-areas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 0 0 auto;
    text-align: center;
}

.research-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.research-area-icon {
    width: 40px;
    height: 40px;
    background-color:  #EDAA03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.research-area-title {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .research-title {
        font-size: 2.25rem;
    }
    
    .research-intro {
        font-size: 1.05rem;
    }
    
    .research-areas {
        gap: 1.5rem;
        max-width: 800px;
        margin: 0 0 0 auto;
    }
    
    .research-area-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .research-area-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .research-section {
        min-height: 400px;
        /* height: 60vh; */
    }
    
    .research-section::before {
        width: 55%;
    }
    
    .research-title {
        font-size: 2rem;
    }
    
    .research-intro {
        font-size: 1rem;
    }
    
    .research-areas {
        gap: 1rem;
        max-width: 700px;
        margin: 0 0 0 auto;
    }
    
    .research-area-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .research-area-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .research-section {
        min-height: 350px;
        /* height: 50vh; */
    }
    
    .research-section::before {
        width: 65%;
    }
    
    .research-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .research-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .research-areas {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .research-area-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .research-area-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .research-section {
        min-height: 300px;
        /* height: 40vh; */
        text-align: center;
    }
    
    .research-section::before {
        display: none;
    }
    
    .research-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    
    .research-intro {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .research-areas {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
        padding: 0 1rem;
        margin: 0 auto;
    }
    
    .research-area-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .research-area-title {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}