.tis-152ab701-container {
    width: 100%;
    position: relative;
}

.tis-152ab701-tabs-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    padding-top: 20px;
}

.tis-152ab701-active-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, #42484f 5%, #ffffff 50%, #42484f 95%);
    border-image-slice: 1;
    transition: left 0.3s ease, width 0.3s ease;
    z-index: 10;
}

.tis-152ab701-tabs-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
    justify-content: center;
    position: relative;
}

.tis-152ab701-tab {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    position: relative;
}

@media (max-width: 767px) {
    .tis-152ab701-tabs-container {
        flex-direction: column;
        align-items: center;
    }
    .tis-152ab701-tab {
        width: 100%;
    }
}

.tis-152ab701-tab.active,
.tis-152ab701-tab:hover {
    opacity: 1;
}

.tis-152ab701-pill {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    color: #aaaaaa;
    background-color: #333333; /* Fallback */
}

/* Default Active state */
.tis-152ab701-tab.active .tis-152ab701-pill {
    border-color: #ffffff;
    background-color: #e60049; /* Fallback */
    color: #ffffff;
}

.tis-152ab701-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #888888;
    transition: color 0.3s ease;
}

.tis-152ab701-tab.active .tis-152ab701-desc {
    color: #dddddd;
}

.tis-152ab701-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #aaaaaa;
    transition: color 0.3s ease;
}

.tis-152ab701-tab.active .tis-152ab701-link {
    color: #ffffff;
}

.tis-152ab701-images {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.tis-152ab701-image {
    display: none;
    width: 100%;
    max-width: 1200px;
    animation: tisFadeInUp 0.5s ease-out forwards;
}

.tis-152ab701-image.active {
    display: block;
}

.tis-152ab701-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

@keyframes tisFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
