/* Press Release Page Styles */
.press-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 15px;
}

.press-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.press-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
}

.news-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.press-card h1,
.press-card h2 {
    color: #014903;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.press-card p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #333;
}

.press-card p:last-child {
    margin-bottom: 0;
}

.press-card em {
    font-style: italic;
    color: #014903;
}

.press-card strong {
    font-weight: 600;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background-color: #014903;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.back-button:hover {
    background-color: #013802;
    color: white;
}

.back-button i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .press-container {
        margin: 1.5rem auto;
    }
    
    .press-card {
        padding: 1.5rem;
    }
    
    .press-card h1,
    .press-card h2 {
        font-size: 1.5rem;
    }
}
