
.wp-block-did-you-know {
    display: flex;
    flex-direction: column;
    background-color: #E86427;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    position: relative;
}

.did-you-know__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.did-you-know__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
}

.did-you-know__icon svg {
    width: 23px;
    height: 23px;
}

.did-you-know__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff !important;
}

.did-you-know__content {
    color: #fff;
}

.did-you-know__content .did-you-know__title {
    color: #fff !important;
    display: none;
}

.did-you-know__text {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.did-you-know__text p {
    margin: 0;
}

.did-you-know__icon--desktop {
    display: none;
}

@media (min-width: 768px) {
    .wp-block-did-you-know {
        flex-direction: row;
        align-items: center;
        padding: 24px;
    }

    .did-you-know__header {
        display: none;
    }

    .did-you-know__icon--desktop {
        display: flex;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-right: 24px;
        padding: 10px;
    }

    .did-you-know__icon--desktop svg {
        width: 80px;
        height: 80px;
    }

    .did-you-know__content {
        display: flex;
        flex-direction: column;
    }

    .did-you-know__content .did-you-know__title {
        display: block;
        font-size: 24px;
        margin-bottom: 4px;
    }

    .did-you-know__text {
        font-size: 18px;
    }
}

.did-you-know-block .wp-block-did-you-know--editing {
    border: 2px dashed rgba(255, 255, 255, 0.5);
    padding: 20px;
    margin-left: 0;
}

.did-you-know-block .wp-block-did-you-know--editing .did-you-know__title {
    font-style: normal;
}

.did-you-know__content--editing .did-you-know__text-editor {
    min-height: 60px;
    color: #fff;
}

.did-you-know__content--editing .did-you-know__text-editor:focus {
    outline: none;
}

.did-you-know__content--editing .did-you-know__text-editor[data-is-placeholder-visible="true"] {
    color: rgba(255, 255, 255, 0.7);
}

.did-you-know__preview-placeholder {
    cursor: pointer;
    padding: 24px;
    border: 2px dashed #E86427;
    border-radius: 12px;
    text-align: center;
    color: #E86427;
    background-color: rgba(232, 100, 39, 0.1);
    transition: all 0.2s ease;
}

.did-you-know__preview-placeholder:hover {
    background-color: rgba(232, 100, 39, 0.2);
    border-color: #d55a20;
}

.did-you-know__preview-placeholder p {
    margin: 0;
    font-size: 14px;
}

.did-you-know__preview {
    cursor: pointer;
}

.did-you-know__preview:hover {
    opacity: 0.95;
}
