/* My Custom Widget Styles */
.my-custom-widget h2 {
    color: #333;
    font-size: 24px;
}

.my-custom-widget-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Eklendi */
}

.content-column {
    width: 45%;
}

.video-column {
    width: 50%;
}

.animated-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(1em);
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-column h2 {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-column .content {
    font-size: 18px;
    line-height: 1.6;
}

.video-column video {
    width: 100%;
    height: auto;
}

/* Mobil cihazlar için medya sorgusu */
@media (max-width: 767px) {
    .my-custom-widget-container {
        flex-direction: column-reverse;
    }

    .content-column,
    .video-column {
        width: 100%;
    }

    .video-column {
        margin-bottom: 20px;
    }
}
