/* =========================================================
   PROFILE SEKOLAH
   SLB BINA SEJAHTERA
========================================================= */


/* =========================================================
   HALAMAN
========================================================= */

.profile-sekolah-page {
    padding: 40px 0 60px;
    margin-top: 50px;
    background: #f4f6f9;
}


/* =========================================================
   FLEX ROW
========================================================= */

.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}


/* =========================================================
   CARD SAMBUTAN
========================================================= */

.sambutan-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sambutan-title {
    margin: 0 0 15px;
    text-align: center;
    font-weight: 700;
    color: #0A3D91;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sambutan-line {
    width: 60px;
    height: 4px;
    background: #0A3D91;
    margin: 0 auto 25px;
    border-radius: 2px;
}


/* =========================================================
   ISI SAMBUTAN
========================================================= */

.sambutan-text {
    flex-grow: 1;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
    color: #444;
    font-size: 14.5px;
}

.text-justify p {
    line-height: 1.7;
    margin-bottom: 16px;
}


/* =========================================================
   TANDA TANGAN
========================================================= */

/* .sambutan-signature {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.sambutan-signature span {
    display: block;
    color: #555;
    font-size: 13px;
    margin-bottom: 4px;
}

.sambutan-signature strong {
    display: block;
    color: #222;
    font-size: 14px;
    font-weight: 700;
} */


/* =========================================================
   CARD KEPALA SEKOLAH
========================================================= */

.card-kepsek {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    margin-bottom: 25px;
    border: none;
}

.kepsek-inner {
    padding: 30px 25px;
    text-align: center;
}

.kepsek-photo {
    width: 100%;
    max-width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.kepsek-name {
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #333;
    font-size: 18px;
}

.kepsek-position {
    display: inline-block;
    padding: 7px 14px;
    background: #e6f0ff;
    color: #0A3D91;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}


/* =========================================================
   PROFIL SEKOLAH
========================================================= */

.school-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.school-title {
    background: #0A3D91;
    color: #ffffff;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.school-title i {
    margin-right: 8px;
}


/* =========================================================
   ITEM PROFIL
========================================================= */

.school-item {
    display: flex;
    align-items: flex-start;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f3f5;
}

.school-item:last-child {
    border-bottom: none;
}

.school-item > i {
    flex: 0 0 35px;
    width: 35px;
    margin-top: 3px;
    font-size: 17px;
    color: #0A3D91;
}

.school-item > div {
    min-width: 0;
    flex: 1;
}

.school-item span {
    display: block;
    margin-bottom: 3px;
    color: #888;
    font-size: 12px;
}

.school-item p {
    margin: 0;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    word-break: break-word;
}

.school-item a {
    color: #1769aa;
    text-decoration: none;
    transition: all .3s ease;
}

.school-item a:hover {
    color: #0A3D91;
}


/* =========================================================
   EMPTY
========================================================= */

.profile-empty {
    padding: 80px 0;
    text-align: center;
}

.profile-empty img {
    display: block;
    width: 250px;
    max-width: 100%;
    margin: 0 auto 20px;
}

.profile-empty p {
    color: #888;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .profile-sekolah-page {
        padding: 35px 0 55px;
    }

    .sambutan-card {
        padding: 28px;
    }

    .kepsek-inner {
        padding: 25px 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .profile-sekolah-page {
        padding: 30px 0 50px;
        margin-top: 35px;
    }

    .equal-height-row {
        display: block;
    }

    .equal-height-row > [class*="col-"] {
        display: block;
    }

    .sambutan-card {
        padding: 25px 20px;
        margin-bottom: 25px;
        height: auto;
    }

    .sambutan-title {
        font-size: 20px;
    }

    .sambutan-text {
        font-size: 14px;
    }

    /* .sambutan-signature {
        margin-top: 25px;
    } */

    .card-kepsek {
        margin-bottom: 20px;
    }

    .kepsek-inner {
        padding: 25px 20px;
    }

    .kepsek-photo {
        max-width: 180px;
        height: 220px;
    }

    .school-title {
        font-size: 17px;
    }

    .school-item {
        padding: 13px 16px;
    }

    .school-item p {
        font-size: 12.5px;
    }

}