/* Single Farmer Case Study Page Styles */

/* Hero Section */
.single-case-study-hero {
    background: #53834F;
    padding: 20px 0 40px;
}

.single-case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.single-case-breadcrumb {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: left;
}

.single-case-breadcrumb .breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.single-case-breadcrumb .breadcrumb-link:hover {
    opacity: 0.8;
}

.single-case-breadcrumb .breadcrumb-separator {
    margin: 0 10px;
    color: #ffffff;
}

.single-case-breadcrumb .breadcrumb-current {
    color: #ffffff;
}

/* Hero Title */
.single-case-hero-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* Hero Dots */
.single-case-hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.single-case-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e6ae25;
}

/* Featured Image Section */
.single-case-featured-image {
    padding: 40px 0;
}

.featured-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Interview Content Section */
.single-case-interview-section {
    padding: 60px 0;
}

.interview-content {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.interview-content h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #E6AE25;
    margin: 0 0 30px 0;
}

.interview-content p {
    margin: 0 0 25px 0;
}

.interview-content strong {
    font-weight: 700;
    color: #42210b;
}

.interview-items p {
    margin-bottom: 20px;
}

/* Related Technologies Section */
.single-case-related-section {
    background: #FBF9F4;
    padding: 60px 0;
}

.related-section-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #E6AE25;
    text-align: center;
    margin: 0 0 50px 0;
}

.related-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-tech-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-tech-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-tech-content {
    padding: 20px;
}

.related-tech-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.related-tech-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 15px 0;
}

.related-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.related-tech-tag {
    display: inline-block;
    padding: 5px 12px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    background: #ffffff;
    border: 1px solid #333;
    border-radius: 50px;
    text-decoration: none;
}

/* Tags Section */
.single-case-tags-section {
    background: #FBF9F4;
    padding: 40px 0 60px;
}

.case-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.single-case-tag {
    display: inline-block;
    padding: 8px 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #ffffff;
    border: 2px solid #333;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-case-tag:hover {
    background: #333;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .related-tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .single-case-study-hero {
        padding: 15px 0 30px;
    }

    .single-case-breadcrumb {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .single-case-hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .single-case-hero-dots {
        gap: 8px;
    }

    .single-case-dot {
        width: 8px;
        height: 8px;
    }

    .single-case-featured-image {
        padding: 30px 0;
    }

    .single-case-study-container {
        padding: 0 15px;
    }

    .single-case-interview-section {
        padding: 40px 0;
    }

    .interview-content {
        font-size: 15px;
    }

    .interview-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .single-case-related-section {
        padding: 40px 0;
    }

    .related-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .related-tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .single-case-tags-section {
        padding: 30px 0 40px;
    }

    .case-tags-wrapper {
        gap: 10px;
    }

    .single-case-tag {
        font-size: 13px;
        padding: 6px 16px;
    }
}
