/* Research Template Styles */

/* Banner Section Styles */
.rd-banner {
    background-color: #72808a;
    color: white;
    padding: 80px 0 60px;
    padding-bottom: 100px;
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Gradient overlay for banner with background image */
.rd-banner.has-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(0, 0, 0, 0.5) 10%, 
                rgba(0, 0, 0, 0.2) 20%);
    z-index: 1;
}

.rd-banner-container {
    width: 100%;
    max-width: var(--ast-container-default-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--ast-container-default-xlg-padding, 20px);
    position: relative;
    z-index: 2;
}

.rd-banner-content {
    border-left: 10px solid #F5C734;
    padding-left: 5px;
    padding-top: 10px !important;
    line-height: 1.2;
}

.rd-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 56px;
    color: rgb(255, 255, 255);
    margin: 0 0 10px;
}

.rd-banner-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Content Section Styles */
.rd-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.rd-entry-content {
    padding: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rd-banner {
        padding: 60px 20px 40px;
    }
    
    .rd-banner-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .rd-content-wrapper {
        padding: 20px 15px;
    }
    
    .rd-entry-content {
        padding: 20px;
    }
}
