/*
Theme Name: Milkzen Child
Template:   milkzen
Theme URI: https://themeforest.net/user/awaiken
Description: Milkzen Child Theme
Author: Awaiken Themes
Author URI: https://awaikenthemes.com/
Version: 1.0.0
Text Domain: milkzen-child
*/



/* style.css */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4,
.col-md-8,
.col-lg-6 {
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-md-8 {
    flex: 0 0 66.667%;
    max-width: 66.667%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.widget {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
	border:1px solid #ddd;
}

.widget-title {
    color: #00aaff;
    margin-bottom: 20px;
    font-size: 20px;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 10px;
}

.widget ul li a {
    text-decoration: none;
}

.widget ul li a:hover {
    text-decoration: underline;
}

.post-item {
    transition: box-shadow 0.3s;
}

.post-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-item-btn a:hover {
    color: #0056b3;
}

.breadcrumb-trail ol li + li:before {
    content: " / ";
    color: #fff;
    margin: 0 5px;
}

.breadcrumb-trail a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-trail a:hover {
    text-decoration: underline;
}


/* Tab Navigation Styles */
.tab-nav a.tab-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    color: #06A3DA;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-nav a.tab-link:hover,
.tab-nav a.tab-link.active {
    color: #091E3E;
    border-bottom: 2px solid #091E3E;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .tab-nav a.tab-link {
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Smooth Scroll Adjustment */
.category-section {
    scroll-margin-top: 100px; /* Adjust based on header height */
}