.is-a9068244-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    gap: 10px;
}

.is-a9068244-item {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.5s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
}

.is-a9068244-item.is-a9068244-active {
    flex: 5;
    cursor: default;
}

.is-a9068244-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 1;
}

.is-a9068244-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.is-a9068244-title-wrap {
    white-space: nowrap;
}

.is-a9068244-title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.is-a9068244-item:not(.is-a9068244-active) .is-a9068244-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0 auto;
}

.is-a9068244-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
    margin-top: 0;
}

.is-a9068244-active .is-a9068244-details {
    opacity: 1;
    max-height: 200px;
    margin-top: 15px;
}

.is-a9068244-desc {
    margin: 0 0 15px 0;
    color: #eee;
}

.is-a9068244-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.is-a9068244-btn:hover {
    background-color: #005177;
    color: #fff;
}