.ctc-block {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
}

.ctc-left, .ctc-right {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    box-sizing: border-box;
}

.ctc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ctc-selected-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.ctc-right {
    display: flex;
    flex-direction: column;
}

.ctc-button-wrapper {
    margin-top: 10px;
}

.ctc-button-text {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* Responzivní pro editor */
@media (max-width: 768px) {
    .ctc-left, .ctc-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ctc-block {
        flex-direction: column;
    }
}
