/* Financial Aid Block Styles */
.financial-aid-section {
    background: #f5f6f7;
    padding: 56px 0 60px 0;
    font-family: 'Inter', Arial, sans-serif;
    position: relative;
}
.financial-aid-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 6vw;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 150px;
}
.fa-col {
    background: transparent;
    /* flex: 0 1 42%; */
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d7dadc;
    padding-right: 4vw;
    /* min-width: 300px;
    max-width: 520px; */
}
.fa-col:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 4vw;
}
.fa-title {
    font-size: 1.56rem;
    font-weight: 700;
    margin-bottom: 1.05em;
    color: #131619;
    margin-top: 0;
    letter-spacing: 0.01em;
}
.wp-block-acf-financial-aid .financial-aid-section::before {
    content: "🎯 financial-aid Section";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 4px;
    z-index: 10;
    font-weight: 500;
    max-width: 250px;
    text-align: center;
    line-height: 1.3;
}
.fa-desc, .fa-subdesc {
    font-size: 1.01rem;
    color: #34363b;
    margin-bottom: 10px;
    margin-right: 0;
    line-height: 1.42;
}
.fa-subdesc { 
    margin-bottom: 22px; 
}
.fa-cta {
    color: #259429;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 18px;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
}
.fa-cta:hover { 
    color: #186c1a; 
}
.fa-cta-arrow {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-top: 2px;
}
.fa-cta-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width:980px) {
    .financial-aid-wrap {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    gap: 6vw;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0px;
}
    .fa-col, .fa-col:last-child { 
        min-width: 0; 
        max-width: none; 
        padding: 0; 
        border: none; 
    }
    .fa-cta { 
        font-size: 1.1rem; 
    }
    .fa-cta-arrow { 
        width: 24px; 
        height: 24px; 
    }
    .financial-aid-section {
    padding: 56px 20px 60px 20px;
    }
}

