/* 遮罩层 */
.work-info-overlay-whole {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.work-info-overlay-whole.active {
    opacity: 1;
    visibility: visible;
}

/*!* 左侧详情面板 *!*/
.work-info-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /*box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 0px 0px 60px 60px #D6D6D6 inset;*/
    visibility: hidden;
    border-right-width: 1px;
    border-right-style: solid;
    /*border-right-color: rgba(212, 190, 0);*/
}

.work-info-panel-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90dvh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /*transition: transform 0.3s ease-out, height 0.1s ease-out;*/
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /*box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);*/
    visibility: hidden;
    border-top-width: 1px;
    border-top-style: solid;
    /*border-top-color: rgba(212, 190, 0);*/
}

.work-info-panel.active {
    transform: translateX(0);
    visibility: visible;
}

.work-info-panel-mobile.active {
    transform: translateY(0);
    visibility: visible;
}

.work-info-subtitle {
    font-family: 'Monument Grotesk Variable';
    font-size: 14px;
    font-weight: bold;
    /*font-weight: 500;*/
    /*color: rgba(212, 190, 0, 1);*/
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-variation-settings: 'slnt' 0, 'MONO' 0;
}

.work-info em {
    font-style: italic;
}

/* 详情面板内容 */
.work-info-body {
    flex: 1;
    overflow-y: auto;
    padding: 40px 48px;
}

.mobile .work-info-body {
    flex: 1;
    overflow-y: auto;
    padding: min(2.67rem, 40px) min(2.9rem, 48px);
}

.work-info-body::-webkit-scrollbar {
    width: 6px;
}

.work-info-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.work-info-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.work-info-body-content {
    font-family: 'Monument Grotesk Variable';
    font-size: 24px;
    /*color: rgba(132, 212, 112, 1);*/
    font-weight: bold;
    /*color: rgba(212, 190, 0, 1);*/
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    font-variation-settings: 'slnt' 0, 'MONO' 0;
}

.work-info-body p em {
    font-style: italic;
}

/* 元数据区域 */
.metadata-section {
    margin-top: 46px;
    /*padding-top: 36px;*/
    padding-top: 2px;
    /*border-top: 0px solid rgba(212, 190, 0, 1);*/
}

.copyright {
    font-family: 'Monument Grotesk Variable';
    font-size: 14px;
    font-weight: bold;
    /*font-weight: 450;*/
    /*color: rgba(186, 166, 0, 0.85);*/
    /*color: rgba(212, 190, 0, 1);*/
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    font-variation-settings: 'slnt' 0, 'MONO' 0;
}

.share-section {
    margin-bottom: 32px;
}

.share-links {
    display: flex;
    gap: 24px;
}

.share-link {
    font-family: 'Monument Grotesk Variable';
    font-size: 14px;
    /*color: rgba(186, 166, 0, 0.95);*/
    /*color: rgba(212, 190, 0, 1);*/
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    font-variation-settings: 'slnt' 0, 'MONO' 0;
    cursor: pointer;
    /*transition: all 0.2s ease;*/
    padding-bottom: 2px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: currentcolor;
    text-underline-offset: 4px;
}

.share-link:hover {
    /*color: rgba(186, 166, 0, 1);*/
}

.share-link:active {
    /*color: rgba(186, 166, 0, 0.80);*/
}