/* Blog Styles */
.blog-index {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #212121;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Filter */
.blog-filter {
    margin-bottom: 3rem;
    text-align: center;
}

.filter-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #bd8d11;
    background: transparent;
    color: #bd8d11;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #bd8d11;
    color: white;
}

/* Blog Grid */
.blog-grid {
    padding: 4rem 0;
    background-color: var(--light-gray);
    margin-top: -2px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 2rem;
}

.blog-card .blog-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.blog-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.blog-card .blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-card .read-more {
    color: var(--primary-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.blog-card .read-more:hover {
    gap: 1rem;
}

/* Blog Index Page */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 1;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 350px;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1.1rem;
    }
}

.blog-grid {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 2rem;
}

.blog-card .blog-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.blog-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.blog-card .blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-card .read-more {
    color: var(--primary-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.blog-card .read-more:hover {
    gap: 1rem;
}

@media (max-width: 1200px) {
    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }

    .blog-card .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Newsletter Signup */
.newsletter-signup {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-signup h3 {
    color: #212121;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.newsletter-signup p {
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #bd8d11;
}

/* Individual Blog Post */
.blog-post {
    padding: 4rem 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    color: #212121;
    font-size: 2.8rem;
    margin: 1rem 0;
}

.blog-hero {
    margin-bottom: 3rem;
}

.blog-hero img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-content h2 {
    color: #212121;
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.blog-content h3 {
    color: #212121;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.blog-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-content ul {
    margin: 1rem 0 2rem;
    padding-left: 1.5rem;
}

.blog-content li {
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.initiative, .success-story {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.initiative h4, .success-story h4 {
    color: #212121;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-section {
    background: #f8f9fa;
    padding: 3rem;
    text-align: center;
    border-radius: 10px;
    margin: 3rem 0;
}

.cta-section h3 {
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #bd8d11;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #9c7510;
}

/* Blog Post Specific Styles */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: #bd8d11;
}

.blog-breadcrumb i {
    font-size: 0.8rem;
    color: #999;
}

.blog-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.blog-section {
    margin: 3rem 0;
}

.key-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #bd8d11;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-item i {
    font-size: 2.5rem;
    color: #bd8d11;
    margin-bottom: 1rem;
}

.approach-item h3 {
    margin-bottom: 1rem;
    color: #212121;
}

.feature-list {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #bd8d11;
    position: absolute;
    left: 0;
}

.impact-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.impact-box h3 {
    color: #bd8d11;
    margin-bottom: 0.5rem;
}

.blog-navigation {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.next-post {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    color: #212121;
    transition: transform 0.3s ease;
}

.next-post:hover {
    transform: translateX(10px);
}

.next-post span {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.next-post h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.next-post i {
    color: #bd8d11;
}

.share-section {
    text-align: center;
    margin: 3rem 0;
}

.share-section h3 {
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-button:hover {
    transform: translateY(-3px);
}

.share-button.linkedin {
    background: #0077b5;
}

.share-button.twitter {
    background: #1da1f2;
}

.share-button.facebook {
    background: #1877f2;
}

.share-button.email {
    background: #666;
}

.related-posts {
    background: #f8f9fa;
    padding: 4rem 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Division Intro Section */
.division-intro {
    padding: 8rem 0 4rem;
    background-color: var(--light-gray);
}

.division-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.division-intro .intro-content {
    padding-right: 2rem;
}

.division-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.division-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.division-intro .post-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.9rem;
}

.division-intro .intro-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.division-intro .intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .division-intro .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .division-intro .intro-content {
        padding-right: 0;
    }

    .division-intro .intro-image {
        min-height: 300px;
    }

    .division-intro .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-content h2 {
        font-size: 1.8rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .initiative, .success-story, .cta-section {
        padding: 1.5rem;
    }

    .key-stats {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .blog-navigation {
        padding: 1.5rem;
    }

    .share-section {
        margin: 2rem 0;
    }
}
