:root {
    --primary: #4B0082;
    --secondary: #FFD700;
    --accent: #000000;
    --light: #F9F9F9;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--accent);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.accent-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-top: 3px solid var(--secondary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: var(--light);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
    background: none;
    border: none;
    color: var(--primary);
}

.no-scroll {
    overflow: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(75, 0, 130, 0.2), rgba(75, 0, 130, 0.2)),
                url('images/african.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    color: var(--primary);
    border: 1px solid var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Mission Section */
.mission-section {
    background-color: var(--secondary);
    padding: 4rem 2rem;
    text-align: center;
}

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Goal Section */
.goal-section {
    background-color: var(--secondary);
    padding: 4rem 2rem;
    text-align: center;
}

.goal-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.goal-card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}


/* Vision Section */
.vision-section {
    background-color: var(--secondary);
    padding: 4rem 2rem;
    text-align: center;
}

.vision-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision-card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--accent);
}

/* Founder Section */
.founder-section {
    padding: 4rem 2rem;
    background-color: var(--light);
}

.founder-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.founder-image {
    flex: 1;
    min-width: 300px;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.founder-bio {
    flex: 2;
}

.founder-bio h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.founder-bio h3 {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--primary);
}

.founder-bio p {
    margin-bottom: 1rem;
}

/* Initiatives Section */
.initiatives-section {
    padding: 4rem 2rem;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.initiative-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.initiative-card:hover {
    transform: translateY(-10px);
}

.initiative-img {
    height: 200px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.initiative-content {
    padding: 1.5rem;
}

.initiative-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.initiative-content p {
    margin-bottom: 1.5rem;
}

.learn-more {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 3px;
}

/* Events Section */
.events-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--secondary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 50%;
    text-align: left;
}

.timeline-content {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    width: 90%;
    position: relative;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.timeline-date {
    font-weight: 600;
    color: black;
    margin-bottom: 0.5rem;
}

.btn-primary {
    font-weight: 600;
    color: black;
    margin-bottom: 0.5rem;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -37px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -37px;
}

/* Blog Section */
.blog-section {
    padding: 4rem 2rem;
    background-color: var(--light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.blog-excerpt {
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 3px;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all a {
    padding: 0.8rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.view-all a:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

/* Impact Section */
.impact-section {
    padding: 4rem 2rem;
    background-color: var(--primary);
    color: var(--white);
}

.impact-section h2 {
    color: var(--white);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: var(--secondary);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 200px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 2rem;
    background-color: var(--light);
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1 1 300px;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.8rem 2rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

/* Get Involved Section */
.get-involved-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.opportunity-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.opportunity-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.opportunity-card h3 {
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    min-height: 150px;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--accent);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

.footer-links h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.footer-contact h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        padding: 1rem;
        min-height: 80px;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: fixed;
        top: 80px;
        left: 0;
        background: var(--white);
        z-index: 100;
        padding: 2rem 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem;
    }
    
    .mobile-menu {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 1rem;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    nav ul li a:hover {
        color: var(--primary);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-container {
        flex-direction: column;
    }
    
    .founder-image {
        min-width: 100%;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -37px;
        right: auto;
    }
}

.event-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.btn {
    padding: 5px 10px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    color: white;
}


########blog

/* Blog Post Styles */
.blog-post-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.blog-post {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.blog-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.blog-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.blog-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(75,0,130,0.1), rgba(75,0,130,0.3));
}

.blog-content {
    padding: 3rem;
}

.intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.content-block {
    margin-bottom: 3rem;
}

.quote-card {
    background: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--secondary);
    opacity: 0.3;
    font-size: 2rem;
}

.quote-card blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
    padding: 0;
}

.highlight-block {
    background: var(--light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    border-left: 4px solid var(--primary);
}

.highlight-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gold-block {
    background: rgba(255,215,0,0.1);
    border-left-color: var(--secondary);
}

.gold-card {
    background: rgba(255,215,0,0.1);
    border-left-color: var(--secondary);
}

.checklist ul {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checklist i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.example-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.example-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.action-steps ul {
    list-style: none;
    margin: 1.5rem 0;
}

.action-steps li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.call-to-action {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light);
    border-radius: 10px;
}

.conclusion {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 3rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tags-title {
    font-weight: 600;
    color: var(--primary);
}

.tag {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary);
    color: white;
}

.author-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    margin: 2rem 0;
    background: var(--light);
    border-radius: 10px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.author-social a {
    color: var(--primary);
    transition: color 0.3s;
}

.author-social a:hover {
    color: var(--secondary);
}

.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.nav-card {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s;
}

.nav-card:hover {
    transform: translateY(-5px);
}

.nav-label {
    font-size: 0.9rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.nav-card h4 {
    color: var(--accent);
    margin: 0;
}

.related-posts {
    margin: 3rem 0;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-card {
    text-decoration: none;
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.related-card h4 {
    color: var(--primary);
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 2rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-navigation {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* Compact Report Embed Styles */
.report-embed {
    background: lightgrey;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 1.5rem auto;
    max-width: 600px;
}

.embed-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.embed-thumbnail {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.embed-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.embed-meta h3 {
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.meta-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--accent);
}

.meta-details i {
    color: var(--secondary);
    margin-right: 0.3rem;
}

.embed-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.embed-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .embed-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .embed-thumbnail {
        width: 100%;
        height: 120px;
    }
    
    .embed-actions {
        justify-content: center;
    }
}