/* Global Styles */
.insights-custom-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header Section */
.insights-custom-header {
    text-align: center;
    background-color: #004d26;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.insights-custom-search-bar {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.insights-custom-search-bar input {
    width: 50%;
    padding: 8px;
    border: none;
    border-radius: 5px;
}

.insights-custom-search-bar button {
    padding: 8px 15px;
    background-color: #ffaa00;
    border: none;
    cursor: pointer;
}

/* Tabs */
.insights-custom-tabs {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    border-bottom: 2px solid #ddd;
}

.insights-custom-tab {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none;
}

.insights-custom-tab.active {
    border-bottom: 3px solid #ffaa00;
    font-weight: bold;
}

/* Year Filter */
.insights-custom-year-filter {
    padding: 8px;
    border: 1px solid #ddd;
}

/* Blog Grid */
.insights-custom-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.insights-custom-post {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.insights-custom-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insights-custom-post-content {
    padding: 15px;
}

.insights-custom-read-more {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #ffaa00;
    font-weight: bold;
}

/* View More Button */
.insights-custom-view-more {
    text-align: center;
    margin-top: 20px;
}

.insights-custom-view-more-button {
    padding: 10px 20px;
    background-color: #ffaa00;
    border: none;
    cursor: pointer;
}

/* Blog Detail Page */
.insights-custom-featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.insights-custom-blog-content {
    font-size: 1rem;
    line-height: 1.6;
}

/* Table of Contents */
.insights-custom-table-of-contents {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.insights-custom-table-of-contents ul {
    list-style-type: none;
    padding: 0;
}

.insights-custom-table-of-contents ul li a {
    text-decoration: none;
    color: #004d26;
    font-weight: bold;
}

/* Key Takeaways */
.insights-custom-key-takeaways {
    background: #eafbea;
    padding: 15px;
    border-radius: 5px;
}

/* Video Embed */
.insights-custom-video-embed {
    margin: 20px 0;
}

/* Call to Action */
.insights-custom-cta-box {
    background: #004d26;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.insights-custom-cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background: #ffaa00;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

/* Related Blogs */
.insights-custom-related-blogs {
    margin-top: 40px;
}

.insights-custom-related-grid {
    display: flex;
    gap: 20px;
}

.insights-custom-related-post {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

.insights-custom-related-post img {
    width: 100%;
    height: auto;
}

.insights-custom-comments-section {
    margin-top: 40px;
}
