.elementor-34 .elementor-element.elementor-element-32fcd398{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-f109a57 *//* Stili per la sezione YouTube */
.youtube-section {
    display: flex;
    flex-wrap: wrap; /* Per la responsività su schermi piccoli */
    align-items: center;
    gap: 40px; /* Spazio tra le due colonne */
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

/* Colonna del testo */
.youtube-text {
    flex: 1;
    min-width: 300px;
}

.youtube-text h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 20px;
}

.youtube-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Pulsante per iscriversi */
.youtube-subscribe-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff0000;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.youtube-subscribe-btn:hover {
    background-color: #c40000;
    transform: scale(1.05);
    color: #ffffff;
}

/* Contenitore video responsivo */
.youtube-video-container {
    flex: 1.5;
    min-width: 320px;
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Proporzioni 16:9 */
    height: 0;
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 0;
}/* End custom CSS */