.steering-page {
    min-height: 100vh;
    background: #f7f9f7;
    padding: 55px 20px 80px;
}

.steering-container {
    max-width: 1150px;
    margin: 0 auto;
}


/* Header */

.steering-header {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.steering-header span {
    display: block;
    margin-bottom: 8px;
    color: #287c4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.steering-header h1 {
    margin: 0 0 12px;
    color: #17251c;
    font-size: 42px;
    line-height: 1.1;
}

.steering-header p {
    margin: 0;
    color: #707a73;
    font-size: 14px;
    line-height: 1.7;
}


/* Grid */

.steering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* Card */

.steering-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e7e3;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.steering-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
}


/* Image */

.steering-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e9eee9;
}

.steering-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.steering-card:hover .steering-image img {
    transform: scale(1.03);
}


/* No image */

.steering-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steering-no-image span {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #287c4b;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
}


/* Content */

.steering-content {
    padding: 20px;
}

.steering-content h2 {
    margin: 0 0 7px;
    color: #17251c;
    font-size: 20px;
    line-height: 1.25;
}

.steering-designation {
    margin: 0 0 4px;
    color: #287c4b;
    font-size: 13px;
    font-weight: 700;
}

.steering-organization {
    margin: 0;
    color: #737c76;
    font-size: 12px;
    font-weight: 500;
}

.steering-bio {
    margin: 15px 0 0;
    padding-top: 14px;
    border-top: 1px solid #edf0ed;
    color: #6d756f;
    font-size: 12px;
    line-height: 1.65;
}


/* Empty */

.steering-empty {
    padding: 70px 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e1e7e3;
}

.steering-empty h2 {
    margin: 0 0 8px;
    color: #17251c;
    font-size: 22px;
}

.steering-empty p {
    margin: 0;
    color: #737c76;
    font-size: 13px;
}


/* Tablet */

@media (max-width: 850px) {

    .steering-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 600px) {

    .steering-page {
        padding: 40px 15px 60px;
    }

    .steering-header h1 {
        font-size: 34px;
    }

    .steering-header p {
        font-size: 13px;
    }

    .steering-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .steering-image {
        height: 300px;
    }

}