/*!
Theme Name: Sycols Child theme
Theme URI: https://bracketweb.com/sycolswp/
Template: sycols
Author: Bracket Web
Author URI: https://themeforest.net/user/bracket-web
Description: This is a Child theme for Sycols WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sycols-child

css for video and image gallery
*/

.tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-link {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}

.tab-link.active {
    background-color: #333;
    color: #fff;
}

.tabs-content {
    margin-top: 20px;
}

.tabs__tab {
    display: none;
}

.tabs__tab.active {
    display: block;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; 
}

.tab-img-box {
    flex: 1 1 calc(33.333% - 15px); 
    margin-bottom: 20px; 
}

.tab-title-box {
    margin-top: 10px;
} 