/*
Theme Name:   finance child theme
Description:  Write here a brief description about your child-theme
Author:       admin
Author URL:   https://themeforest.net/user/themesflat/portfolio
Template:     finance
Version:      1.4.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  finance-child
*/

/* Write here your own personal stylesheet */
.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;
} 