/* Single Smart Agriculture Technology Page Styles */

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

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

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

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

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

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

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

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

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

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

/* Featured Image Section */
.single-tech-featured-image {
    background: #ffffff;
    padding: 40px 0;
}

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

.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;
}

/* Content Section */
.single-tech-content-section {
    background: #FBF9F4;
    padding: 0 0 60px;
    min-height: 100vh;
}

.single-tech-article {
    max-width: 800px;
    margin: 0 auto;
}

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

.tech-content h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: #E6AE25;
    padding: 12px 20px;
    margin: 40px 0 20px 0;
    border-radius: 8px;
    display: block;
}

.tech-content h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 30px 0 15px 0;
    padding-left: 12px;
    border-left: 4px solid #6B8E6F;
}

.tech-content p {
    margin: 0 0 20px 0;
}

.tech-content ul,
.tech-content ol {
    margin: 0 0 20px 0;
    padding-left: 30px;
}

.tech-content li {
    margin-bottom: 10px;
}

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

.tech-content a {
    color: #6B8E6F;
    text-decoration: underline;
}

.tech-content a:hover {
    color: #5A7D5E;
}

/* Tags Section */
.single-tech-tags-section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.single-tech-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-tech-tag:hover {
    background: #333;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-tech-hero-section {
        padding: 15px 0 30px;
    }

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

    .single-tech-hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

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

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

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

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

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

    .tech-content h2 {
        font-size: 18px;
        padding: 10px 16px;
        margin: 30px 0 15px 0;
    }

    .tech-content h3 {
        font-size: 16px;
        margin: 25px 0 12px 0;
    }

    .single-tech-tags-section {
        gap: 10px;
        margin-top: 30px;
        padding-top: 30px;
    }

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

