.pt-container-d2bf53e9 {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.pt-item-d2bf53e9 {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    cursor: pointer;
}

.pt-item-d2bf53e9::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: background-color 0.6s ease;
    z-index: 1;
}

.pt-item-d2bf53e9.is-active {
    flex: 2.5;
}

.pt-content-d2bf53e9 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pt-title-d2bf53e9 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pt-desc-d2bf53e9 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, margin-bottom 0.6s ease;
}

.pt-item-d2bf53e9.is-active .pt-desc-d2bf53e9 {
    max-height: 300px;
    opacity: 1;
    margin-bottom: 20px;
}

.pt-desc-d2bf53e9 p {
    margin: 0;
}

.pt-link-d2bf53e9 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 1024px) {
    .pt-container-d2bf53e9 {
        flex-direction: column;
    }
    
    .pt-item-d2bf53e9 {
        min-height: 250px;
    }
    
    .pt-item-d2bf53e9.is-active {
        min-height: 400px;
        flex: auto;
    }
}