* {
    font-family: "San Francisco" !important;
    cursor: none !important;
}

/* ===== Main Page ===== */

body {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    align-items: center;
    background: #fff;
}

.header {
    height: 75px;
    border-bottom: 1px solid #E9E9E9;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 48px 0 48px;
}

.logo-group>img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}

.logo-group {
    display: flex;
    align-items: center;
    margin-right: 12px;
    flex-direction: row;
    justify-content: flex-start;
}

.logo-group>.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.logo-group>.logo-text-group>.header-text-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.logo-group>.logo-text-group>.header-text-subtitle {
    font-size: 12px;
    color: #000;
}

.header>.header-body {
    width: 1248px;
    display: flex;
    justify-content: space-between;
}

.header-body>.subgroup {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-body>.subgroup>.logo>a {
    user-select: none;
    cursor: pointer;
    text-decoration: none;
}

.header-menu {
    margin-left: 36px;
    display: flex;
    flex-wrap: nowrap;
    gap: 36px;
}

.header-menu>.menu-item>a {
    text-decoration: none;
    color: #777;
    font-size: 15px;
    user-select: none;
    cursor: pointer;
}

.header-menu>.menu-item>a:hover {
    color: #5a5a5a;
}

.bold {
    font-weight: bold;
}

.search-box {
    width: 210px;
    height: 32px;
    background: #F3F3F3;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-toggle {
    width: 36px;
    height: 25px;
    margin-right: 12px;
    background: #F3F3F3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.lang-toggle>.lang-icon {
    width: 21px;
    height: 21px;
    object-fit: cover;
    border-radius: 20px;
}

.lang-toggle>.down-triangle {
    width: 6px;
    height: 6px;
    margin: 1px 1px 0 3px;
}

.search-box>img {
    width: 12px;
    height: 12px;
    margin-left: 12px;
}

.search-box>input {
    width: 160px;
    height: 24px;
    margin: 0 16px 1px 0;
    border: none;
    background: #0000;
    color: #777;
    font-size: 14px;
    padding: 2px 1px 0 1px;
}

.search-box>input[type="text"]:focus {
    outline: none;
    border: none;
}

.lang-select-box {
    border: 1px solid #E9E9E9;
    background: #F3F3F3;
    position: absolute;
    top: 52px;
    left: -34px;
    width: 100px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lang-select-box>.lang-button {
    height: 28px;
    width: 100px;
    padding: 0 5px 0 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    user-select: none;
    cursor: pointer;
}

.lang-select-box>.lang-button>a {
    color: #000;
    font-size: 12px;
    text-decoration: none;
}

.lang-select-box>.lang-button>img {
    width: 21px;
    height: 21px;
    border-radius: 16px;
    object-fit: cover;
    margin-left: 6px;
    margin-right: 8px;
}

.div-line {
    width: 100px;
    height: 0px;
    border: 1px solid #E9E9E9;
}

.hidden {
    width: 0;
    height: 0;
    display: none;
}

.content {
    width: 1248px;
    max-width: 1248px;
    padding: 0 48px 48px 48px;
    margin-top: 75px;
    z-index: 1;
    /* border: 1px solid red; */
}

.content-center {
    width: 1248px;
    max-width: 1248px;
    padding: 0 48px 48px 48px;
    margin-top: 75px;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* border: 1px solid red; */
}

/* .main-gallery-viewer {
    width: 100%;
    height: 560px;
    background: #d5d5d5;
    margin-top: 75px;
}

.main-gallery-viewer>img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    user-select: none;
} */

/* main photo gallery */
.main-gallery-viewer {
    width: 100%;
    height: 560px;
    position: relative;
    overflow: hidden;
    margin-top: 75px;
}

.photo-container {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.photo-container img.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.overlay>.main-gallery-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.overlay>.main-gallery-subtitle {
    font-size: 30px;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.photo-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.photo-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.photo-indicator span:hover {
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.1s ease-in-out;
}

.photo-indicator span.active {
    background-color: rgba(255, 255, 255, 1);
}

/* end of main gallery */

/* Titles */

.t1 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 1000;
    line-height: normal;
}

.t2 {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.t3 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text-content {
    color: #1f1f1f;
    font-size: 18px;
    font-style: normal;
    line-height: 1.6;
}

.paper-content {
    color: #1f1f1f;
    font-size: 18px;
    font-style: normal;
    line-height: 1.6;
}

.paper-content>li {
    margin-bottom: 20px;
}

/* Spacer */
.spacer {
    /* background: #BFD7AE; */
    width: 100%;
    height: 10px;
}

/* Horizontal Gallery */
.h-gallery {
    height: 326px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    overflow-x: scroll;
    overflow-y: hidden;
}

.h-gallery>.component {
    height: 100%;
    min-width: 472px;
    width: 472px;
    /* background: #e2e2e2; */
    /* border: 1px solid green; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.h-gallery>.component>img {
    width: 100%;
    height: 260px;
    min-height: 260px;
    object-fit: cover;
    background: #eeeeee;
    transition: transform 0.3s ease;
}

.h-gallery>.component>img:hover {
    transform: scale(1.02);
}

.h-gallery>.component>.title {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.h-gallery>.component>.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 472px;
}

.h-gallery>.component>.subtitle {
    color: #9C9C9C;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* ===== Post Page ===== */
.tag-block {
    width: 100%;
    height: 21px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.tag-block>div {
    height: 21px;
    padding: 0 10px 0 10px;
    border-radius: 10px;
    background: #F1F1F1;
    color: #000;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    line-height: normal;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.ranking-badge {
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 4px;
    font-size: 15px;
    font-weight: 500;
    background: #ffc800;
    border-radius: 10px;
}

.select-disable {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.callout {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    background: #F1F1F1;
    padding: 8px 16px 8px 16px;
    border-radius: 20px;
}

.sub-li {
    margin-left: 16px;
    list-style-type: circle;
}

.profile-alt {
    width: 120px;
    height: 120px;
    background: #ededed;
    border-radius: 60px;
}

.profile-img {
    width: 120px;
    height: 120px;
    background: #ededed;
    object-fit: cover;
    border-radius: 60px;
    border: 0.5px solid #d0d0d0;
}

.profile-name {
    font-size: 15px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 4px;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 14px;
    margin-right: 14px;
    min-width: 120px;
}

.profile-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.profile-badge-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.profile-badge-container>div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 8px 1px 8px;
    border-radius: 10px;
    font-size: 11px;
    background: #dfdfdf;
    margin: 0 3px 0 3px;
}

.profile-badge-container>.prof {
    background: linear-gradient(to right, #E599FF, #8F7CFF);
}

.profile-badge-container>.phd {
    background: linear-gradient(to right, #ACE1FF, #4FACE0);
}

.profile-badge-container>.phd-course {
    background: linear-gradient(to right, #FFACE8, #FF7272);
}

.profile-badge-container>.ms {
    background: linear-gradient(to right, #FF9C72, #FF9C72);
}

.profile-badge-container>.ms-intern {
    background: linear-gradient(to right, #FF9C72, #FF9C72);
}

.profile-badge-container>.bs {
    background: linear-gradient(to right, #98F6E5, #6DE9A6);
}

.profile-badge-container>.default {
    background: linear-gradient(to right, #dddddd, #bdbdbd);
}