
.wp-site-blocks {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.fund-single {
    font-family: 'Lato', sans-serif;
    color: #414141;
}

.fund-single-header {
    background-color: #0E264B;
    color: #FFFFFF;
    padding: 60px 0;
}

.fund-single-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fund-header-left {
    max-width: 75%;
}

.fund-header-left h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 300;
    color: #FFFFFF;
}

.fund-header-left .company-name {
    font-size: 24px;
    margin-top: 10px;
    color: #FFFFFF;
}

.fund-header-right {
    text-align: right;
}

.fund-header-right .min-amount {
    font-size: 48px;
    font-weight: 700;
    display: block;
	line-height: 48px;
}

.fund-header-right .min-label {
    font-size: 18px;
    text-transform: uppercase;
}

.fund-summary-section {
    padding: 60px 0;
    background: #1A3560;
    color: #fff;
}

.fund-summary-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
}

.fund-summary-content {
    flex: 2;
}

.fund-summary-content h2 {

    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fund-summary-sidebar {
    flex: 1;
}

.sidebar-item {
    margin-bottom: 30px;
}

.sidebar-item label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;

    margin-bottom: 5px;
}

.sidebar-item .stat-value {
    font-size: 20px;
    font-weight: 700;

}

.fund-rating-stars {
    color: #FFFFFF;
    font-size: 24px;
}

.fund-summary-sidebar .fund-rating-stars {
    color: #FFFFFF; /* Dark stars in sidebar */
}

/* Middle Section: Form and Image */
.fund-interactive-section {
    background-color: #fff;
    padding: 100px 0;
    background-image: url(https://rcm.csseodev.com/wp-content/uploads/2026/04/Shield-bg-gray.svg);
    background-size: auto calc(100% - 80px);
    background-repeat: no-repeat;
    background-position: left 40px;
}

.fund-interactive-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.fund-form-container {
    flex: 1;
}

.fund-form-container h2 {
    color: #1A3560;
    font-size: 32px;
    margin-bottom: 20px;
    max-width: 450px;
}

.fund-form-container h3 {
    color: #1A3560;
    font-size: 20px;
    margin-bottom: 15px;
}

.fund-single .fund-form-container {
    font-weight: 300;
}

.fund-form-container li::marker {
    color: #315EA8;
}

.fund-image-container {
    flex: 1;
}

.fund-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.fund-image-placeholder {
    background-color: #A9A9A9;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #FFFFFF;
}

/* Disclaimer */
.fund-disclaimer-section {
    padding: 60px 0;
    background-color: #F7F7F7;
}

.fund-disclaimer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fund-disclaimer-section h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fund-disclaimer-text {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .fund-single-header .container,
    .fund-summary-section .container,
    .fund-interactive-section .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .fund-header-right {
        text-align: left;
    }
}


