/* CEO message — 40% card left / 60% content right */

.ceo-message-block {
    margin-bottom: 2.5rem;
    padding: 0;
}

.ceo-message-heading {
    position: relative;
    margin: 0 0 1.75rem;
    text-transform: uppercase;
    color: #ed1821;
    font-size: 28px;
    font-weight: 700;
}

.ceo-message-heading span {
    color: #333;
    font-weight: 700;
}

.ceo-message-grid {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
    gap: 2rem 2.5rem;
    align-items: start;
}

.ceo-message-content {
    min-width: 0;
}

.ceo-message-content p {
    margin-bottom: 1.15rem;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

.ceo-message-content p:last-child {
    margin-bottom: 0;
}

/* CEO card — left column (~40%) */
.ceo-message-aside {
    min-width: 0;
}

.ceo-profile-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    width: fit-content;
    max-width: 100%;
}

.ceo-profile-card__photo {
    line-height: 0;
}

.ceo-profile-card__photo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 400px;
    height: auto;
    margin: 0 auto;
}

.ceo-profile-card__bar {
    padding: 0.9rem 1rem;
    background: #ed1821;
    text-align: center;
}

.ceo-profile-card__name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .ceo-message-grid {
        grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .ceo-message-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .ceo-message-aside {
        order: 1;
    }

    .ceo-message-content {
        order: 2;
    }

    .ceo-profile-card {
        margin-left: auto;
        margin-right: auto;
    }

    .ceo-profile-card__photo img {
        max-height: 340px;
    }
}

@media (max-width: 480px) {
    .ceo-message-heading {
        font-size: 22px;
        margin-bottom: 1.25rem;
    }

    .ceo-profile-card {
        max-width: 100%;
    }
}
