/* ==========================================================================
   Realne.sk - Modern Responsive Homepage Styles
   ========================================================================== */

/* Desktop Grid Layout - 3 stĺpce */
.realne-posts-grid .realne-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Karta článku - moderne štýlovaná */
.realne-post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.realne-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.realne-post-card .wp-block-post-featured-image img {
    transition: transform 0.3s ease;
    height: 180px;
    object-fit: cover;
}

.realne-post-card:hover .wp-block-post-featured-image img {
    transform: scale(1.05);
}

/* Reklamy - decentné štýlovanie */
.realne-ad-wrapper,
.realne-ad-footer {
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.realne-ad-wrapper:hover,
.realne-ad-footer:hover {
    opacity: 1;
}

/* Desktop reklamy styling */
@media (min-width: 768px) {
    .realne-ad-wrapper {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 30px 20px;
    }
}

/* Typography optimalizácia */
.realne-post-card .wp-block-post-title a {
    font-weight: 600;
    line-height: 1.4;
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.realne-post-card .wp-block-post-excerpt p {
    color: rgba(0, 0, 0, 0.65);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   TABLET LAYOUT (768px - 1024px) - 2 stĺpce
   ========================================================================== */
@media (max-width: 1024px) and (min-width: 768px) {
    .realne-posts-grid .realne-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ==========================================================================
   MOBILE LAYOUT (< 768px) - Horizontálne posúvanie podľa kategórií
   ========================================================================== */
@media (max-width: 767px) {
    
    /* Hero section optimalizácia pre mobil */
    .wp-block-group.alignfull .wp-block-columns {
        flex-direction: column-reverse;
    }
    
    /* Blog sekcia - príprava pre scrollovanie */
    .realne-blog-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .realne-blog-section .wp-block-group.alignwide {
        padding-left: var(--wp--preset--spacing--30);
        padding-right: var(--wp--preset--spacing--30);
    }
    
    /* Grid zmena na horizontálne posúvanie */
    .realne-posts-grid {
        overflow: visible;
        margin-left: 0;
        margin-right: 0;
    }
    
    .realne-posts-grid .realne-grid-layout {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 var(--wp--preset--spacing--30) 20px;
        margin-bottom: 20px;
        grid-template-columns: unset;
    }
    
    /* Skrytie scrollbaru ale zachovanie funkcionality */
    .realne-posts-grid .realne-grid-layout::-webkit-scrollbar {
        height: 6px;
    }
    
    .realne-posts-grid .realne-grid-layout::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 3px;
    }
    
    .realne-posts-grid .realne-grid-layout::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
    }
    
    /* Karty v mobile - fixná šírka */
    .realne-post-card {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .realne-post-card .wp-block-post-featured-image img {
        height: 160px;
    }
    
    /* Reklamy - mobile optimalizácia - BEZ HORIZONTAL PADDING! */
    .realne-ad-wrapper,
    .realne-ad-footer {
        padding: 20px 0; /* LEN vertikálny padding */
        margin: 20px 0;
        border: none; /* Žiadne borders na mobile */
    }
    
    /* Tlačidlo - mobile */
    .wp-block-buttons {
        padding: 0 var(--wp--preset--spacing--30);
    }
}

/* ==========================================================================
   EXTRA MALÉ MOBILY (< 400px)
   ========================================================================== */
@media (max-width: 399px) {
    .realne-post-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .realne-post-card .wp-block-post-featured-image img {
        height: 140px;
    }
}

/* ==========================================================================
   KATEGÓRIE - Horizontálne scrollovanie s vizuálnymi indikátormi
   ========================================================================== */

/* Wrapper pre kategórie s indikátorom scrollu */
.realne-category-section {
    position: relative;
    margin-bottom: 40px;
}

.realne-category-section::before {
    content: '→';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    animation: slideHint 2s ease-in-out infinite;
}

@keyframes slideHint {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) translateX(5px);
    }
}

/* Kategória nadpis */
.realne-category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 0 var(--wp--preset--spacing--30);
    color: var(--wp--preset--color--foreground);
}

/* ==========================================================================
   ACCESSIBILITY & PERFORMANCE
   ========================================================================== */

/* Focus stavy pre keyboard navigáciu */
.realne-post-card:focus-within {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 2px;
}

/* Reduced motion pre používateľov s preference */
@media (prefers-reduced-motion: reduce) {
    .realne-post-card,
    .realne-post-card .wp-block-post-featured-image img {
        transition: none;
    }
    
    @keyframes slideHint {
        0%, 100% {
            opacity: 0.5;
        }
    }
}

/* Dark mode podpora (ak theme podporuje) */
@media (prefers-color-scheme: dark) {
    .realne-post-card .wp-block-post-excerpt p {
        color: rgba(255, 255, 255, 0.65);
    }
    
    .realne-ad-wrapper {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* ==========================================================================
   LOADING STATES & PLACEHOLDERS
   ========================================================================== */

/* Placeholder pre načítavanie obrázkov */
.realne-post-card .wp-block-post-featured-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.realne-post-card .wp-block-post-featured-image img[src] {
    background: none;
    animation: none;
}

/* ==========================================================================
   OBRÁZKY NA CELÚ ŠÍRKU KARTY - bez bielych okrajov
   ========================================================================== */
.realne-post-card .wp-block-post-featured-image {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.realne-post-card .wp-block-post-featured-image a {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.realne-post-card .wp-block-post-featured-image img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover;
    object-position: center;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

/* Tablet verzia */
@media (max-width: 1024px) and (min-width: 768px) {
    .realne-post-card .wp-block-post-featured-image,
    .realne-post-card .wp-block-post-featured-image img {
        height: 160px !important;
    }
}

/* Mobile verzia */
@media (max-width: 767px) {
    .realne-post-card .wp-block-post-featured-image,
    .realne-post-card .wp-block-post-featured-image img {
        height: 160px !important;
    }
}
