/* css/outreach.css */
.outreach-page {
    background-color: #f7f9fa;
}

/* 宣導清新的推廣藍 */
.intro-lead {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b7a9f; 
    line-height: 1.8;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.outreach-block {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    overflow: hidden;
    margin-bottom: 4rem;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outreach-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.outreach-block:last-child {
    margin-bottom: 0;
}

.outreach-content {
    padding: 4rem;
}

.outreach-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.outreach-title i {
    color: #2b7a9f;
    font-size: 1.8rem;
}

.outreach-text {
    font-size: 1.15rem;
    line-height: 2.2;
    color: #555;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 0;
}

/* For image placeholder to stretch nicely */
.outreach-img-wrapper {
    height: 100%;
    min-height: 300px;
}

@media (max-width: 991.98px) {
    .outreach-content {
        padding: 2.5rem;
    }
}
