/* --- 1. БАЗАЛЫҚ ПАРАМЕТРЛЕР --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Roboto:wght@400;500;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f8fa;
    color: #222;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ОРТАҚ ТАҚЫРЫП СТИЛІ */
h1, h2, h3, h4, h5, .logo, .rubric-header, .trend-label, .widget-title, .share-label, .hero-title, .video-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* --- 2. HEADER --- */
header { background: #fff; padding: 15px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 30px; font-weight: 900; color: #004aad; letter-spacing: -1px; z-index: 1002; }

.main-menu ul { display: flex; gap: 25px; flex-wrap: wrap; }
.main-menu a { font-weight: 700; font-size: 13px; color: #444; padding-bottom: 5px; border-bottom: 2px solid transparent; text-transform: uppercase; }
.main-menu a:hover { color: #004aad; border-bottom: 2px solid #004aad; }
.burger-btn { display: none; font-size: 24px; cursor: pointer; color: #004aad; z-index: 1002; }

/* --- 3. ІЗДЕУ БЛОГЫ --- */
.header-search { position: relative; display: flex; align-items: center; height: 40px; margin-left: 15px; }
.search-form { display: flex; align-items: center; position: relative; background: transparent; border: none; }
.search-input { position: absolute; right: 0; width: 0; opacity: 0; visibility: hidden; background: #fff; border: 1px solid #004aad; border-radius: 0; padding: 8px 35px 8px 15px; font-size: 14px; outline: none; color: #333; transition: all 0.4s ease; box-shadow: none; }
.search-btn { position: relative; z-index: 10; background: transparent; border: none; cursor: pointer; color: #333; padding: 5px; display: flex; align-items: center; }
.search-btn:hover { color: #004aad; }
.header-search.active .search-input { width: 250px; opacity: 1; visibility: visible; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* --- 4. ТРЕНДТЕР --- */
.trending-bar { background-color: #fff; border-bottom: 1px solid #eee; padding: 12px 0; margin-bottom: 30px; }
.trending-bar .container { display: flex; align-items: center; overflow-x: auto; }
.trending-bar .container::-webkit-scrollbar { display: none; }
.trend-label { font-size: 12px; color: #000; margin-right: 15px; white-space: nowrap; }
.trend-tags { display: flex; gap: 10px; }
.trend-tags a { background: #f0f4f8; color: #333; padding: 6px 14px; border-radius: 0; font-size: 12px; font-weight: 600; white-space: nowrap; font-family: 'Montserrat', sans-serif; text-transform: uppercase; }
.trend-tags a:hover { background: #004aad; color: #fff; transform: translateY(-2px); }

/* --- 5. НЕГІЗГІ ТОР --- */
.main-grid, .top-section { display: grid; grid-template-columns: 260px 1fr; gap: 40px; margin-top: 30px; margin-bottom: 60px; align-items: start; }

/* --- 6. САЙДБАР --- */
.left-sidebar-wrapper { display: flex; flex-direction: column; gap: 25px; position: sticky; top: 90px; }

.news-list-container {
    height: 380px;
    display: flex;
    flex-direction: column;
}
.news-list-container ul { 
    display: block; 
    overflow-y: auto; 
    padding-right: 10px; 
    flex-grow: 1;
}
.news-list-container ul::-webkit-scrollbar { width: 6px; }
.news-list-container ul::-webkit-scrollbar-track { background: #f1f1f1; }
.news-list-container ul::-webkit-scrollbar-thumb { background: #004aad; }

.news-list-item { padding-bottom: 12px; border-bottom: 1px solid #eee; transition: 0.3s; margin-bottom: 12px; }
.news-list-item:last-child { border: none; padding-bottom: 0; margin-bottom: 0; }
.news-list-item:hover { transform: translateX(5px); }
.news-list-item a { font-size: 14px; line-height: 1.4; display: block; color: #333; font-weight: 600; text-transform: none; font-family: 'Roboto', sans-serif; }
.news-list-item a:hover { color: #004aad; }

/* РУБРИКА ТАҚЫРЫПТАРЫ (АНИМАЦИЯЛЫҚ СТРЕЛКАМЕН) */
.rubric-header { margin-bottom: 15px; }
.rubric-header a { 
    display: flex; 
    align-items: center; 
    font-size: 16px; 
    color: #111; 
    transition: 0.3s;
}
.rubric-header a span.arrow-icon { 
    color: #004aad; 
    margin-left: 10px; 
    background: rgba(0, 74, 173, 0.1); 
    width: 24px; 
    height: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    font-size: 14px; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    font-weight: normal;
}
.rubric-header a:hover { color: #004aad; }
.rubric-header a:hover span.arrow-icon { 
    background: #004aad; 
    color: #fff; 
    transform: translateX(5px) scale(1.1);
}

.sidebar-widgets { 
    background: #fff; 
    border: 1px solid #eee; 
    padding: 25px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    gap: 15px; 
    height: 220px;
    border-radius: 0;
}
.widget-title { font-size: 14px; color: #777; border-bottom: 2px solid #004aad; display: inline-block; padding-bottom: 5px; margin-bottom: 10px; }
.currency-row { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 14px; font-weight: 500; }
.currency-val.up { color: #2e7d32; } .currency-val.down { color: #d32f2f; }

/* --- 7. БАСТЫ БЕТ ЭЛЕМЕНТТЕРІ --- */
.right-content-wrapper { display: flex; flex-direction: column; gap: 40px; }
.hero-top-row { display: grid; grid-template-columns: 1fr 320px; gap: 25px; height: 380px; }
.hero-bottom-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; height: 220px; }

.hero-card { position: relative; overflow: hidden; background: #000; height: 100%; display: block; transition: transform 0.3s, box-shadow 0.3s; border-radius: 0; }
.hero-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.hero-card img { width: 100%; height: 100%; opacity: 0.95; transition: 0.5s; object-fit: cover; }
.hero-card:hover img { transform: scale(1.05); opacity: 0.85; }

.hero-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; z-index: 2; }
.hero-title { text-shadow: 0 2px 4px rgba(0,0,0,0.3); line-height: 1.25; color: #fff; }
/* ТҮЗЕТІЛДІ: Басты жаңалықтың шрифті кішірейтілді (26px -> 20px) */
.hero-card.large .hero-title { font-size: 20px; }
.hero-card.small .hero-title { font-size: 16px; }
.hero-meta { position: absolute; top: 20px; left: 20px; z-index: 10; font-family: 'Montserrat', sans-serif; font-size: 10px; background: #004aad; color: #fff; padding: 4px 10px; font-weight: 700; border-radius: 0; }

/* --- AQI SUPER-WIDGET --- */
.aqi-hero-card {
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    color: #fff !important; 
    padding: 25px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #4caf50; 
    text-align: center;
}
.aqi-top { display: flex; flex-direction: column; align-items: center; flex-grow: 1; justify-content: center; }
.aqi-label { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.9; font-weight: 700; margin-bottom: 10px; }
.aqi-number { font-family: 'Montserrat', sans-serif; font-size: 90px; font-weight: 900; line-height: 1; text-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.aqi-status { font-size: 24px; font-weight: 700; margin-top: 5px; background: rgba(255,255,255,0.25); padding: 5px 20px; border-radius: 0; backdrop-filter: blur(5px); }
.aqi-bottom { display: flex; justify-content: space-between; align-items: center; background: rgba(0,0,0,0.2); padding: 15px 20px; border-radius: 0; margin-top: 20px; }
.weather-temp { font-size: 32px; font-weight: 800; font-family: 'Montserrat', sans-serif; line-height: 1; }
.weather-desc { font-size: 13px; font-weight: 500; opacity: 0.9; margin-top: 3px; }
.weather-icon { font-size: 40px; line-height: 1; }

.category-section { display: grid; grid-template-columns: repeat(3, 1fr) 300px; gap: 30px; margin-bottom: 60px; }
.cat-main-news img { width: 100%; height: 180px; margin-bottom: 15px; transition: 0.3s; border-radius: 0; }
.cat-main-news:hover img { transform: scale(1.02); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.cat-main-news h4 { 
    font-size: 15px; 
    font-weight: 800; 
    line-height: 1.35; 
    margin-bottom: 8px; 
    color: #111; 
    text-transform: uppercase;
}

.cat-list-news { border-top: 1px solid #eee; padding-top: 12px; margin-top: 12px; }
.cat-list-news h5 { font-size: 14px; font-weight: 600; color: #444; text-transform: none; }
.cat-list-news:hover h5 { color: #004aad; }

/* ТҮЗЕТІЛГЕН ЖЕР (ДЕСКТОП): Баннерді квадрат қылдық */
.ad-banner { 
    background: #f0f2f5; 
    border: 2px dashed #dee2e6; 
    width: 100%;
    max-width: 320px; 
    aspect-ratio: 1 / 1; 
    margin: 30px auto;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #adb5bd; 
    font-weight: 800; 
    font-family: 'Montserrat', sans-serif; 
    border-radius: 8px; 
}

.video-section-full { background: linear-gradient(135deg, #004aad 0%, #002a6e 100%); padding: 60px 0; margin-bottom: 60px; box-shadow: 0 20px 50px rgba(0, 74, 173, 0.25); }
.video-header h2 { font-size: 28px; color: #fff; margin-bottom: 30px; display:inline-block; margin-right: 15px;}
.video-header a { color: #fff; display: flex; align-items: center; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.video-item { background: rgba(255,255,255,0.05); overflow: hidden; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; border-radius: 0; }
.video-item:hover { transform: translateY(-8px); background: rgba(255,255,255,0.15); }
.video-thumb { position: relative; height: 160px; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* PLAY БАТЫРМАСЫ */
.play-btn { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    width: 46px; height: 46px; background: #fff; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: #d32f2f; font-size: 18px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: pulse 2s infinite; 
}
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
    100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.video-title { 
    padding: 15px; 
    color: #fff; 
    font-size: 13px; 
    font-weight: 700; 
    text-transform: uppercase;
}

/* --- 8. МАҚАЛА БЕТІ --- */
.article-container { background: #fff; padding: 40px; border: 1px solid #eee; border-radius: 0; }
.breadcrumbs { font-size: 12px; color: #777; margin-bottom: 20px; text-transform: uppercase; font-weight: 600; }
.breadcrumbs a { color: #004aad; }
.breadcrumbs span { margin: 0 5px; color: #ccc; }
.article-title { font-size: 32px; line-height: 1.3; margin-bottom: 20px; color: #111; font-weight: 800; }
.article-meta { display: flex; align-items: center; gap: 25px; font-size: 13px; color: #999; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; font-weight: 500; }
.article-image { width: 100%; height: auto; margin-bottom: 40px; }
.article-image img { width: 100%; height: auto; border-radius: 0; object-fit: cover; }
.img-caption { font-size: 13px; color: #777; margin-top: 10px; font-style: italic; }

.article-content p { margin-bottom: 12px; font-size: 18px; color: #222; line-height: 1.5; font-family: 'Roboto', sans-serif; }
.article-content p:empty { display: none; }
.article-content h3 { font-size: 24px; margin-top: 40px; margin-bottom: 20px; color: #000; font-family: 'Montserrat', sans-serif; }
.article-quote, blockquote { border-left: 4px solid #004aad; padding-left: 20px; margin: 30px 0; font-size: 20px; font-weight: 500; font-style: italic; color: #444; background: #f9f9f9; padding: 20px; border-radius: 0; }

.share-block { display: flex; align-items: center; gap: 15px; margin-top: 30px; padding-top: 20px; border-top: 1px dashed #ddd; flex-wrap: wrap; }
.share-label { font-weight: 700; font-size: 14px; color: #333; text-transform: uppercase; margin-right: 5px; }
.share-icons { display: flex; align-items: center; gap: 10px; }
.share-btn { display: flex; align-items: center; justify-content: center; width: 40px !important; height: 40px !important; flex-shrink: 0; border-radius: 50%; background: #f0f2f5; color: #fff; transition: 0.3s; text-decoration: none; }
.share-btn.whatsapp { background-color: #25D366; }
.share-btn.telegram { background-color: #0088cc; }
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.share-btn i { font-size: 20px; } 

.article-tags { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.article-tag { background: #f7f8fa; padding: 5px 15px; font-size: 13px; font-weight: 600; color: #555; border-radius: 0; }
.article-tag:hover { background: #004aad; color: #fff; }

/* AI Chat */
.ai-chat-section { margin-top: 50px; border-top: 1px solid #eee; padding-top: 30px; }
.ai-chat-box { background: #fff; border: 1px solid #e0e0e0; border-radius: 0; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.ai-chat-header { background: linear-gradient(135deg, #004aad 0%, #002a6e 100%); padding: 15px 20px; display: flex; align-items: center; gap: 10px; color: #fff; }
.ai-avatar { width: 32px; height: 32px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #004aad; }
.chat-messages { height: 300px; overflow-y: auto; padding: 20px; background: #f7f9fc; display: flex; flex-direction: column; gap: 15px; }
.message { max-width: 80%; padding: 12px 16px; font-size: 14px; border-radius: 0; }
.message.ai { align-self: flex-start; background: #fff; border: 1px solid #eee; }
.message.user { align-self: flex-end; background: #004aad; color: #fff; }
.chat-input-area { padding: 15px; background: #fff; border-top: 1px solid #eee; display: flex; gap: 10px; }
.chat-input { flex-grow: 1; border: 1px solid #ddd; border-radius: 0; padding: 10px 15px; outline: none; }
.chat-send-btn { background: #004aad; color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }

/* --- 9. FOOTER --- */
footer { background: #111; color: #999; padding: 60px 0 0 0; font-size: 14px; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 200px; background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/City_silhouette.svg/2560px-City_silhouette.svg.png'); background-size: cover; background-repeat: no-repeat; background-position: bottom center; opacity: 0.05; pointer-events: none; z-index: 0; }

.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr 1.5fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid #222; }
.footer-col h4 { color: #fff; margin-bottom: 25px; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 26px; color: #fff; display: block; margin-bottom: 20px; letter-spacing: -1px; }
.footer-desc { font-size: 13px; line-height: 1.7; color: #777; margin-bottom: 20px; }

/* Footer Links */
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #999; font-size: 13px; font-weight: 500; transition: 0.3s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }

/* Social Icons (SVG) */
.footer-socials { display: flex; gap: 15px; margin-top: 15px; }
.social-link { 
    width: 40px; height: 40px; 
    background: #222; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    transition: all 0.3s ease; 
}
.social-link svg { width: 20px; height: 20px; fill: #fff; transition: 0.3s; }
.social-link:hover { transform: translateY(-3px); }
.social-link.fb:hover { background: #1877F2; }
.social-link.yt:hover { background: #FF0000; }
.social-link.insta:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-link.tt:hover { background: #000; border: 1px solid #333; }
.social-link.tt:hover svg { fill: #00f2ea; filter: drop-shadow(2px 0 0 #ff0050); }

/* --- KASPI WIDGET STYLES --- */
.kaspi-widget {
    background: #1a1a1a;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 0;
    text-align: center;
}
.kaspi-text {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.5;
}
.kaspi-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f14635; /* Kaspi Red */
    color: #fff !important;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
    border: none;
    width: 100%;
}
.kaspi-btn:hover {
    background: #d93828;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 70, 53, 0.3);
}
.kaspi-icon { font-size: 18px; font-weight: 900; }
.merch-text { margin-top: 15px; font-size: 12px; color: #888; border-top: 1px solid #333; padding-top: 10px; }

/* БАЙЛАНЫС ЖӘНЕ ЗАҢДЫ АҚПАРАТ СТИЛІ */
.footer-contact-info p {
    margin-bottom: 15px;
    color: #999;
    font-size: 13px;
    line-height: 1.6;
}
.footer-contact-info strong {
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.footer-legal {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed #333;
    color: #666;
    font-size: 11px;
    line-height: 1.6;
}
.footer-legal strong { color: #888; }

.copyright { padding: 25px 0; text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #555; background: #0a0a0a; position: relative; z-index: 1; }

/* --- 10. АДАПТИВНОСТЬ (MOBILE) --- */
@media (max-width: 992px) {
    .container { max-width: 100%; padding: 0 15px; }
    .logo { font-size: 24px; }
    .main-menu { display: none; position: absolute; top: 60px; left: 0; width: 100%; background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 20px; }
    .main-menu.active { display: block; }
    .main-menu ul { flex-direction: column; gap: 15px; }
    .burger-btn { display: block; margin-right: 15px; } 
    .search-icon { margin-left: auto; }
    .trending-bar .container { flex-direction: column; align-items: flex-start; }
    .trend-tags { width: 100%; overflow-x: auto; padding-bottom: 5px; }
    .main-grid, .top-section { grid-template-columns: 1fr; margin-bottom: 40px; }
    .left-sidebar-wrapper { display: flex !important; flex-direction: column; order: 2; width: 100%; margin-top: 30px; }
    .right-content-wrapper { order: 1; }
    .aqi-hero-card { margin-bottom: 20px; min-height: 200px; }
    .news-list-container, .sidebar-widgets, .hero-top-row, .hero-bottom-row { height: auto; }
    .article-container { padding: 20px; border: none; padding-left: 0; padding-right: 0; }
    .article-title { font-size: 24px; }
    .article-image img { width: 100% !important; height: auto !important; aspect-ratio: 1 / 1 !important; object-fit: cover !important; }
    .hero-top-row, .hero-bottom-row { height: auto; grid-template-columns: 1fr; }
    .hero-card.large, .hero-card.small { width: 100%; height: auto; aspect-ratio: 1 / 1; }
    .category-section { grid-template-columns: 1fr; gap: 40px; }
    .cat-main-news img { aspect-ratio: 16 / 9 !important; }
    
    /* ТҮЗЕТІЛГЕН ЖЕР (МОБИЛЬДІ): Баннер енді квадрат болады */
    .ad-banner { height: auto; aspect-ratio: 1 / 1 !important; min-height: 0; max-width: 320px; margin: 30px auto; }
    
    .video-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .search-input { top: 100%; right: -15px; margin-top: 15px; background: #fff; border: 1px solid #ddd; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .header-search.active .search-input { width: 300px; max-width: 90vw; padding: 10px 15px; }
    .search-input::before { content: ''; position: absolute; top: -6px; right: 20px; width: 10px; height: 10px; background: #fff; transform: rotate(45deg); border-top: 1px solid #ddd; border-left: 1px solid #ddd; }
}
@media (max-width: 992px) {
    .desktop-only-widget { display: none !important; }
    .mobile-only-widget { display: block !important; margin: 25px 0; }
}
@media (min-width: 993px) {
    .mobile-only-widget { display: none !important; }
    .desktop-only-widget { display: block !important; }
}
.kaspi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f6f9;
    
    /* МЫНА ЖЕРГЕ !important ҚОСАМЫЗ */
    color: #000000 !important; 
    
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #ddd;
    transition: 0.3s;
}

/* Тышқанды апарғанда (Hover) түсі өзгерсін десеңіз: */
.kaspi-btn:hover {
    background-color: #e2e6ea;
    color: #000000 !important; /* Мұнда да қарайып тұруы үшін */
}

/* =========================================
   БӨЛІСУ БАТЫРМАЛАРЫ (Түзетілген нұсқа)
   ========================================= */
.share-section {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #eee; /* Жоғарғы сызық қалады */
    border-bottom: none;        /* Астыңғы сызықты АЛЫП ТАСТАДЫҚ */
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: -40px; /* AI чатқа жақындату үшін */
}

/* Қалған стильдер өзгеріссіз қалады */
.share-label {
    font-weight: bold;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 5px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    outline: none;
}

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.share-btn svg {
    width: 20px;  /* Иконка өлшемі */
    height: 20px;
    fill: white;
}

.btn-whatsapp { background-color: #25D366; box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3); }
.btn-telegram { background-color: #229ED9; box-shadow: 0 3px 8px rgba(34, 158, 217, 0.3); }
/* Facebook түсі (Ресми көк түс) */
.btn-facebook {
    background-color: #1877F2;
    box-shadow: 0 3px 8px rgba(24, 119, 242, 0.3);
}
/* =========================================
   МАҚАЛА МЕТА-ДЕРЕКТЕРІ (Дата және Қаралым)
   ========================================= */
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px; /* Дата мен қаралым арасы */
    margin-bottom: 20px;
    font-size: 14px;
    color: #888; /* Сұр түс - көзге жұмсақ */
    font-family: 'Montserrat', sans-serif;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px; /* Иконка мен санның арасы */
    font-weight: 500;
}

.meta-item svg {
    width: 18px;  /* Иконка өлшемі */
    height: 18px;
    fill: #999;   /* Иконканың түсі (сәл ашық сұр) */
}

/* =========================================
   ОРТАДАҒЫ БАННЕРЛЕР (Асты-үсті / Вертикалды)
   ========================================= */
.center-banner-wrapper {
    display: flex;
    flex-direction: column; /* ЕҢ МАҢЫЗДЫСЫ: Тігінен тізу */
    gap: 30px;              /* Екі баннердің арасы */
    margin: 30px 0;
    width: 100%;
    align-items: center;    /* Ортаға туралау */
}

.center-banner-item {
    width: 100%;
    max-width: 350px;       /* Ені тым үлкейіп кетпеуі үшін */
    aspect-ratio: 1 / 1;    /* Нақты КВАДРАТ */
    
    background: #f4f4f4;
    border: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    color: #adb5bd;
    font-family: 'Montserrat', sans-serif;
}