
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --border-radius: 8px;
    --card-background: #f8f9fa;
    --sk-body-text-color: #1d1d1f;
    --primary-color: #7C3AED;
    --accent: #7C3AED;
    --dark-secondary: rgba(60, 60, 60, 0.6);
    --text-primary: #fff;
    --text-secondary: #6B7280;
    --sk-fill: #fff;
    --dark-light: rgba(60, 60, 60, 0.4);
    --promoaction: #ff2a38;
    --promoaction-blue: #0071e3;
    --promoaction-hot: #ff6f00;
    --promoaction-green: #34c759;
    --promoaction-purple: #244aa2;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    margin: 0;
    margin-top: 0px;
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-section {
    padding: 20px 0;
    padding-bottom: 60px;
    position: relative;
}

.news-container {
    display: flex;
    margin-left: 10px;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
}

.news-container::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 420px;
    height: 360px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-read-more {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent);
    color: var(--text-button);
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.news-card:hover .news-read-more {
    background-color: #6B46C1;
}

.news-read-more:hover {
    background-color: #A855F7;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 2;
}

.news-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    color: #ffffff;
}

.news-date {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

.nav-arrow-news {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--dark-secondary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-section:hover .nav-arrow-news {
    opacity: 1;
}

.nav-arrow-news.prev {
    left: 13%;
}


.nav-arrow-news.next {
    right: 13%;
}

.nav-arrow-news:hover{
    background-color: #979797;
}


.nav-arrow-news:disabled {
    background-color: var(--dark-light);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.5;
}



@media (max-width: 768px) {
    .container h2{
        font-size: 24px;
    }
    .container {
        padding: 0 15px;
    }




      .news-card {
        flex: 0 0 300px;
        height: 320px;
    }
    .news-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

  
    .nav-arrow-news {
        display: none;
    }
    .nav-arrow {
        display: none;
    }

    .reviews-grid {
        gap:1px;
        margin-top: 5px;
    }


   
    
}



    


    


    

