.mt-613b69e5-showcase {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    font-family: inherit;
    width: 100%;
}

.mt-613b69e5-sidebar {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    background-color: #1d1d1b;
    padding: 10px 0;
    border-radius: 4px;
}

.mt-613b69e5-tab-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mt-613b69e5-tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mt-613b69e5-tab-btn.active {
    color: #1d1d1b;
    background-color: #ffffff;
}

.mt-613b69e5-tab-btn.active .arrow-indicator {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #ffffff;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
}

.mt-613b69e5-content {
    flex-grow: 1;
}

.mt-613b69e5-tab-panel {
    display: none;
}

.mt-613b69e5-tab-panel.active {
    display: block;
}

.mt-613b69e5-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.mt-613b69e5-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.mt-613b69e5-item-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.mt-613b69e5-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-613b69e5-item-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
}

/* Responsive Mobile Layout rules */
@media (max-width: 767px) {
    .mt-613b69e5-showcase {
        flex-direction: column;
        gap: 20px;
    }
    .mt-613b69e5-sidebar {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 5px;
    }
    .mt-613b69e5-tab-btn {
        flex-grow: 1;
        text-align: center;
        justify-content: center;
        padding: 10px 15px;
    }
    .mt-613b69e5-tab-btn.active .arrow-indicator {
        display: none;
    }
    .mt-613b69e5-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
