/* Press Mentions Styles
 * Styles for press coverage and media mentions sections
 * Used on About pages across all sites
 */

/* Press Section Container */
.press-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.press-mentions {
    margin-top: 3rem;
}

/* Press Logos Grid */
.press-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

.press-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-width: 150px;
    height: auto;
}

.press-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Press Quotes */
.press-quotes {
    margin-top: 3rem;
}

.press-quote {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    position: relative;
}

.press-quote::before {
    content: """;
    font-size: 3rem;
    color: var(--bs-primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 1;
}

.press-quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.press-quote-source {
    text-align: right;
    font-weight: 600;
    color: var(--bs-primary);
}

/* Media Coverage List */
.media-coverage-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.media-coverage-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.media-coverage-item:last-child {
    border-bottom: none;
}

.media-coverage-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.media-coverage-link:hover {
    color: var(--bs-primary);
}

.media-date {
    font-size: 0.875rem;
    color: #6c757d;
    min-width: 100px;
}

.media-outlet {
    font-weight: 600;
    color: var(--bs-primary);
}

/* Press Stats */
.press-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.press-stat {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.press-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}

.press-stat-label {
    font-size: 1rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .press-logo {
        max-width: 120px;
    }
    
    .press-quote {
        padding: 1.5rem;
    }
    
    .press-quote-text {
        font-size: 1rem;
    }
    
    .media-coverage-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .press-stat-number {
        font-size: 2.5rem;
    }
}