﻿    .news-skil {
        padding: 0 10px; 
        font-size: 32px;
		font-weight: 600;
	}
	.news-products {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }
    .news-product-card {
        position: relative;
        width: 310px;
        background: white;
        border-radius: 6px;
        overflow: hidden;
        border: 2px solid transparent;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: border-color 0.3s ease;
    }
    .news-product-card:hover {
        border: 2px solid #004488;
    }
    .news-product-content {
        padding-bottom: 50px;
    }
    .news-product-footer {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #f9f9f9;
        position: absolute;
        bottom: -60px;
        left: 0;
        right: 0;
        transition: bottom 0.3s ease;
    }
    .news-product-card:hover .news-product-footer {
        bottom: 0;
    }
    .news-product-card h3 {
        text-align: center;
        padding: 0 10px;
        font-size: 16px;
        color: #333;
        min-height: 60px;
        margin-bottom: 0;
    }
	.news-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #004488;
        color: #fff;
        padding: 4px 8px;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        z-index: 10;
        border-radius: 2px;
		transition: background 0.5s ease;
    }
    .news-badge a {
        text-decoration: none;
        color: #fff;
    }
    .news-badge:hover {
        color: #fff;
        background: #d30000;
    }
    .news-price-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    .news-price {
        font-weight: bold;
        color: #0066cc;
        font-size: 18px;
        padding: 8px 12px;
        background-color: #f0f8ff;
        border-radius: 6px;
    }
    .news-old-price {
        color: #999;
        text-decoration: line-through;
        font-size: 14px;
    }
    .news-article-container {
        display: flex;
        align-items: center;
        gap: 5px;
        position: relative;
    }
    .news-article-label {
        font-size: 12px;
        color: #666;
    }
    .news-article {
        font-size: 13px;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        user-select: none;
    }
    .news-article:hover {
        color: #004488;
    }
    .news-copy-feedback {
        position: absolute;
        top: -20px;
        left: 0;
        white-space: nowrap;
        font-size: 11px;
        color: transparent;
        opacity: 0;
        transition: opacity 0.3s;
        background: #333;
        color: white;
        padding: 2px 6px;
        border-radius: 3px;
        font-weight: normal;
    }
    .news-copy-feedback.show {
        opacity: 1;
        color: white;
    }
    .news-cart-btn {
        display: block;
        width: auto;
        padding: 8px 20px;
        background-color: transparent;
        color: #004488;
        text-decoration: none;
        text-align: center;
        border: 2px solid #004488;
        border-radius: 6px;
        font-size: 14px;
        transition: background-color 0.3s;
        white-space: nowrap;
    }
    .news-cart-btn:hover {
        background-color: #004488;
        color: #fff;
    }
    @media (max-width: 1280px) {
        .news-product-card {
            width: 230px;
        }
        .news-product-footer {
            gap: 12px;
        }
        .news-article-label {
            font-size: 11px;
        }
        .news-article {
            font-size: 11px;
        }
        .news-cart-btn {
            padding: 5px 10px;
            font-size: 12px;
        }
    }
	@media (max-width: 768px) {
		.news-skil {
			display: none;
		}
		.news-products {
			display: none;
		}