:root {
    --color1: #1F3B5D;
    --color2: #FBD405;

    /* refined gradient */
    --dosen-grad-1: #eef5ff;
    --dosen-grad-2: #c7dcf7;
    --dosen-grad-3: #9fc2ea;
}

/* HERO */
.dosen-hero {
    position: relative;
    padding: 120px 0;
    min-height: 620px;
    background: linear-gradient(135deg, var(--dosen-grad-1), var(--dosen-grad-2), var(--dosen-grad-3));
    overflow: hidden;
}

/* CONTENT */
.dosen-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
}

/* BADGE */
.dosen-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--color1);
    margin-bottom: 20px;
    font-size: 14px;
}

/* TITLE */
.dosen-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color1);
    line-height: 1.15;
    margin-bottom: 20px;
}

.dosen-hero-title span {
    display: block;
}

/* LINE */
.dosen-hero-line {
    width: 65px;
    height: 5px;
    background: var(--color2);
    border-radius: 10px;
    margin-bottom: 20px;
}

/* DESC */
.dosen-hero-desc {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 520px;
}

/* IMAGE - ABSOLUTE */
.dosen-hero-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 90%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    animation: fadeRightSoft 1.2s ease forwards;
}

.dosen-hero-visual img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
}

/* subtle hover */
.dosen-hero-visual img:hover {
    transform: scale(1.04) translateY(-5px);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRightSoft {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .dosen-hero {
        padding: 80px 0 0;
        text-align: center;
        min-height: auto;
    }

    .dosen-hero-title {
        font-size: 38px;
    }

    .dosen-hero-desc {
        font-size: 16px;
        margin: 0 auto;
    }

    .dosen-hero-line {
        margin: 0 auto 20px;
    }

    /* IMAGE BECOMES NORMAL FLOW */
    .dosen-hero-visual {
        position: relative;
        height: auto;
        margin-top: 40px;
        justify-content: center;
    }

    .dosen-hero-visual img {
        height: auto;
        max-width: 300px;
    }
}

@media (max-width: 576px) {

    .dosen-hero-title {
        font-size: 30px;
    }

    .dosen-hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .dosen-hero-desc {
        font-size: 15px;
    }
}

/* MAIN CONTENT */
:root {
    --color1: #1F3B5D;
    --color2: #FBD405;

    --dosen-bg-1: #ffffff;
    --dosen-bg-2: #f5f9ff;
    --dosen-bg-3: #edf5ff;
    --dosen-blue: #1677ff;
    --dosen-blue-soft: #eaf3ff;
    --dosen-text: #64708a;
    --dosen-border: rgba(31, 59, 93, 0.10);
}

.dosen-main-section {
    position: relative;
    padding: 72px 0 92px;
    background: linear-gradient(135deg, var(--dosen-bg-1) 0%, var(--dosen-bg-2) 48%, var(--dosen-bg-3) 100%);
    overflow: hidden;
}

.dosen-main-container {
    max-width: 1320px;
}

/* PANEL */
.dosen-sidebar,
.dosen-content-panel {
    border: 1px solid var(--dosen-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.07);
    backdrop-filter: blur(12px);
}

.dosen-sidebar {
    position: sticky;
    top: 110px;
    padding: 24px 18px;
}

.dosen-content-panel {
    padding: 30px;
}

/* SIDEBAR */
.dosen-sidebar-title {
    margin: 0 0 16px;
    color: var(--color1);
    font-size: 18px;
    font-weight: 700;
}

.dosen-search-box {
    position: relative;
}

.dosen-search-box i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #7c88a4;
    font-size: 16px;
}

.dosen-search-box input {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 44px;
    border: 1px solid rgba(31, 59, 93, 0.14);
    border-radius: 12px;
    background: #ffffff;
    color: var(--color1);
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: all 0.35s ease;
}

.dosen-search-box input:focus {
    border-color: rgba(22, 119, 255, 0.36);
    box-shadow: 0 12px 28px rgba(22, 119, 255, 0.09);
}

.dosen-sidebar-divider {
    height: 1px;
    margin: 28px 0;
    background: rgba(31, 59, 93, 0.12);
}

.dosen-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dosen-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 52px;
    padding: 13px 13px;
    border-radius: 14px;
    color: #64708a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.35s ease;
}

.dosen-filter-item span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dosen-filter-item i {
    width: 19px;
    color: #7c88a4;
    font-size: 16px;
    text-align: center;
    transition: all 0.35s ease;
}

.dosen-filter-item b {
    min-width: 36px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f5f8ff;
    color: #7c88a4;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.35s ease;
}

.dosen-filter-item:hover,
.dosen-filter-item.active {
    color: var(--dosen-blue);
    background: linear-gradient(135deg, #eef6ff, #dcecff);
    transform: translateY(-2px);
}

.dosen-filter-item:hover i,
.dosen-filter-item.active i {
    color: var(--dosen-blue);
}

.dosen-filter-item:hover b,
.dosen-filter-item.active b {
    color: var(--dosen-blue);
    background: rgba(22, 119, 255, 0.09);
}

.dosen-info-card {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    padding: 17px 15px;
    border: 1px solid rgba(31, 59, 93, 0.08);
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fbff, #edf5ff);
}

.dosen-info-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-top: 2px;
    border: 2px solid var(--dosen-blue);
    border-radius: 50%;
    color: var(--dosen-blue);
    font-size: 12px;
}

.dosen-info-content h4 {
    margin: 0 0 7px;
    color: var(--color1);
    font-size: 14px;
    font-weight: 700;
}

.dosen-info-content p {
    margin: 0;
    color: var(--dosen-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

/* CONTENT */
.dosen-content-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.dosen-section-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--dosen-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.dosen-content-header h2 {
    margin: 0 0 8px;
    color: var(--color1);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
}

.dosen-content-header p {
    max-width: 720px;
    margin: 0;
    color: var(--dosen-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.dosen-result-text {
    margin-bottom: 24px;
    color: var(--dosen-text);
    font-size: 14px;
    font-weight: 400;
}

/* CARD */
.dosen-card {
    display: block;
    height: 100%;
    padding: 14px;
    border: 1px solid rgba(31, 59, 93, 0.10);
    border-radius: 18px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(31, 59, 93, 0.045);
    transition: all 0.35s ease;
}

.dosen-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22, 119, 255, 0.28);
    box-shadow: 0 22px 42px rgba(31, 59, 93, 0.11);
}

.dosen-card-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.06;
    border-radius: 14px;
    background: linear-gradient(135deg, #f7f9fc, #edf1f6);
}

.dosen-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.dosen-card:hover .dosen-card-photo img {
    transform: scale(1.06);
}

.dosen-card-body {
    padding: 15px 2px 2px;
}

.dosen-card-body h3 {
    min-height: 48px;
    margin: 0 0 10px;
    color: var(--color1);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.dosen-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--dosen-blue-soft);
    color: var(--dosen-blue);
    font-size: 12px;
    font-weight: 600;
}

.dosen-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dosen-text);
    font-size: 13px;
    font-weight: 400;
}

.dosen-card-meta i {
    color: #7c88a4;
    font-size: 14px;
}

.dosen-pagination-area {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* ANIMATION */
.dosen-animate {
    opacity: 0;
    animation: dosenFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.dosen-delay-1 {
    animation-delay: 0.14s;
}

@keyframes dosenFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .dosen-main-section {
        padding: 54px 0 72px;
    }

    .dosen-sidebar {
        position: relative;
        top: auto;
        margin-top: 8px;
    }

    .dosen-content-panel {
        padding: 24px 20px;
    }

    .dosen-content-header h2 {
        font-size: 27px;
    }
}

@media (max-width: 767px) {
    .dosen-main-section {
        padding: 42px 0 62px;
    }

    .dosen-content-panel,
    .dosen-sidebar {
        border-radius: 18px;
    }

    .dosen-content-panel {
        padding: 22px 16px 28px;
    }

    .dosen-content-header {
        display: block;
        margin-bottom: 22px;
    }

    .dosen-content-header h2 {
        font-size: 25px;
    }

    .dosen-content-header p {
        font-size: 14px;
    }

    .dosen-result-text {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .dosen-card-body h3 {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .dosen-sidebar {
        padding: 20px 15px;
    }

    .dosen-filter-item {
        font-size: 13px;
    }

    .dosen-search-box input {
        height: 48px;
    }
}

/* SHOW DOSEN HERO */
.dosen-show-hero {
    position: relative;
    min-height: 440px;
    padding: 150px 0 95px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(125deg, #ffffff 0%, #eef5ff 42%, #cddfff 100%);
    overflow: hidden;
}

.dosen-show-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    opacity: 0;
    animation: dosenShowFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.dosen-show-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 0 30px;
    margin-bottom: 34px;
    border-radius: 18px;
    background: rgba(216, 231, 255, 0.78);
    color: #1677ff;
    box-shadow: 0 16px 38px rgba(31, 59, 93, 0.08);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: all 0.35s ease;
}

.dosen-show-hero-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(31, 59, 93, 0.12);
}

.dosen-show-hero-badge i {
    font-size: 24px;
}

.dosen-show-hero-badge span {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.dosen-show-hero-title {
    max-width: 1180px;
    margin: 0;
    color: #07145f;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -1.8px;
}

@keyframes dosenShowFadeUp {
    from {
        opacity: 0;
        transform: translateY(38px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE SHOW HERO */
@media (max-width: 1199px) {
    .dosen-show-hero-title {
        max-width: 960px;
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .dosen-show-hero {
        min-height: 360px;
        padding: 125px 0 72px;
    }

    .dosen-show-hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .dosen-show-hero-badge {
        min-height: 52px;
        padding: 0 24px;
        margin-bottom: 26px;
        border-radius: 16px;
    }

    .dosen-show-hero-badge span {
        font-size: 17px;
    }

    .dosen-show-hero-badge i {
        font-size: 21px;
    }
}

@media (max-width: 575px) {
    .dosen-show-hero {
        min-height: 330px;
        padding: 112px 0 58px;
    }

    .dosen-show-hero-title {
        font-size: 32px;
        line-height: 1.28;
        letter-spacing: -0.5px;
    }

    .dosen-show-hero-badge {
        min-height: 46px;
        gap: 10px;
        padding: 0 18px;
        margin-bottom: 22px;
        border-radius: 14px;
    }

    .dosen-show-hero-badge span {
        font-size: 15px;
    }

    .dosen-show-hero-badge i {
        font-size: 18px;
    }
}

/* SHOW DOSEN CONTENT */
.dosen-show-content-section {
    position: relative;
    padding: 72px 0 90px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #eef5ff 100%);
    overflow: hidden;
}

.dosen-show-panel {
    padding: 24px;
    border: 1px solid var(--dosen-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.07);
    backdrop-filter: blur(12px);
}

.dosen-profile-card,
.dosen-performance-card {
    border: 1px solid rgba(31, 59, 93, 0.10);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(31, 59, 93, 0.045);
}

.dosen-profile-card {
    padding: 24px;
    margin-top: 26px;
    margin-bottom: 20px;
}

.dosen-profile-photo {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1 / 1.05;
    background: linear-gradient(135deg, #f7f9fc, #edf1f6);
}

.dosen-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.dosen-profile-card:hover .dosen-profile-photo img {
    transform: scale(1.045);
}

.dosen-profile-info h2 {
    margin: 0 0 12px;
    color: var(--color1);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.6px;
}

.dosen-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}

.dosen-profile-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--dosen-blue-soft);
    color: var(--dosen-blue);
    font-size: 12px;
    font-weight: 600;
}

.dosen-profile-badges .is-certified {
    background: rgba(251, 212, 5, 0.18);
    color: var(--color1);
}

.dosen-profile-badges .is-certified i {
    color: var(--color2);
}

.dosen-profile-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dosen-profile-item {
    display: grid;
    grid-template-columns: 24px 130px 1fr;
    gap: 16px;
    align-items: flex-start;
}

.dosen-profile-item > i {
    margin-top: 2px;
    color: #7c88a4;
    font-size: 18px;
}

.dosen-profile-item strong {
    color: var(--dosen-text);
    font-size: 14px;
    font-weight: 600;
}

.dosen-profile-item p {
    margin: 0;
    color: var(--color1);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.dosen-profile-item a {
    color: var(--dosen-blue);
    text-decoration: none;
    font-weight: 600;
}

.dosen-performance-card {
    padding: 18px 20px;
    margin-top: 18px;
    transition: all 0.35s ease;
}

.dosen-performance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(31, 59, 93, 0.085);
}

.dosen-performance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.dosen-performance-head h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--color1);
    font-size: 17px;
    font-weight: 700;
}

.dosen-performance-head h3 > i {
    color: var(--dosen-blue);
    font-size: 20px;
}

.dosen-performance-head h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 27px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--dosen-blue-soft);
    color: var(--dosen-blue);
    font-size: 12px;
    font-weight: 700;
}

.dosen-performance-head a {
    color: var(--dosen-blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

.dosen-performance-head a:hover {
    color: var(--color1);
    transform: translateX(3px);
}

.dosen-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(31, 59, 93, 0.08);
    border-radius: 10px;
}

.dosen-table-wrap table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.dosen-table-wrap th {
    padding: 11px 14px;
    background: #f4f7fb;
    color: #64708a;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}

.dosen-table-wrap td {
    padding: 10px 14px;
    border-top: 1px solid rgba(31, 59, 93, 0.08);
    color: #64708a;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.dosen-table-wrap tbody tr {
    transition: all 0.25s ease;
}

.dosen-table-wrap tbody tr:hover {
    background: #f8fbff;
}

.dosen-table-wrap a {
    text-decoration: none !important;
    color: inherit;
}

.dosen-table-wrap a:hover {
    color: var(--dosen-blue);
}

/* RESPONSIVE SHOW CONTENT */
@media (max-width: 991px) {
    .dosen-show-content-section {
        padding: 54px 0 72px;
    }

    .dosen-show-panel {
        padding: 20px;
    }

    .dosen-profile-info h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .dosen-show-content-section {
        padding: 42px 0 62px;
    }

    .dosen-show-panel {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .dosen-profile-card {
        padding: 16px;
        margin-top: 22px;
    }

    .dosen-profile-info h2 {
        margin-top: 4px;
        font-size: 23px;
    }

    .dosen-profile-item {
        grid-template-columns: 22px 1fr;
        gap: 8px 12px;
    }

    .dosen-profile-item strong {
        grid-column: 2;
    }

    .dosen-profile-item p {
        grid-column: 2;
    }

    .dosen-performance-card {
        padding: 16px 14px;
    }

    .dosen-performance-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .dosen-performance-head h3 {
        font-size: 16px;
    }
}