/* Message */

.section-message {
    background: #ffffff;
}

.message-layout {
    display: grid;
    gap: 2rem;
}

/* Tweak spacing for container */
.container.message-layout {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 900px) {
    .message-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        align-items: center;
    }
}

.message-kicker {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: #6b7280;
}

.message-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.message-signature {
    margin-top: 1.25rem;
    font-weight: var(--weight-regular);
    font-style: italic;
    /* Signature font (use project signature font) */
    font-family: var(--font-signature);
    font-size: 1.05rem;
    color: #111827;
}

.message-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-photo-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(17,24,39,0.18);
    border: 6px solid rgba(255,255,255,0.03);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
}

/* Ensure photo sits to the right on wide screens and centers on mobile */
@media (min-width: 900px) {
    .message-photo { justify-content: flex-end; }
}

@media (max-width: 899px) {
    .message-photo-img { max-width: 320px; }
}
