﻿* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-section {
    padding: 60px 0;
}

.news-header {
    margin-bottom: 30px;
}

.section-title {
    color: #254B72;
    margin-bottom: 30px;
    font-weight: 600;
}

.search-container {
    margin-bottom: 30px;
}

.card-item-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .card-item-icons .icon img {
        width: 10px;
    }

    .card-item-icons .icon:nth-child(3) {
        margin-left: 10px;
    }

    .card-item-icons .icon {
        display: flex;
        gap: 7px;
        align-items: center;
        font-size: 8px;
        font-weight: 400;
        margin-right: 10px;
        line-height: 30px;
        text-align: center;
        color: #747474;
    }

.news-card {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

    .news-card:hover {
        transform: translateY(-5px);
    }

.news-img-container {
    height: 180px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-content {
    padding: 5px 10px;
    background-color: transparent;
}

.news-title {
    font-size: 13px;
    font-weight: 600;
    color: #195A94;
    margin-bottom: 5px;
    line-height: 1.4;
}

.news-meta {
    font-size: 10px;
    color: #747474;
}

.input-group input {
    border: 2px solid #ABB7C2;
    box-shadow: 0px 4px 12px 0px #0D0A2C0F;
    border-radius: 10px;
    font-size: 15px;
    padding: 10px 8px;
}

.form-control:focus {
    box-shadow: none !important;
    outline: none !important;
}




/* ------Dark theme-------------- */

body.dark-mode {
    background-color: #010A16;
}

    body.dark-mode .input-group input {
        background-color: transparent;
    }


/*.rtl .news-content{
    direction:ltr;
}*/