/* Press page specific styles */
/* These styles complement the main style.css */

.press-hero {
    text-align: center;
    padding: 2.5rem 0;
}

.press-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.press-hero p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.press-date {
    font-size: 1rem;
    color: #adb5bd;
}

.featured-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.logo-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e9ecef;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    border-color: #adb5bd;
}

.logo-image {
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.press-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item:hover .press-logo {
    transform: scale(1.05);
}

.logo-placeholder {
    width: 80px;
    height: 40px;
    background: #e9ecef;
    margin: 0 auto 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover .logo-placeholder {
    opacity: 1;
}

.logo-outlet {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.625rem;
    color: #2c3e50;
}

.logo-date {
    font-size: 0.875rem;
    color: #6c757d;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
}

.selected-coverage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.coverage-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.coverage-card:hover {
    border-color: #adb5bd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
}

.coverage-outlet {
    font-weight: 600;
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0.625rem;
}

.coverage-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
    line-height: 1.3;
    color: #2c3e50;
}

.coverage-date {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.625rem;
}

.coverage-quote {
    font-style: italic;
    font-size: 1rem;
    color: #495057;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #e9ecef;
}

.community-section {
    margin: 2.5rem 0;
}

.community-toggle {
    background: none;
    border: 1px solid #dee2e6;
    border-radius: 1.25rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
}

.community-toggle:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.community-content {
    display: none;
    margin-top: 1.5rem;
}

.community-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 0.625rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
}

.type-filter {
    padding: 0.625rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.community-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.community-table th,
.community-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
}

.community-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
}

.community-table th:hover {
    background: #e9ecef;
}

.community-table tr:hover {
    background: #f8f9fa;
}

.press-kit {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.press-kit h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.press-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.press-kit-item {
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
}

.press-kit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.press-kit-item p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.press-email {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.press-email:hover {
    background: #e9ecef;
    text-decoration: none;
    color: #495057;
}

.copy-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.footnote {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.footnote p {
    margin: 0;
}

@media (max-width: 768px) {
    .featured-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .press-logo {
        max-width: 80px;
        max-height: 40px;
    }
    
    .selected-coverage {
        grid-template-columns: 1fr;
    }
    
    .community-controls {
        flex-direction: column;
    }
    
    .community-table {
        font-size: 0.875rem;
    }
    
    .community-table th,
    .community-table td {
        padding: 0.625rem;
    }
    
    .press-kit-grid {
        grid-template-columns: 1fr;
    }
    
    .press-hero h2 {
        font-size: 2rem;
    }
} 