.correspondent-section {
    background: #faf9fd;
    min-height: 60vh;
    padding: 36px 0 40px 0;
}

.corr-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.corr-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: #7b2cbf;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
}

/* Avatar/Image Box */
.corr-avatar-box {
    display: flex;
    justify-content: center;
    width: 100%;
}

.corr-avatar-box img {
    width: 100%;
    max-width: 600px;
    min-width: 270px;
    height: 295px;
    object-fit: cover;
    aspect-ratio: 2.1/1;
    border-radius: 16px;
    background: #fff;
    border: 3px solid #f0eaff;
    box-shadow: 0 8px 32px rgba(80,40,160,0.07);
    display: block;
    margin: 0 auto;
}

/* Message Box directly below, same width as image */
.corr-msg-box {
    background: #b5b3af;
    border-radius: 15px;
    box-shadow: 0 6px 28px rgba(123,44,191,0.09);
    padding: 32px 32px 22px 32px;
    font-size: 1.06rem;
    color: #232323;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    min-width: 270px;
    box-sizing: border-box;
}

.corr-msg-box p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.corr-msg-box strong, .corr-msg-box b {
    color: #25242a;
    font-weight: 700;
}
.corr-msg-box em,
.corr-quote {
    color: #7b2cbf;
    font-size: 1.06rem;
    font-style: italic;
    margin-bottom: 16px;
}
.corr-msg-box b:last-child {
    display: block;
    margin-top: 26px;
    color: #422080;
    letter-spacing: 1.1px;
}

/* Responsive */
@media (max-width: 700px) {
    .corr-avatar-box img,
    .corr-msg-box {
        max-width: 98vw;
        min-width: 0;
        padding: 12px 4vw;
        height: auto;
    }
    .corr-title { font-size: 1.21rem; }
    .corr-msg-box { padding: 16px 8px 14px 14px; }
}
