/* ========================================================================
   SMG PRESS ARTICLE DETAIL WIDGET
   Detailansicht für einzelne Presseartikel mit vollständigen Informationen
   ======================================================================== */

.smg-press-detail-widget {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.smg-press-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ARTICLE HEADER
   ======================================================================== */

.smg-press-detail-header {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.smg-press-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.smg-press-type-badge {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.smg-press-external-indicator {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.smg-press-meta-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #64748b;
}

.smg-press-date,
.smg-press-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.smg-press-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.smg-press-excerpt {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 500;
    max-width: 800px;
}

/* ARTICLE CONTENT
   ======================================================================== */

.smg-press-detail-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.smg-press-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    max-width: none;
}

.smg-press-content p {
    margin-bottom: 1.5rem;
}

.smg-press-content h2,
.smg-press-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* PRESS GALLERY
   ======================================================================== */

.smg-press-gallery-section {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.smg-press-gallery-title {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.smg-press-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.smg-press-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.smg-press-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smg-press-gallery-item:hover img {
    transform: scale(1.05);
}

.smg-press-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.smg-press-gallery-item:hover .smg-press-gallery-overlay {
    opacity: 1;
}

.smg-press-gallery-zoom {
    color: white;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

/* INFORMATION SECTIONS
   ======================================================================== */

.smg-press-info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.smg-press-info-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smg-press-info-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.smg-press-info-title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.smg-press-info-title i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* CONTACT INFORMATION
   ======================================================================== */

.smg-press-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.smg-press-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.smg-press-contact-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.smg-press-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.smg-press-contact-details {
    flex: 1;
}

.smg-press-contact-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.smg-press-contact-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.smg-press-contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.smg-press-contact-value a:hover {
    color: var(--primary-red);
}

/* DOWNLOADS SECTION
   ======================================================================== */

.smg-press-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.smg-press-download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
}

.smg-press-download-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.smg-press-download-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.smg-press-download-details {
    flex: 1;
}

.smg-press-download-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.smg-press-download-size {
    font-size: 0.85rem;
    color: #64748b;
}

/* EXTERNAL LINKS
   ======================================================================== */

.smg-press-external-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.smg-press-external-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #bfdbfe;
}

.smg-press-external-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    text-decoration: none;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.smg-press-external-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.smg-press-external-details {
    flex: 1;
}

.smg-press-external-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.smg-press-external-date {
    font-size: 0.85rem;
    color: #64748b;
}

/* NAVIGATION
   ======================================================================== */

.smg-press-navigation {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.smg-press-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smg-press-nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    color: white;
    text-decoration: none;
}

.smg-press-nav-home {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

/* RESPONSIVE DESIGN
   ======================================================================== */

@media (max-width: 768px) {
    .smg-press-detail-header,
    .smg-press-detail-content,
    .smg-press-gallery-section,
    .smg-press-info-section {
        padding: 2rem;
    }

    .smg-press-badge-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .smg-press-info-sections {
        grid-template-columns: 1fr;
    }

    .smg-press-navigation {
        flex-direction: column;
        text-align: center;
    }

    .smg-press-gallery-grid {
        grid-template-columns: 1fr;
    }

    .smg-press-contact-item,
    .smg-press-download-item,
    .smg-press-external-link {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .smg-press-detail-container {
        padding: 0 1rem;
    }

    .smg-press-detail-header,
    .smg-press-detail-content,
    .smg-press-gallery-section,
    .smg-press-info-section {
        padding: 1.5rem;
    }

    .smg-press-title {
        font-size: 1.5rem;
    }

    .smg-press-meta-info {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
} 