@charset "utf-8";
body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    padding-top: 5.0rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
}

.card {
    border-radius: 0.8rem!important;
}

.card-img-overlay {
    border-radius: 0.8rem!important;
}

.rounded-xl {
    border-radius: 0.8rem!important;
}

.rounded-xl-bottom {
    border-bottom-right-radius: 0.8rem !important;
    border-bottom-left-radius: 0.8rem !important;
}

.rounded-xl-top {
    border-top-left-radius: 0.8rem !important;
    border-top-right-radius: 0.8rem !important;
}


.text-profile-position {
    font-weight: 400;
}

.text-profile-bio {
    /* font-family: "Raleway"; */
    font-weight: 400;
}

.navbar {
    background-color: rgba(30, 30, 30, 0.6) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.publication-cover {
    height: 340px;   /* sebelumnya 230px */
    object-fit: cover;
}

@media (max-width: 767px) {
    .publication-cover {
        height: 240px;   /* sebelumnya 210px */
    }
}

.inline-badge {
    height: 16px;
    vertical-align: -10%;
    margin-right: 2px;
    line-break: unset;
}

.no-break {
    white-space: nowrap;
}

.cover-image {
    width: 180px;
    max-height: 120px;
}

.abstract-body {
    min-height: 100px;
}

img.lazy {
    background-image: url('images/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px 50px;
    min-height: 80px;
}

div.lazy {
    background-image: url('images/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px 50px;
    min-height: 80px;
}

.badge-publication {
    font-size: 100%;
}

.email-text {
    font-family: Source Code Pro, monospace;
}

.profile-grid {
    display: flex;
    flex-wrap: wrap;
}

/* Desktop: two solid columns side by side, natural order within each */
@media (min-width: 992px) {
    .profile-col-left,
    .profile-col-right {
        display: flex;
        flex-direction: column;
    }
}

/* Mobile: break the column wrappers into a single flex context
   so individual sections can be reordered freely, interleaved
   across what were the left/right columns on desktop */
@media (max-width: 991.98px) {
    .profile-grid {
        display: flex;
        flex-direction: column;
    }
    .profile-col-left,
    .profile-col-right {
        display: contents; /* unwraps the column div, exposing children directly to .profile-grid's flex context */
    }

    .order-education     { order: 1; }
    .order-research        { order: 2; }
    .order-professional   { order: 3; }
    .order-awards         { order: 4; }
    .order-peerreview      { order: 5; }
}