.tscs-01f73819-wrap {
    display: flex;
    width: 100%;
    height: 500px;
    overflow: hidden;
    gap: 6px;
}

.tscs-01f73819-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 500ms ease;
}

.tscs-01f73819-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    transition: background 500ms ease;
}

.tscs-01f73819-card.tscs-01f73819-expanded::before {
    background: rgba(0,0,0,0.15);
}

.tscs-01f73819-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tscs-01f73819-content {
    position: absolute;
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
}

.tscs-01f73819-pos-bottom-left {
    bottom: 0;
    left: 0;
}

.tscs-01f73819-pos-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    align-items: center;
}

.tscs-01f73819-pos-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
}

.tscs-01f73819-pos-top-left {
    top: 0;
    left: 0;
}

.tscs-01f73819-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    white-space: nowrap;
    transition: transform 400ms ease, opacity 300ms ease;
}

.tscs-01f73819-title.tscs-01f73819-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.tscs-01f73819-desc {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 400ms ease 100ms, max-height 400ms ease;
}

.tscs-01f73819-card.tscs-01f73819-expanded .tscs-01f73819-desc {
    opacity: 1;
    max-height: 200px;
}

.tscs-01f73819-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

/* Lightbox */
.tscs-01f73819-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.88);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
    cursor: pointer;
}

.tscs-01f73819-lightbox.tscs-01f73819-lightbox-open {
    opacity: 1;
    visibility: visible;
}

.tscs-01f73819-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transition: transform 300ms ease;
    cursor: default;
}

.tscs-01f73819-lightbox.tscs-01f73819-lightbox-open .tscs-01f73819-lightbox-img {
    transform: scale(1);
}

.tscs-01f73819-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease;
    z-index: 2;
}

.tscs-01f73819-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tscs-01f73819-lightbox-close::before,
.tscs-01f73819-lightbox-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
}

.tscs-01f73819-lightbox-close::before {
    transform: rotate(45deg);
}

.tscs-01f73819-lightbox-close::after {
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .tscs-01f73819-wrap {
        flex-direction: column;
        height: auto;
        min-height: 500px;
    }

    .tscs-01f73819-card {
        min-height: 120px;
    }

    .tscs-01f73819-title.tscs-01f73819-vertical {
        writing-mode: horizontal-tb;
        transform: none;
    }
}
