/* ========================================
   SUMA SINGLE POST WIDGET
   Universelles Widget für einzelne Posts
   ======================================== */

.smg-single-post-widget {
    position: relative;
    margin-bottom: var(--space-2xl, 4rem);
}

/* ========================================
   LAYOUT VARIANTS
   ======================================== */

/* Card Layout */
.smg-single-post-card .smg-single-post-content {
    background: white;
    border-radius: var(--radius-xl, 1.5rem);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Layout */
.smg-single-post-hero .smg-single-post-content {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: end;
    color: white;
    border-radius: var(--radius-xl, 1.5rem);
    overflow: hidden;
}

.smg-single-post-hero .smg-post-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.smg-single-post-hero .smg-post-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.smg-single-post-hero .smg-post-content-wrapper {
    position: relative;
    z-index: 3;
    padding: var(--space-2xl, 4rem);
}

/* Minimal Layout */
.smg-single-post-minimal .smg-single-post-content {
    padding: var(--space-lg, 2rem) 0;
    border-bottom: 1px solid rgba(227, 30, 36, 0.1);
}

/* Magazine Layout */
.smg-single-post-magazine .smg-single-post-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl, 4rem);
    align-items: start;
}

/* Sidebar Layout */
.smg-single-post-sidebar .smg-single-post-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl, 4rem);
    align-items: start;
}

/* ========================================
   FEATURED IMAGE
   ======================================== */
.smg-post-featured-image {
    position: relative;
    overflow: hidden;
}

.smg-image-position-top .smg-post-featured-image {
    margin-bottom: var(--space-xl, 3rem);
}

.smg-image-position-left .smg-post-featured-image,
.smg-image-position-right .smg-post-featured-image {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
}

.smg-image-position-background .smg-post-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.smg-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.smg-post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--smg-600, #e31e24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full, 2rem);
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

/* ========================================
   CONTENT WRAPPER
   ======================================== */
.smg-post-content-wrapper {
    padding: var(--space-xl, 3rem);
    position: relative;
    z-index: 2;
}

.smg-single-post-minimal .smg-post-content-wrapper,
.smg-single-post-hero .smg-post-content-wrapper {
    padding: var(--space-lg, 2rem) 0;
}

/* ========================================
   POST META
   ======================================== */
.smg-post-meta {
    margin-bottom: var(--space-lg, 2rem);
}

.smg-post-meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md, 1.5rem);
}

.smg-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm, 0.875rem);
    color: var(--app-gray-600, #757575);
}

.smg-meta-item svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--smg-500, #f63d43);
}

.smg-meta-valid-until {
    color: var(--warning-600, #d97706);
}

.smg-meta-event-date {
    color: var(--success-600, #059669);
}

/* ========================================
   POST HEADER
   ======================================== */
.smg-post-header {
    margin-bottom: var(--space-lg, 2rem);
}

.smg-post-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--app-gray-900, #111827);
    margin: 0 0 var(--space-sm, 1rem) 0;
    line-height: 1.2;
}

.smg-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.smg-post-title a:hover {
    color: var(--smg-600, #e31e24);
}

.smg-post-subtitle {
    font-size: var(--text-lg, 1.125rem);
    color: var(--app-gray-600, #757575);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* ========================================
   POST EXCERPT
   ======================================== */
.smg-post-excerpt {
    font-size: var(--text-base, 1rem);
    color: var(--app-gray-700, #374151);
    line-height: 1.7;
    margin-bottom: var(--space-lg, 2rem);
}

/* ========================================
   SPECIAL FIELDS
   ======================================== */
.smg-post-special-fields {
    margin-bottom: var(--space-lg, 2rem);
}

.smg-event-details,
.smg-promotion-details,
.smg-service-details,
.smg-news-details {
    background: var(--smg-50, #fef2f2);
    border-radius: var(--radius-lg, 1rem);
    padding: var(--space-lg, 2rem);
    border-left: 4px solid var(--smg-500, #f63d43);
}

.smg-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md, 1.5rem);
    margin-bottom: var(--space-md, 1.5rem);
}

.smg-detail-item:last-child {
    margin-bottom: 0;
}

.smg-detail-item svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--smg-600, #e31e24);
    margin-top: 0.125rem;
}

.smg-detail-item strong {
    color: var(--app-gray-900, #111827);
    margin-right: 0.5rem;
}

.smg-discount-highlight {
    background: linear-gradient(135deg, var(--smg-100), var(--smg-200));
    padding: var(--space-md, 1.5rem);
    border-radius: var(--radius-lg, 1rem);
    border: 2px solid var(--smg-300, #fca5a5);
}

.smg-discount-value {
    font-size: var(--text-lg, 1.125rem);
    font-weight: 700;
    color: var(--smg-700, #c41e3a);
}

.smg-free-badge {
    background: var(--success-100, #dcfce7);
    color: var(--success-700, #15803d);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full, 2rem);
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
}

.smg-priority-high {
    color: var(--warning-600, #d97706);
    font-weight: 600;
}

.smg-priority-urgent {
    color: var(--error-600, #dc2626);
    font-weight: 700;
}

.smg-sticky-badge {
    background: var(--warning-100, #fef3c7);
    color: var(--warning-700, #a16207);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full, 2rem);
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
}

/* ========================================
   RELATED CONTENT
   ======================================== */
.smg-post-related-content {
    margin-bottom: var(--space-lg, 2rem);
}

.smg-related-stores {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg, 1rem);
    padding: var(--space-lg, 2rem);
    border: 1px solid rgba(227, 30, 36, 0.1);
}

.smg-related-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-lg, 1.125rem);
    font-weight: 600;
    color: var(--app-gray-900, #111827);
    margin: 0 0 var(--space-md, 1.5rem) 0;
}

.smg-related-title svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--smg-500, #f63d43);
}

.smg-related-stores-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* ✅ Grid für bessere Verteilung */
    gap: var(--space-md, 1.5rem);
}

/* ✅ Single Store: Quadratisches Layout */
.smg-related-stores-list.single-store {
    grid-template-columns: 1fr;
    max-width: 400px;
}

.smg-related-stores-list.single-store .smg-related-store-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    aspect-ratio: 1 / 1; /* Quadratisch */
    justify-content: center;
}

.smg-related-stores-list.single-store .smg-store-logo-wrapper {
    margin-bottom: 1rem;
}

.smg-related-stores-list.single-store .smg-store-logo,
.smg-related-stores-list.single-store .smg-store-thumb,
.smg-related-stores-list.single-store .smg-store-logo-fallback {
    width: 5rem;
    height: 5rem;
}

.smg-related-store-item {
    display: flex;
    align-items: center;
    gap: 1rem; /* ✅ Mehr Abstand zwischen Logo und Text */
    padding: 1rem; /* ✅ Mehr Padding für bessere Proportionen */
    background: white;
    border-radius: var(--radius-lg, 1rem);
    text-decoration: none;
    color: var(--app-gray-700, #374151);
    transition: all 0.3s ease;
    border: 1px solid rgba(227, 30, 36, 0.1);
    min-height: 4.5rem; /* ✅ Mindesthöhe für konsistente Darstellung */
}

.smg-related-store-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.15);
    color: var(--smg-600, #e31e24);
}

/* ✅ STORE LOGO - ACF Store Logo (korrekte Größe) */
.smg-store-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md, 0.5rem);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem;
    border: 1px solid rgba(227, 30, 36, 0.1);
    transition: all 0.3s ease;
}

/* ✅ STORE THUMB - Featured Image Fallback */
.smg-store-thumb {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md, 0.5rem);
    object-fit: cover;
}

/* ✅ STORE LOGO FALLBACK - Initials */
.smg-store-logo-fallback {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md, 0.5rem);
    background: linear-gradient(135deg, #e31e24, #c41e3a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(227, 30, 36, 0.3);
    transition: all 0.3s ease;
}

.smg-related-store-item:hover .smg-store-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.smg-related-store-item:hover .smg-store-logo-fallback {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
}

.smg-store-logo-wrapper {
    flex-shrink: 0;
}

.smg-store-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.smg-store-name {
    font-size: var(--text-base, 1rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--app-gray-900, #111827);
}

.smg-store-category {
    font-size: var(--text-xs, 0.75rem);
    color: var(--app-gray-500, #6b7280);
    font-style: italic;
}

.smg-store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.smg-store-floor,
.smg-store-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--text-xs, 0.75rem);
    color: var(--app-gray-600, #757575);
    background: var(--app-gray-50, #f9fafb);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm, 0.375rem);
}

.smg-store-floor svg,
.smg-store-phone svg {
    flex-shrink: 0;
    color: var(--smg-500, #f63d43);
}

/* ========================================
   POST ACTIONS
   ======================================== */
.smg-post-actions {
    display: flex;
    gap: var(--space-md, 1.5rem);
    align-items: center;
}

.smg-post-actions .smg-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.smg-post-actions svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.smg-post-actions .smg-btn:hover svg {
    transform: translateX(3px);
}

/* ========================================
   HOVER EFFECTS
   ======================================== */
.smg-hover-lift .smg-single-post-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.smg-hover-scale .smg-single-post-content:hover {
    transform: scale(1.02);
}

.smg-hover-tilt .smg-single-post-content:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

.smg-hover-glow .smg-single-post-content:hover {
    box-shadow: 0 0 30px rgba(227, 30, 36, 0.3);
}

.smg-hover-lift .smg-post-image:hover,
.smg-hover-scale .smg-post-image:hover {
    transform: scale(1.05);
}

/* ========================================
   ENTRANCE ANIMATIONS
   ======================================== */
.smg-animate-fade-up .smg-single-post-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.smg-animate-fade-in .smg-single-post-content {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.smg-animate-slide-up .smg-single-post-content {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.smg-animate-zoom-in .smg-single-post-content {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.8s ease forwards;
}

.smg-animate-slide-left .smg-single-post-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 0.8s ease forwards;
}

.smg-animate-slide-right .smg-single-post-content {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   POST TYPE SPECIFIC STYLES
   ======================================== */

/* News Posts */
.smg-post-type-news .smg-post-category-badge {
    background: var(--info-600, #2563eb);
}

/* Event Posts */
.smg-post-type-event .smg-post-category-badge {
    background: var(--success-600, #059669);
}

/* Promotion Posts */
.smg-post-type-promotion .smg-post-category-badge {
    background: var(--warning-600, #d97706);
}

/* Service Posts */
.smg-post-type-service .smg-post-category-badge {
    background: var(--purple-600, #9333ea);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .smg-single-post-magazine .smg-single-post-content,
    .smg-single-post-sidebar .smg-single-post-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg, 2rem);
    }

    .smg-post-content-wrapper {
        padding: var(--space-lg, 2rem);
    }

    .smg-post-meta-items {
        flex-direction: column;
        gap: var(--space-sm, 1rem);
    }

    .smg-related-stores-list {
        grid-template-columns: 1fr; /* ✅ Single column auf Mobile */
    }

    /* ✅ Single Store: Responsive auf Mobile */
    .smg-related-stores-list.single-store {
        max-width: 100%;
    }

    .smg-related-stores-list.single-store .smg-related-store-item {
        aspect-ratio: auto; /* Kein festes Verhältnis auf Mobile */
        padding: 1.5rem;
    }

    .smg-related-stores-list.single-store .smg-store-logo,
    .smg-related-stores-list.single-store .smg-store-thumb,
    .smg-related-stores-list.single-store .smg-store-logo-fallback {
        width: 4rem;
        height: 4rem;
    }

    .smg-related-store-item {
        min-height: 4rem; /* ✅ Kleinere Mindesthöhe auf Mobile */
        padding: 0.875rem; /* ✅ Weniger Padding auf Mobile */
    }

    .smg-store-name {
        font-size: var(--text-sm, 0.875rem);
    }

    .smg-store-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .smg-store-logo,
    .smg-store-thumb,
    .smg-store-logo-fallback {
        width: 2.25rem; /* ✅ Etwas kleinere Logos auf Mobile */
        height: 2.25rem;
    }

    .smg-detail-item {
        flex-direction: column;
        gap: var(--space-sm, 1rem);
        align-items: flex-start;
    }

    .smg-detail-item svg {
        margin-top: 0;
    }
}

/* ========================================
   PROMOTION GALLERY GRID (Card Layout)
   ======================================== */

/* Grid Layout: Featured Image links, Gallery rechts */
.smg-layout-card .smg-card-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.smg-layout-card .smg-card-featured-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-height: 600px;
}

.smg-layout-card .smg-card-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smg-layout-card .smg-card-gallery {
    display: flex;
    flex-direction: column;
}

.smg-promotion-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    height: 100%;
}

.smg-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--app-gray-100, #f3f4f6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px; /* ✅ FIX: Mindesthöhe für Container */
}

.smg-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.smg-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    position: relative; /* ✅ FIX: Relative Position */
}

.smg-gallery-image {
    width: 100% !important; /* ✅ FIX: !important um sicherzustellen */
    height: 100% !important; /* ✅ FIX: !important um sicherzustellen */
    object-fit: cover !important; /* ✅ FIX: !important um sicherzustellen */
    transition: transform 0.3s ease;
    display: block !important; /* ✅ FIX: Block Display */
    position: absolute; /* ✅ FIX: Absolute Position für korrekte Platzierung */
    top: 0;
    left: 0;
    opacity: 1 !important; /* ✅ FIX: Sicherstellen dass Bild sichtbar ist */
}

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

/* Responsive: Stack auf Mobile */
@media (max-width: 768px) {
    .smg-layout-card .smg-card-image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .smg-layout-card .smg-card-featured-image {
        max-height: 400px;
    }
    
    .smg-promotion-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .smg-promotion-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* ========================================
   SECONDARY INFO STYLES (Events, News, Services)
   ======================================== */

.smg-secondary-section {
    margin-bottom: 2rem;
}

.smg-secondary-section:last-child {
    margin-bottom: 0;
}

.smg-secondary-text {
    color: var(--app-gray-700, #374151);
    line-height: 1.6;
    margin: 0;
}

/* Features Grid (Events) */
.smg-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.smg-feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--app-gray-100, #f3f4f6);
    color: var(--app-gray-700, #374151);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hashtags */
.smg-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.smg-hashtag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--smg-600, #e31e24);
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.smg-hashtag:hover {
    background: var(--smg-700, #c91a1f);
}

/* Priority Badge (News) */
.smg-priority-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.smg-priority-high {
    background: var(--warning-100, #fef3c7);
    color: var(--warning-800, #92400e);
}

.smg-priority-urgent {
    background: var(--error-100, #fee2e2);
    color: var(--error-800, #991b1b);
}

.smg-priority-low {
    background: var(--app-gray-100, #f3f4f6);
    color: var(--app-gray-600, #4b5563);
}

/* Free Badge (Services) */
.smg-free-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--success-100, #d1fae5);
    color: var(--success-800, #065f46);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Video Container */
.smg-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--app-gray-900, #111827);
}

.smg-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.smg-video-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--smg-600, #e31e24);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.smg-video-link:hover {
    background: var(--smg-700, #c91a1f);
}

/* Documents List (PDF Downloads) */
.smg-documents-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.smg-document-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--app-gray-50, #f9fafb);
    border: 2px solid var(--app-gray-200, #e5e7eb);
    border-radius: 12px;
    text-decoration: none;
    color: var(--app-gray-900, #111827);
    transition: all 0.3s ease;
}

.smg-document-link:hover {
    background: white;
    border-color: var(--smg-600, #e31e24);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.15);
}

.smg-document-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--smg-600, #e31e24);
    color: white;
    border-radius: 10px;
    flex-shrink: 0;
}

.smg-document-icon svg {
    width: 24px;
    height: 24px;
}

.smg-document-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.smg-document-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--app-gray-900, #111827);
    line-height: 1.3;
}

.smg-document-meta {
    font-size: 0.75rem;
    color: var(--app-gray-500, #6b7280);
    font-weight: 500;
}

.smg-document-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--smg-600, #e31e24);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.smg-document-link:hover .smg-document-download-icon {
    transform: translateY(2px);
}

.smg-document-download-icon svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .smg-features-grid {
        gap: 0.5rem;
    }
    
    .smg-feature-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .smg-video-container {
        padding-bottom: 56.25%;
    }
    
    .smg-document-link {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .smg-document-icon {
        width: 40px;
        height: 40px;
    }
    
    .smg-document-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .smg-document-title {
        font-size: 0.875rem;
    }
}
