/* =========================================
   APSA India - President Message (president_message.css)
   ========================================= */

/* ---- President Message Section ---- */
.president-section {
    padding: 70px 0;
    background-color: var(--white);
}

.president-section__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
}

.president-content p {
    color: var(--text-grey);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 18px;
}

.president-signature {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.president-signature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.president-signature span {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 600;
}

.president-photo {
    flex-shrink: 0;
    width: 220px;
}

.president-photo img {
    width: 220px;
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    border-bottom: 4px solid var(--primary-red);
}

.president-photo .president-name {
    text-align: center;
    padding: 12px 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.president-photo .president-role {
    text-align: center;
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .president-section__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .president-photo {
        width: 160px;
        margin: 0 auto;
    }

    .president-photo img {
        width: 160px;
    }

    .president-signature {
        text-align: left;
    }
}
