.beps-th-container {
position: relative;
width: 100%; height: auto;
aspect-ratio: 100 / 75;
--beps-th-speed: 0.4s; overflow: visible;
} .beps-th-piece {
position: absolute;
overflow: visible; cursor: pointer;
transition: z-index 0s;
}
.beps-th-piece:hover {
z-index: 10;
} .beps-th-img {
width: 100%;
height: auto;
display: block;
filter: grayscale(100%);
transition: filter var(--beps-th-speed) ease; pointer-events: none;
} .beps-th-piece:hover .beps-th-img {
filter: grayscale(0%);
}  .beps-th-tooltip {
position: absolute;
display: flex;
flex-direction: column;
justify-content: flex-start; text-align: left; background-color: rgba(255, 255, 255, 0.65);
border: 1px solid #E8E8E8;
border-radius: 10px;
padding: 18px 22px;
min-width: 210px;
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
box-shadow: 0px 4px 20px 15px rgba(0, 0, 0, 0.02); opacity: 0;
transform: translateY(6px);
pointer-events: none;
transition:
opacity var(--beps-th-speed) ease,
transform var(--beps-th-speed) ease;
z-index: 20;
white-space: normal;
word-break: break-word;
} .beps-th-piece:hover .beps-th-tooltip {
opacity: 1;
transform: translateY(0);
} .beps-th-num {
display: block;
font-size: 13px;
font-weight: 400;
color: #888888;
line-height: 1;
margin-bottom: 6px;
}
.beps-th-title {
display: block;
font-size: 15px;
font-weight: 700;
color: #1a1a1a;
line-height: 1.3;
margin-bottom: 6px;
}
.beps-th-desc {
font-size: 13px;
color: #555555;
line-height: 1.55;
margin: 0;
} .beps-th-outer {
position: relative;
width: 100%; overflow: visible;
} @media (max-width: 767px) {
.beps-th-container {
overflow: visible !important;
} .beps-th-piece.beps-th-active {
z-index: 10;
}
.beps-th-piece.beps-th-active .beps-th-img {
filter: grayscale(0%);
}
.beps-th-piece.beps-th-active .beps-th-tooltip {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
}