/* Ümumi tənzimləmələr */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; 
}

/* body {
    margin: 0;
    font-family: 'Questrial', sans-serif;
} */

.results-section {
    position: relative;
    padding: 100px 0;
    background-image: url('sizin-sekil-linkiniz.jpg'); /* Bura arxa plan şəklini qoyun */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallaks effekti üçün */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Şəklin üzərinə tünd qat (Overlay) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #00201cd9;  */
    z-index: 1;
}

.container-stats {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.content-stats {
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.8;
}

/* Statistika Grid-i */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* İlk element altındakı kiçik xətt */
.stat-line {
    width: 60px;
    height: 2px;
    background-color: #ffffff;
    margin-top: 15px;
}

/* Mobil cihazlar üçün uyğunluq (Responsive) */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 36px;
    }
    .stat-number {
        font-size: 48px;
    }
}




.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Üst Başlıq */
.main-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    font-size: 12px;
    color: #888;
    text-transform: lowercase;
}

.main-header h1 {
    font-size: 36px;
    /* letter-spacing: 1px; */
    margin-top: 10px;
    font-weight: bold;
    line-height: 1;
}

/* Üst Grid */
.top-news-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 80px;
}

.side-text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1;
}

.side-text-block p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.featured-image img {
    width: 100%;
    height: auto;
}

/* Kiçik yan kartlar */
.mini-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.mini-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 1;
}

.mini-card p {
    font-size: 12px;
    color: #666;
}

.mini-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Alt Bölmə Başlığı */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* Alt 3-lü Kartlar */
.bottom-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: transparent;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1;
}

.card-body p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

/* Meta məlumat (Tarix və Dəqiqə) */
.meta-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #bbb;
}

/* Mobil Uyğunluq */
@media (max-width: 992px) {
    .top-news-grid, .bottom-news-grid {
        grid-template-columns: 1fr;
    }
}



