/* =============================================================================
   MEDIA PAGE STYLES - MÉDIAMEGJELENÉSEK
   Prefix: mp- (media page)
   ============================================================================= */

/* Hero szekció */
.mp-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-blue-light) 100%);
    padding: var(--spacing-3xl) 0;
}

.mp-hero h1 {
    font-size: var(--fs-3xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.mp-hero .mp-subtitle {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
}

/* Szekció közös */
.mp-section {
    padding: var(--spacing-3xl) 0;
}

.mp-section:nth-child(even) {
    background-color: var(--bg-light);
}

.mp-section:nth-child(odd) {
    background-color: var(--bg-white);
}

.mp-section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.mp-section-header h2 {
    font-size: var(--fs-2xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.mp-section-header h2 svg {
    color: var(--primary);
    flex-shrink: 0;
}

.mp-section-header p {
    font-size: var(--fs-base);
    color: var(--text-light);
}

/* YouTube Shorts grid - 9:16 arány */
.mp-shorts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.mp-video-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mp-video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mp-short-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 480px;
    background: #000;
}

.mp-short-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mp-video-info {
    padding: var(--spacing-lg);
}

.mp-video-info h3 {
    font-size: var(--fs-base);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    line-height: 1.4;
}

.mp-video-info p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* YouTube normál videók - 16:9 arány */
.mp-videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.mp-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.mp-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Facebook Reels - kártya linkek */
.mp-reels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.mp-reel-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mp-reel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mp-reel-visual {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
    padding: var(--spacing-2xl) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.mp-reel-visual svg {
    color: white;
    opacity: 0.9;
}

.mp-reel-info {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mp-reel-info h3 {
    font-size: var(--fs-base);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    line-height: 1.4;
}

.mp-reel-info p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.mp-reel-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #1877F2;
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mp-reel-link:hover {
    opacity: 0.8;
}

.mp-reel-link svg {
    transition: transform 0.2s ease;
}

.mp-reel-link:hover svg {
    transform: translateX(3px);
}

/* Sajtómegjelenések - HVG cikk */
.mp-press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.mp-press-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mp-press-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mp-press-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.mp-press-source {
    color: white;
    font-size: var(--fs-2xl);
    font-weight: 700;
    letter-spacing: 1px;
}

.mp-press-content {
    padding: var(--spacing-xl);
}

.mp-press-label {
    display: inline-block;
    background: var(--bg-blue-light);
    color: var(--primary);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-press-content h3 {
    font-size: var(--fs-xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    line-height: 1.4;
}

.mp-press-content p {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.mp-press-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: var(--fs-base);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mp-press-link:hover {
    opacity: 0.8;
}

.mp-press-link svg {
    transition: transform 0.2s ease;
}

.mp-press-link:hover svg {
    transform: translateX(3px);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

/* Tablet */
@media (min-width: 768px) {
    .mp-hero h1 {
        font-size: var(--fs-4xl);
    }

    .mp-shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-press-card {
        flex-direction: row;
    }

    .mp-press-banner {
        min-width: 200px;
        min-height: auto;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .mp-hero h1 {
        font-size: var(--fs-5xl);
    }

    .mp-shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mp-press-banner {
        min-width: 260px;
    }
}