/* News item components */
.news-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
}

.news-date {
    color: #666;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.3rem;
}

.news-title {
    color: #2d7341;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: bold;
    line-height: 1.3;
}

.news-description {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Buttons */
.forest-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2d7341, #3d935a);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(45, 115, 65, 0.2);
    font-size: 0.9rem;
    width: fit-content;
}

.forest-button i {
    margin-right: 0.5rem;
}

.forest-button:hover {
    background: linear-gradient(135deg, #3d935a, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 115, 65, 0.3);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.nav-button i {
    margin-right: 0.5rem;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Section Title */
.section-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
} 