/* Press and Media Styles */
.press-media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.media-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.media-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.media-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured News */
.featured-news {
    margin-bottom: 50px;
}

.featured-news h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.featured-news-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.featured-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #045744, #0a8a6f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.featured-news-content {
    padding: 25px;
}

.featured-news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.featured-news-type {
    background: #045744;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.featured-news-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.featured-news-read-more {
    color: #045744;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.featured-news-read-more:hover {
    color: #0a8a6f;
}

/* Search and Filters */
.media-controls {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.media-search {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.media-search input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.media-search input:focus {
    outline: none;
    border-color: #045744;
    box-shadow: 0 0 0 3px rgba(4, 87, 68, 0.1);
}

.media-filters {
    display: flex;
    gap: 15px;
    align-items: center;
}

.media-filters select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    min-width: 150px;
    transition: border-color 0.3s ease;
}

.media-filters select:focus {
    outline: none;
    border-color: #045744;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.news-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #045744, #0a8a6f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.news-type {
    background: #045744;
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-read-more {
    color: #045744;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.news-read-more:hover {
    color: #0a8a6f;
}

/* Media Kit */
.media-kit {
    margin-bottom: 50px;
}

.media-kit h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.media-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.media-kit-item {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.media-kit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.kit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.media-kit-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.media-kit-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 14px;
}

.kit-link {
    color: #045744;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.kit-link:hover {
    color: #0a8a6f;
}

/* Media Contact */
.media-contact {
    margin-bottom: 50px;
}

.contact-card {
    background: linear-gradient(135deg, #045744, #0a8a6f);
    color: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    font-size: 16px;
    line-height: 1.5;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-btn {
    background: white;
    color: #045744;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: #f8f9fa;
    color: #045744;
    transform: translateY(-2px);
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #e0e0e0;
}

.newsletter-signup h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.newsletter-signup p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .media-search {
        min-width: auto;
    }
    
    .media-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .featured-news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .media-kit-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .press-media-container {
        padding: 0 15px;
    }
    
    .media-header h2 {
        font-size: 2rem;
    }
    
    .featured-news-content,
    .news-content {
        padding: 15px;
    }
    
    .media-kit-item {
        padding: 20px 15px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .newsletter-signup {
        padding: 30px 20px;
    }
    
    .newsletter-signup form div {
        flex-direction: column;
        gap: 10px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #045744;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.empty-state p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.media-search input:focus,
.media-filters select:focus,
.contact-btn:focus,
.kit-link:focus {
    outline: 2px solid #045744;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .media-controls,
    .newsletter-signup,
    .contact-card {
        display: none;
    }
    
    .featured-news-item,
    .news-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
