/*
Theme Name: rádio Fema 106.3
Theme URI: https://www.radiofema.com.br
Author: VITOR HUGO DE SOUZA
Author URI: https://www.radiofema.com.br
Description: Tema criado pelo setor de Informática para a rádio fema 106.3
Version: 1.0
Tags: two-columns, left-sidebar, custom-header, custom-menu, custom-logo, blog
Text Domain: radio
License: CRIAÇÃO INTERNA DA INSTITUIÇÃO - GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html 
Created: 2025
*/

/*
.top-bar{
    background: green;
    height: 70px;
}
*/

/**
1. Normalize
2. Theme Specific CSS
*/


/* 1. Normalize */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 

 .videos-container {
      display: flex;
      flex-wrap: wrap;           /* permite quebrar linha */
      gap: 10px;
      justify-content: center;
    }
    .video {
      flex: 1 1 23%;             /* base de 23%, mas flexível */
    }
    iframe {
      width: 100%;
      height: 250px;
      border: none;
    }

    /* Responsividade para telas menores */
    @media (max-width: 768px) {
      .video {
        flex: 1 1 100%;          /* ocupa largura total em telas pequenas */
      }
      iframe {
        height: 200px;           /* altura menor para telas pequenas */
      }
    }
 