/* News Page Specific Styles */

/* News Section */
.greenworld-news-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-news-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-news-card img {
    width: 100%;
}

.greenworld-news-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-news-date {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-news-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-news-desc {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.greenworld-news-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.greenworld-news-link:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(46, 125, 50, 0.3);
}

/* Industry Section */
.greenworld-industry-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-industry-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-industry-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-industry-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-industry-desc {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.greenworld-industry-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.greenworld-industry-link:hover {
    background: linear-gradient(135deg, #F57C00, #E65100);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(255, 152, 0, 0.3);
}

/* Newsletter Section */
.greenworld-newsletter-section {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.greenworld-newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.greenworld-newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.greenworld-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.greenworld-newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
    color: #333;
}

.greenworld-newsletter-form input[type="email"]::placeholder {
    color: #666;
}

.greenworld-newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    background: #FF9800;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.greenworld-newsletter-form button:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {

    .greenworld-news-grid,
    .greenworld-industry-grid {
        grid-template-columns: 1fr;
    }

    .greenworld-newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .greenworld-newsletter-form input[type="email"] {
        width: 100%;
    }

    .greenworld-newsletter-form button {
        width: 100%;
    }
}