/* =========================================================
   HALAMAN GURU & STAFF
========================================================= */

.guru-page {
    padding: 70px 0 80px;
    background: #fff;
    min-height: 600px;
}

.guru-header {
    margin-bottom: 35px;
}

.guru-label {
    display: inline-block;
    color: #f5b900;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.guru-header h2 {
    margin: 0 0 8px;
    color: #0b3768;
    font-size: 32px;
    font-weight: 700;
}

.guru-header p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* =========================================================
   GRID
========================================================= */

.guru-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* =========================================================
   CARD
========================================================= */

.guru-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 22px;
    border-radius: 14px;
    background: linear-gradient(
        145deg,
        #0b4d8c 0%,
        #087dcc 55%,
        #09a7e8 100%
    );
    box-shadow: 0 8px 25px rgba(0, 55, 100, .15);
    color: #fff;
    transition: all .3s ease;
}

.guru-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    bottom: -75px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.guru-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 55, 100, .25);
}


/* =========================================================
   BAGIAN ATAS
========================================================= */

.guru-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    min-height: 120px;
}

.guru-info {
    flex: 1;
    padding-top: 45px;
}

.guru-info h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.guru-info p {
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 12px;
}

.guru-info p i {
    margin-right: 5px;
}


/* =========================================================
   FOTO
========================================================= */

.guru-photo {
    width: 125px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
}

.guru-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}


/* =========================================================
   GARIS
========================================================= */

.guru-divider {
    height: 1px;
    margin: 18px 0;
    border-top: 1px dashed rgba(255,255,255,.7);
}


/* =========================================================
   DATA GURU
========================================================= */

.guru-data {
    min-height: 125px;
}

.guru-data p {
    margin: 7px 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
}

.guru-data strong {
    font-weight: 600;
}


/* =========================================================
   BAGIAN BAWAH
========================================================= */

.guru-card-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
}

.guru-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guru-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    color: #fff;
    background: rgba(255,255,255,.15);

    font-size: 13px;

    transition: all .25s ease;
}

.guru-social a:hover {
    background: #fff;
    color: #087dcc;
}


/* =========================================================
   TOMBOL LIHAT
========================================================= */

.guru-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 17px;

    border-radius: 20px;

    background: #fff;
    color: #0870b8;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: all .25s ease;
}

.guru-detail-btn:hover {
    color: #0870b8;
    background: #f5f5f5;
    text-decoration: none;
}


/* =========================================================
   EMPTY
========================================================= */

.guru-empty {
    grid-column: 1 / -1;

    padding: 60px 20px;

    text-align: center;

    color: #777;
    font-size: 15px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .guru-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .guru-page {
        padding: 45px 0 60px;
    }

    .guru-header h2 {
        font-size: 27px;
    }

    .guru-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guru-card {
        min-height: auto;
    }

}

@media (max-width: 480px) {

    .guru-card-top {
        min-height: 105px;
    }

    .guru-photo {
        width: 105px;
        height: 130px;
    }

    .guru-info {
        padding-top: 25px;
    }

}
/* =========================================================
   DETAIL GURU
========================================================= */

.guru-detail-page {
    padding: 70px 0 80px;
    background: #f7f9fc;
}

.guru-detail-card {
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;

    overflow: hidden;

    background: #fff;
    border-radius: 15px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}


/* FOTO */

.guru-detail-photo {
    width: 38%;
    min-height: 480px;

    background: #eef3f8;
}

.guru-detail-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* CONTENT */

.guru-detail-content {
    width: 62%;
    padding: 45px 45px 35px;
}

.guru-detail-label {
    display: inline-block;

    margin-bottom: 8px;

    color: #f5b900;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .5px;
}

.guru-detail-content h1 {
    margin: 0;

    color: #0b3768;

    font-size: 30px;
    line-height: 1.3;

    font-weight: 700;
}

.guru-detail-line {
    width: 50px;
    height: 4px;

    margin: 15px 0 25px;

    background: #f5b900;
}


/* INFO */

.guru-detail-info {
    display: flex;
    align-items: flex-start;

    margin-bottom: 17px;
}

.guru-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-right: 13px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf6fd;
    color: #087dcc;

    font-size: 13px;
}

.guru-detail-info small {
    display: block;

    margin-bottom: 3px;

    color: #999;

    font-size: 11px;
}

.guru-detail-info strong {
    display: block;

    color: #444;

    font-size: 13px;
    font-weight: 600;
}

.guru-detail-info a {
    color: #087dcc;

    font-size: 13px;
}

.guru-detail-info a:hover {
    color: #0b3768;
}


/* SOCIAL */

.guru-detail-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
    padding-top: 22px;

    border-top: 1px solid #eee;
}

.guru-detail-social > span {
    margin-right: 5px;

    color: #777;

    font-size: 12px;
}

.guru-detail-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #0b3768;
    color: #fff;

    font-size: 13px;

    transition: all .25s ease;
}

.guru-detail-social a:hover {
    background: #f5b900;
    color: #0b3768;
}


/* KEMBALI */

.guru-detail-back {
    max-width: 1000px;

    margin: 25px auto 0;
}

.guru-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #0b3768;

    font-size: 13px;
    font-weight: 600;
}

.guru-detail-back a:hover {
    color: #f5b900;
}


/* RESPONSIVE */

@media (max-width: 767px) {

    .guru-detail-page {
        padding: 45px 0 60px;
    }

    .guru-detail-card {
        display: block;
    }

    .guru-detail-photo {
        width: 100%;
        height: 380px;
        min-height: 0;
    }

    .guru-detail-content {
        width: 100%;
        padding: 30px 25px;
    }

    .guru-detail-content h1 {
        font-size: 24px;
    }

}

@media (max-width: 480px) {

    .guru-detail-photo {
        height: 320px;
    }

    .guru-detail-content {
        padding: 25px 20px;
    }

}