.tis-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.tis-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    min-height: 250px;
}

.tis-right {
    flex: 1 1 50%;
    background-size: cover;
    background-position: center;
    min-height: 250px;
    box-sizing: border-box;
}

.tis-text {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 30px;
}

.tis-button-wrapper {
    margin-top: auto;
}

.tis-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .tis-container {
        flex-direction: column;
        min-height: auto !important; /* Allow layout breakdown height to override */
    }
    .tis-left, .tis-right {
        flex: 1 1 100%;
        min-height: auto;
    }
    .tis-right {
        height: 250px;
    }
}
