/**
 * VUF Our Impact Blocks - Frontend Styles
 *
 * @package VUF
 * @subpackage Our_Impact
 * @since 1.0.0
 */

/* Base Block Styles */
.vuf-impact-block {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.vuf-impact-block:hover {

}

/* Layout Variations */
.vuf-impact-block.layout-vertical {
    flex-direction: column;
    text-align: center;
}

.vuf-impact-block.layout-horizontal {
    flex-direction: row;
    text-align: left;
}

/* Icon Styles */
.vuf-impact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    transition: all 0.3s ease;
}

.vuf-impact-block:hover .vuf-impact-icon {

}

.vuf-impact-block.layout-vertical .vuf-impact-icon {
    font-size: 40px;
    width: 40px;
    height: 40px;
    padding: 12px;
}

/* Value Styles */
.vuf-impact-value {
    margin: 0!important;
    font-size: 98px!important;

}

.vuf-impact-block.layout-vertical .vuf-impact-value {
   

/* Label Styles */
.vuf-impact-label {
    margin: 0!important;
    line-height: 0;
    font-size: 98px

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vuf-impact-block.layout-horizontal .vuf-impact-label {
    margin-left: auto;
    text-align: right;
}

.vuf-impact-block.layout-vertical .vuf-impact-label {
    font-size: 14px;
}

/* Alignment Classes */
.vuf-impact-block.has-text-align-left {
    justify-content: flex-start;
    text-align: left;
}

.vuf-impact-block.has-text-align-center {
    justify-content: center;
    text-align: center;
}

.vuf-impact-block.has-text-align-right {
    justify-content: flex-end;
    text-align: right;
}

/* Specific Statistic Styling */
.vuf-impact-trash_collected .vuf-impact-icon {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.vuf-impact-trash_collected:hover .vuf-impact-icon {
    background: rgba(40, 167, 69, 0.2);
}

.vuf-impact-trails_cleaned .vuf-impact-icon {
    color: #17a2b8;
    background: rgba(23, 162, 184, 0.1);
}

.vuf-impact-trails_cleaned:hover .vuf-impact-icon {
    background: rgba(23, 162, 184, 0.2);
}

.vuf-impact-volunteer_hours .vuf-impact-icon {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.vuf-impact-volunteer_hours:hover .vuf-impact-icon {
    background: rgba(255, 193, 7, 0.2);
}

.vuf-impact-tires_removed .vuf-impact-icon {
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.1);
}

.vuf-impact-tires_removed:hover .vuf-impact-icon {
    background: rgba(111, 66, 193, 0.2);
}

/* Animation Styles */
.vuf-impact-block.has-animation .vuf-impact-value {
    opacity: 0;
    transform: translateY(20px);
    animation: vuf-count-up 1s ease-out forwards;
}

@keyframes vuf-count-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Elements */
.vuf-impact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2271b1, #135e96);
    border-radius: 8px 8px 0 0;
}

.vuf-impact-trash_collected::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.vuf-impact-trails_cleaned::before {
    background: linear-gradient(90deg, #17a2b8, #20c997);
}

.vuf-impact-volunteer_hours::before {
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.vuf-impact-tires_removed::before {
    background: linear-gradient(90deg, #6f42c1, #e83e8c);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .vuf-impact-block {
        padding: 16px;
        gap: 10px;
    }
    
    .vuf-impact-block.layout-vertical {
        padding: 20px 16px;
        gap: 12px;
    }
    
    .vuf-impact-value {
        font-size: 28px;
    }
    
    .vuf-impact-block.layout-vertical .vuf-impact-value {
        font-size: 32px;
    }
    
    .vuf-impact-icon {
        font-size: 24px;
        width: 24px;
        height: 24px;
        padding: 6px;
    }
    
    .vuf-impact-block.layout-vertical .vuf-impact-icon {
        font-size: 32px;
        width: 32px;
        height: 32px;
        padding: 8px;
    }
    
    .vuf-impact-label {
        font-size: 14px;
    }
    
    .vuf-impact-block.layout-vertical .vuf-impact-label {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .vuf-impact-block {
        padding: 12px;
        gap: 8px;
    }
    
    .vuf-impact-value {
        font-size: 24px;
    }
    
    .vuf-impact-icon {
        font-size: 20px;
        width: 20px;
        height: 20px;
        padding: 4px;
    }
    
    .vuf-impact-label {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .vuf-impact-block {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }
    
    .vuf-impact-block::before {
        display: none;
    }
    
    .vuf-impact-icon {
        background: none !important;
        color: #333 !important;
    }
    
    .vuf-impact-value {
        color: #000 !important;
        text-shadow: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .vuf-impact-block {
        background: white;
        border: 2px solid #000;
        box-shadow: none;
    }
    
    .vuf-impact-value {
        color: #000;
        text-shadow: none;
    }
    
    .vuf-impact-label {
        color: #000;
    }
    
    .vuf-impact-icon {
        color: #000;
        background: #fff;
        border: 1px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .vuf-impact-block,
    .vuf-impact-icon,
    .vuf-impact-value {
        animation: none !important;
        transition: none !important;
    }
    
    .vuf-impact-block:hover {
        transform: none;
    }
    
    .vuf-impact-block:hover .vuf-impact-icon {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .vuf-impact-block {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        color: #e2e8f0;
    }
    
    .vuf-impact-value {
        color: #90cdf4;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .vuf-impact-label {
        color: #cbd5e0;
    }
    
    .vuf-impact-icon {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .vuf-impact-block:hover .vuf-impact-icon {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Focus Styles for Accessibility */
.vuf-impact-block:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* Loading State */
.vuf-impact-block.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.vuf-impact-block.is-loading .vuf-impact-value::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2271b1;
    border-radius: 50%;
    animation: vuf-spin 1s linear infinite;
}

@keyframes vuf-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Block Container Spacing */
.wp-block-vuf-impact-trash-collected,
.wp-block-vuf-impact-trails-cleaned,
.wp-block-vuf-impact-volunteer-hours,
.wp-block-vuf-impact-tires-removed {
    margin-bottom: 1.5em;
}

/* Shortcode Styles */
.vuf-impact-shortcode {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    line-height: 1.2;
}

.vuf-impact-shortcode.layout-vertical {
    flex-direction: column;
    text-align: center;
    gap: 6px;
}

.vuf-impact-shortcode .vuf-impact-icon {
    font-size: 18px;
    color: #2271b1;
    width: 18px;
    height: 18px;
}

.vuf-impact-shortcode .vuf-impact-value {
    font-size: 20px;
    font-weight: 700;
    color: #135e96;
}

.vuf-impact-shortcode .vuf-impact-label {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid Layout Support */
.vuf-impact-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.vuf-impact-blocks-grid .vuf-impact-block {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .vuf-impact-blocks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* PDF Download Styles for Impact Reports */
.vuf-impact-report-pdf-download {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vuf-impact-report-pdf-download h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    display: inline-block;
}

.pdf-download-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.pdf-download-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.pdf-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.pdf-icon .dashicons {
    font-size: 32px;
    color: white;
    width: 32px;
    height: 32px;
}

.pdf-info {
    flex: 1;
    min-width: 0;
}

.pdf-info h4 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
}

.pdf-meta {
    margin: 0 0 15px 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.3);
}

.pdf-download-btn:hover,
.pdf-download-btn:focus {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.pdf-download-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Responsive PDF Download */
@media screen and (max-width: 768px) {
    .vuf-impact-report-pdf-download {
        margin: 20px 0;
        padding: 20px;
    }
    
    .pdf-download-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .pdf-icon {
        width: 50px;
        height: 50px;
    }
    
    .pdf-icon .dashicons {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }
    
    .pdf-info h4 {
        font-size: 16px;
    }
    
    .pdf-download-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .vuf-impact-report-pdf-download {
        padding: 15px;
    }
    
    .pdf-download-box {
        padding: 15px 10px;
        gap: 12px;
    }
    
    .pdf-icon {
        width: 45px;
        height: 45px;
    }
    
    .pdf-icon .dashicons {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
    
    .pdf-info h4 {
        font-size: 15px;
    }
    
    .pdf-meta {
        font-size: 13px;
    }
    
    .pdf-download-btn {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
    }
}

/* Dark Mode Support for PDF Download */
@media (prefers-color-scheme: dark) {
    .vuf-impact-report-pdf-download {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .vuf-impact-report-pdf-download h3 {
        color: #e2e8f0;
        border-color: #4299e1;
    }
    
    .pdf-download-box {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .pdf-info h4 {
        color: #e2e8f0;
    }
    
    .pdf-meta {
        color: #a0aec0;
    }
}

/* Print Styles for PDF Download */
@media print {
    .vuf-impact-report-pdf-download {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
    
    .pdf-download-box {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .pdf-icon {
        background: #f8f9fa !important;
        box-shadow: none !important;
    }
    
    .pdf-icon .dashicons {
        color: #333 !important;
    }
    
    .pdf-download-btn {
        background: #f8f9fa !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}

/* ========================================
   STEWARDSHIP PROJECT STYLES
   ======================================== */

/* Project Meta Display */
.stewardship-project-meta {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stewardship-project-meta h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 8px;
    display: inline-block;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.meta-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.meta-item strong {
    color: #2c3e50;
    font-weight: 600;
    margin-right: 10px;
    min-width: 80px;
}

.meta-item span {
    color: #495057;
    flex: 1;
}

/* Project Status Styles */
.project-status.status-planning {
    color: #3498db;
    font-weight: 600;
}

.project-status.status-active {
    color: #27ae60;
    font-weight: 600;
}

.project-status.status-completed {
    color: #2ecc71;
    font-weight: 600;
}

.project-status.status-on-hold {
    color: #f39c12;
    font-weight: 600;
}

/* Project Shortcode Styles */
.vuf-project-shortcode {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vuf-project-shortcode .project-image {
    margin-bottom: 15px;
}

.vuf-project-shortcode .project-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.vuf-project-shortcode .project-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.vuf-project-shortcode .project-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vuf-project-shortcode .project-title a:hover {
    color: #3498db;
}

.vuf-project-shortcode .project-excerpt {
    margin-bottom: 15px;
    color: #6c757d;
    line-height: 1.6;
}

/* Featured Projects Grid */
.vuf-featured-projects {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.vuf-featured-projects.columns-1 {
    grid-template-columns: 1fr;
}

.vuf-featured-projects.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.vuf-featured-projects.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vuf-featured-projects.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.featured-project {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-project:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.featured-project .project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-project:hover .project-image img {
    transform: scale(1.05);
}

.featured-project .project-content {
    padding: 20px;
}

.featured-project .project-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.featured-project .project-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-project .project-title a:hover {
    color: #3498db;
}

.featured-project .project-excerpt {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Recent Projects List */
.vuf-recent-projects {
    margin: 20px 0;
}

.recent-projects-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-project {
    padding: 15px 20px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.recent-project:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recent-project:last-child {
    margin-bottom: 0;
}

.recent-project .project-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.recent-project .project-link:hover {
    color: #3498db;
}

.recent-project .project-date {
    color: #6c757d;
    font-size: 14px;
    white-space: nowrap;
}

.recent-project .project-excerpt {
    margin-top: 8px;
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
}

/* Stewardship Projects Shortcode */
.vuf-stewardship-projects {
    margin: 20px 0;
}

.stewardship-projects-grid {
    display: grid;
    gap: 20px;
}

.stewardship-projects-grid.columns-1 {
    grid-template-columns: 1fr;
}

.stewardship-projects-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.stewardship-projects-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.stewardship-projects-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.stewardship-project-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stewardship-project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.stewardship-project-card .project-image {
    position: relative;
    overflow: hidden;
}

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

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

.stewardship-project-card .project-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background: rgba(0, 0, 0, 0.7);
}

.stewardship-project-card .project-status-badge.status-planning {
    background: #3498db;
}

.stewardship-project-card .project-status-badge.status-active {
    background: #27ae60;
}

.stewardship-project-card .project-status-badge.status-completed {
    background: #2ecc71;
}

.stewardship-project-card .project-status-badge.status-on-hold {
    background: #f39c12;
}

.stewardship-project-card .project-content {
    padding: 20px;
}

.stewardship-project-card .project-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.stewardship-project-card .project-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.stewardship-project-card .project-title a:hover {
    color: #3498db;
}

.stewardship-project-card .project-excerpt {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.stewardship-project-card .project-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.stewardship-project-card .project-date {
    font-weight: 500;
}

.stewardship-project-card .project-categories {
    font-style: italic;
}

/* Body Classes for Project Pages */
.single-stewardship-project .entry-content .stewardship-project-meta {
    margin-top: 0;
}

.archive-stewardship-projects .site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.taxonomy-stewardship-project .site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .project-meta-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .meta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .meta-item strong {
        min-width: auto;
        margin-right: 0;
    }
    
    .vuf-featured-projects.columns-2,
    .vuf-featured-projects.columns-3,
    .vuf-featured-projects.columns-4 {
        grid-template-columns: 1fr;
    }
    
    .stewardship-projects-grid.columns-2,
    .stewardship-projects-grid.columns-3,
    .stewardship-projects-grid.columns-4 {
        grid-template-columns: 1fr;
    }
    
    .recent-project {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .recent-project .project-date {
        align-self: flex-end;
    }
}

@media screen and (max-width: 480px) {
    .stewardship-project-meta,
    .vuf-project-shortcode {
        padding: 15px;
        margin: 15px 0;
    }
    
    .featured-project .project-content,
    .stewardship-project-card .project-content {
        padding: 15px;
    }
    
    .recent-project {
        padding: 12px 15px;
    }
}

/* Dark Mode Support for Projects */
@media (prefers-color-scheme: dark) {
    .stewardship-project-meta,
    .vuf-project-shortcode,
    .featured-project,
    .stewardship-project-card,
    .recent-project {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .stewardship-project-meta h3,
    .project-title a,
    .recent-project .project-link {
        color: #e2e8f0;
    }
    
    .project-title a:hover,
    .recent-project .project-link:hover {
        color: #4299e1;
    }
    
    .meta-item {
        background: #1a202c;
        border-color: #4a5568;
    }
    
    .meta-item strong {
        color: #e2e8f0;
    }
    
    .meta-item span,
    .project-excerpt,
    .project-date,
    .project-categories {
        color: #a0aec0;
    }
    
    .recent-project:hover {
        background: #1a202c;
    }
}

/* Print Styles for Projects */
@media print {
    .stewardship-project-meta,
    .vuf-project-shortcode,
    .featured-project,
    .stewardship-project-card,
    .recent-project {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
    
    .project-title a,
    .recent-project .project-link {
        color: #000 !important;
        text-decoration: underline !important;
    }
    
    .project-image img {
        max-height: 200px !important;
    }
    
    .project-status-badge {
        background: #f8f9fa !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
}