/* Initiative Report Archive Styles */
.initiative-report-archive {
    background: #f5f5f5;
    padding: 4rem 0;
    min-height: 60vh;
}

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

.archive-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #42210b;
    margin: 0 0 1rem 0;
}

.archive-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #42210b;
    line-height: 1.8;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 50px;
}

.report-grid .report-card {
    background: white;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.report-grid .report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.report-grid .card-category {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.report-grid .category-label {
    display: inline-block;
    padding: 0.8rem 2rem 1rem;
    border-radius: 30px 30px 30px 30px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: white;
    letter-spacing: 2.2px;
    line-height: 35px;
}

.report-grid .card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

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

.report-grid .card-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.report-grid .card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #42210b;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.report-grid .card-title a {
    color: #42210b;
    text-decoration: none;
}

.report-grid .card-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #42210b;
    margin: 0 0 1.5rem 0;
    line-height: 1.8;
    text-align: left;
}

.report-grid .card-link {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #42210b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #42210b;
    padding-bottom: 2px;
}

.report-grid .card-link:hover {
    opacity: 0.7;
}

.no-posts {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 3rem 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #42210b;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #5a7c56;
    color: white;
    border-color: #5a7c56;
}

/* Single Initiative Report Styles */
.initiative-report-single {
    background: #f5f5f5;
    padding: 4rem 0;
}

.report-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.report-header-single {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.report-category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 1.5rem;
}

.forum-category {
    background: #e6ae25;
}

.event-category {
    background: #5a7c56;
}

.machinery-category {
    background: #8b4513;
}

.report-title-single {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #42210b;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.report-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.report-date {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #666;
}

.report-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

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

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

.report-content h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #42210b;
    margin: 2rem 0 1rem;
}

.report-content h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #42210b;
    margin: 1.5rem 0 0.8rem;
}

.report-content p {
    margin-bottom: 1rem;
}

.report-content ul,
.report-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.report-content li {
    margin-bottom: 0.5rem;
}

.report-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.report-footer {
    padding: 2rem;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.report-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: #42210b;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.nav-title {
    font-weight: 600;
    font-size: 16px;
}

.back-to-archive {
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2rem;
    background: #5a7c56;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #4a6b47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 124, 86, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .initiative-report-archive,
    .initiative-report-single {
        padding: 2rem 0;
    }
    
    .archive-title,
    .report-title-single {
        font-size: 24px;
    }
    
    .report-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .report-header-single {
        padding: 2rem 1rem 1rem;
    }
    
    .report-content {
        padding: 2rem 1rem;
    }
    
    .report-navigation {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .report-footer {
        padding: 1.5rem 1rem;
    }
}

