/*
Main Content Styles
*/

/* Main Content Area */
.site-main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Tüm içerik alanları için görsel sınırlaması */
.site-main img,
.posts-container img,
.homepage-featured-post img,
.homepage-grid-post img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    box-sizing: border-box !important;
    object-fit: cover;
}

/* Tema kartları için özel görsel ayarları */
.theme-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
    object-fit: cover;
}

/* Container overflow koruması */
.posts-container,
.homepage-posts,
.homepage-promo-cards,
.homepage-grid-posts {
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ana sayfa için özel düzen */
.home .site-main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 2rem 0;
}

.home .posts-container {
    display: block;
}

/* Mobil responsive düzen */
@media (max-width: 768px) {
    .site-main {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0.5rem 1rem;
        display: grid !important;
    }
    
    /* Ana sayfa mobil düzen */
    .home .site-main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 15px 1rem 0;
    }
    
    .home .posts-container {
        display: block !important;
    }
    
    /* Tüm grid yapılarını mobilde tek sütun yap */
    .homepage-grid-posts {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    .homepage-grid-post {
        width: 100% !important;
        margin-bottom: 20px !important;
        display: block !important;
    }
}

/* Category pages - remove all top spacing */
.category .site-main,
.archive .site-main {
    padding-top: 0 !important;
}

/* Homepage - add spacing to match category pages */
.home .site-main {
    padding-top: 25px !important; /* INCREASED: Adjusted homepage (index.php) spacing */
}

/* 404 page styles override - ensure no conflicts */
.error-404 .site-main {
    padding: 0 !important;
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}

/* Blog Posts Grid */
.posts-container {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
}

/* Hero Slider */
.hero-slider {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    margin: 0;
    height: 300px;
}

/* Main Slider Post (Left Side) */
.slider-main-post {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: flex-end;
}

.slider-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slider-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.slider-main-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    width: 100%;
}

.slider-main-rating {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
    color: white;
}

.slider-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    display: inline-block;
    color: white;
}

.slider-main-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.slider-main-title a {
    color: white;
    text-decoration: none;
}

.slider-main-title a:hover {
    color: #4a9eff;
}

.slider-main-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.9;
    color: white;
}

/* Side Posts (Right Side) */
.slider-side-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slider-side-post {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: calc(50% - 0.5rem);
    display: flex;
    align-items: flex-end;
}

.slider-side-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slider-side-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.slider-side-content {
    position: relative;
    z-index: 3;
    padding: 1rem;
    width: 100%;
}

.slider-side-rating {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: bold;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 4;
    color: white;
    font-size: 0.8rem;
}

.slider-side-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.slider-side-title a {
    color: white;
    text-decoration: none;
}

.slider-side-title a:hover {
    color: #4a9eff;
}

.slider-side-meta {
    font-size: 0.7rem;
    opacity: 0.9;
    color: white;
}

/* Homepage Posts */
.homepage-posts {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

/* Blog Layout Variations */
.blog-layout-grid .homepage-grid-posts {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-layout-masonry .homepage-grid-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: masonry;
}

/* Masonry fallback for browsers that don't support it */
@supports not (grid-template-rows: masonry) {
    .blog-layout-masonry .homepage-grid-posts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* Author Display Styles */
.homepage-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #cccccc;
}

.homepage-author img {
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.homepage-featured-meta .homepage-author img {
    width: 24px;
    height: 24px;
}

/* Homepage Featured Posts (Full Width) */
.homepage-featured-post {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1rem;
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: stretch;
    margin: 0 0 1rem 0;
}

/* Mobil responsive düzen - ana sayfa kartları */
@media (max-width: 768px) {
    .homepage-featured-post {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .homepage-featured-image {
        height: 200px;
    }
    
    .homepage-featured-content {
        padding: 1rem;
    }
    
    .homepage-featured-title {
        font-size: 1.2rem;
    }
    
    .homepage-featured-buttons a {
        padding: 10px 16px;
        font-size: 0.9rem;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .homepage-featured-post {
        margin: 0 0 0.8rem 0;
    }
    
    .homepage-featured-image {
        height: 180px;
    }
    
    .homepage-featured-content {
        padding: 0.8rem;
    }
    
    .homepage-featured-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .homepage-featured-buttons a {
        padding: 8px 12px;
        font-size: 0.8rem;
        margin-right: 6px;
    }
}

/* Category page specific styles - reduce top spacing */
.category-content-wrapper .homepage-promo-cards,
.posts-container .homepage-promo-cards {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* category-header-new stilleri category-archive.css dosyasına taşındı */
/* Bu stiller artık gerekli değil çünkü gradient arka plan category-archive.css'de tanımlandı */

.category-header-new + .homepage-promo-cards {
    margin-top: 0 !important;
}

/* Homepage promo cards container spacing fix - removed conflicting flex layout */

/* İlk kartın üst margin'ini sıfırla */
.homepage-promo-cards > .homepage-featured-post:first-child {
    margin-top: 0 !important;
}

/* Additional spacing fixes for category pages */
.site-main .posts-container {
    margin-top: 0;
    padding-top: 0;
}

.posts-container > .category-header-new:first-child {
    margin-top: 0;
    padding-top: 0;
}

.homepage-featured-post:first-child {
    margin-top: 0;
}

.homepage-featured-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.homepage-featured-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.homepage-featured-image .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-featured-rating {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #4a9eff;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.homepage-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.homepage-featured-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.homepage-featured-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.homepage-featured-title a:hover {
    color: #4a9eff;
}

.homepage-featured-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #cccccc;
}

.homepage-featured-excerpt {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 8.0rem; /* 5 satır için sabit yükseklik */
}

.homepage-read-more {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.homepage-read-more:hover {
    color: #357abd;
}

/* Homepage Featured Buttons */
.homepage-featured-buttons {
    margin-top: 15px;
}

.homepage-featured-buttons a {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.button-buy {
    background-color: #007bff;
}

.button-buy:hover {
    background-color: #0056b3;
}

.button-demo {
    background-color: #28a745;
}

.button-demo:hover {
    background-color: #218838;
}

.homepage-featured-buttons .button-view {
    background-color: #6f42c1 !important;
    color: #fff !important;
}

.homepage-featured-buttons .button-view:hover {
    background-color: #5a2d91 !important;
}

/* ===== TEMA SATISI CATEGORY SPECIAL STYLES ===== */
/* Yeni tema kartı tasarımı */
.theme-card {
    background: #2d2d2d;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

/* Görsel alanı - kart genişliği kadar */
.theme-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.theme-card-image .theme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.theme-card:hover .theme-card-image .theme-img {
    transform: scale(1.05);
}

/* Placeholder için stil */
.theme-card-image .no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
}

.theme-card-image .placeholder-content {
    text-align: center;
}

.theme-card-image .placeholder-content svg {
    margin-bottom: 10px;
    opacity: 0.7;
}

.theme-card-image .placeholder-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Fiyat overlay - görselin üzerine */
.theme-price-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

/* Kart içerik alanı */
.theme-card-content {
    padding: 20px;
}

/* Başlık */
.theme-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.theme-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-card-title a:hover {
    color: #4a9eff;
}

/* Butonlar - görselin altında tek sıra */
.theme-card-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Genel buton stilleri */
.theme-card-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.theme-card-buttons a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Satın Al butonu */
.theme-card-buttons .btn-purchase {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.theme-card-buttons .btn-purchase:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Demo butonu */
.theme-card-buttons .btn-demo {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.theme-card-buttons .btn-demo:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* İncele butonu */
.theme-card-buttons .btn-details {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.1);
}

.theme-card-buttons .btn-details:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .theme-card-image {
        height: 200px;
    }
    
    .theme-card-content {
        padding: 15px;
    }
    
    .theme-card-title {
        font-size: 1.2rem;
    }
    
    .theme-card-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .theme-card-buttons a {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 480px) {
    .theme-card-image {
        height: 180px;
    }
    
    .theme-card-buttons a {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .theme-price-overlay {
        top: 12px;
        right: 12px;
        padding: 10px 14px;
        font-size: 1rem;
    }
}

/* Ana sayfa tanıtım kartları - yatay düzende alt alta */
.homepage-promo-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

/* Mobilde aynı düzen korunur */
@media (max-width: 768px) {
    .homepage-promo-cards {
        gap: 1rem;
    }
}

/* Homepage Grid Posts (2-Column) */
.homepage-grid-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Mobil görünümde tek sütun */
@media (max-width: 768px) {
    .homepage-grid-posts {
        display: block !important;
        grid-template-columns: none !important;
    }
}

.homepage-grid-post {
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.homepage-grid-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.homepage-grid-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.homepage-grid-image .grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.homepage-grid-rating {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #4a9eff;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
}

.homepage-grid-content {
    padding: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.homepage-grid-category {
    background: rgba(74, 158, 255, 0.2);
    color: #4a9eff;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.homepage-grid-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0.25rem;
    line-height: 1.3;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.homepage-grid-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.homepage-grid-title a:hover {
    color: #4a9eff;
}

.homepage-grid-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #cccccc;
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 0.5rem;
}

.homepage-date {
    color: #cccccc;
}

.homepage-comments {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Regular Posts */
.regular-posts {
    display: grid;
    gap: 2rem;
}

/* Featured Post (Legacy - keeping for compatibility) */
.featured-post {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.featured-post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.featured-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    z-index: 2;
}

.featured-post-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    width: 100%;
}

.post-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.post-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.post-rating {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
}

/* Regular Posts */
.post-card {
    background: #2d2d2d;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card .post-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.post-card .post-title a {
    color: #ffffff;
    text-decoration: none;
}

.post-card .post-title a:hover {
    color: #4a9eff;
}

.post-excerpt {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.read-more {
    color: #4a9eff;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more::after {
    content: "→";
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* ===== HEADER NAVIGATION OVERRIDE ===== */
/* Header menü aralıklarını yakınlaştır */
.main-navigation ul,
.site-header .main-navigation ul,
.header-container .main-navigation ul {
    gap: 1.1rem !important;
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Tüm header layout türleri için */
.site-header.minimal-layout .main-navigation ul,
.site-header.centered-layout .main-navigation ul,
.site-header.default-layout .main-navigation ul {
    gap: 1.1rem !important;
}

/* ===== DÖNEN BANNER SİSTEMİ ===== */
.rotating-banner-container {
    position: relative;
    width: 100%;
    max-width: 783px;
    margin: 0 auto 20px auto;
    height: 80px;
    overflow: hidden;
}

.rotating-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.rotating-banner.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.rotating-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .rotating-banner-container {
        max-width: 100%;
        height: auto;
    }
    
    .rotating-banner img {
        width: 100%;
        height: auto;
    }
}
