@font-face {
    font-family: 'Montserrat Armenian';
    src: url('../fonts/web_font/Montserratarm-Regular.woff2') format('woff2'),
        url('../fonts/web_font/Montserrat-Armenian-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Armenian bold';
    src: url('../fonts/web_font/Montserratarm-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Armenian semiBold';
    src: url('../fonts/web_font/Montserratarm-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Armenian light';
    src: url('../fonts/web_font/Montserratarm-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: 'Montserrat Armenian';
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

.news-section {
    margin: 2% 4%;
}

.news-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.news-column {
    width: 80%;
}

.information {
    background-color: #F9F9F9;
    padding: 77px 20px;
    border-radius: 10px;
    position: relative;
}

.news-image-and-title {
    display: flex;
    align-items: start;
}

.news-img {
    width: 45%;
    height: auto;
    margin-bottom: 20px;
}

.news-heading h1 {
    font-size: 24px;
    color: #1E1E1E;
    margin-left: 22px;
    font-family: 'Montserrat Armenian semiBold';
    margin-top: 24px;
}


.news-content {
    font-size: 14px;
    line-height: 147%;
    color: #6C6C6C;
    font-family: 'Montserrat Armenian';
}

.news-content ul {
    font-size: 14px;
    line-height: 147%;
    color: #6C6C6C;
    font-family: 'Montserrat Armenian light';
    list-style-type: disc;
    padding-inline-start: 40px;
}

.news-content {
    padding: 0px 20px;
}

.media-gallery-wrapper {
    position: relative;
    margin-top: 20px;
}

.media-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 10px;
    margin: 0;
}

.media-item {
    flex: 0 0 auto;
    width: 23.8%;
    border-radius: 8px;
    overflow: hidden;
}

.media-item img,
.media-item video {
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 1.92px 1.92px 1.92px rgba(0, 0, 0, 0.05);

}

.media-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-scroll-arrow img {
    width: 15;
    height: 15px;
}

.media-scroll-arrow.left {
    left: -40px;
    display: none;
}

.media-scroll-arrow.right {
    right: -40px;
}

.media-scroll-arrow.left.visible {
    display: flex;
}

.media-gallery::-webkit-scrollbar {
    display: none;
}

.postDate {
    margin-right: 30px;
    font-size: 11px;
    color: #AFAFAF;
    font-family: 'Montserrat Armenian light';
    position: absolute;
    bottom: 20;
    right: 0;
}





.ads-right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px; /* ազատ տարածություն գովազդների միջև */
    align-items: center; /* եթե ուզում ես կենտրոնացված լինեն */
}

.ad-box {
    width: 313px;
    height: 516px;
    overflow: hidden;
    border-radius: 12px;
    padding: 77px 5px;
}

.ad-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}












.ads-column {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;

    align-items: center;
    margin: 20px 0;
}

.ad-item img {
    width: 100%;
    border-radius: 10px;

    width: 313px;
    height: 516px;
    object-fit: cover;
    margin-bottom: 20px;
}

.ad-item {
    margin-bottom: 20px;
}
/* Advertisement Section */

.ad-banner {
    max-width: 100%;
    height: 371px;
    overflow: hidden;
    margin-bottom: 3%;
    margin-left: 4%;
    margin-right: 4%;
    border-radius: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
    pointer-events: none; /* որ չաշխատի անտեսանելի վիճակում */
}

.ad-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.ad-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}


/* Responsive Breakpoints */

@media (max-width: 1000px) {
    .news-container {
        flex-direction: column;
    }

    .news-column,
    .ads-column {
        width: 100%;
    }

    .news-image-and-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-img {
        width: 100%;
    }

    .news-heading h1 {
        margin-left: 0;
        text-align: left;
    }
}

@media (max-width: 800px) {
    .news-section {
        padding: 40px 20px;
    }

    .news-column {
        padding: 20px;
    }

    .news-heading h1 {
        font-size: 22px;
    }

    .news-content p {
        font-size: 15px;
    }
}

@media (max-width: 700px) {
    .news-heading h1 {
        font-size: 20px;
    }

    .news-content p {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .news-section {
        padding: 30px 15px;
    }

    .news-column {
        padding: 15px;
    }

    .ads-column {
        gap: 15px;
    }

    .news-content p {
        line-height: 1.5;
    }
}

@media (max-width: 500px) {
    .news-heading h1 {
        font-size: 18px;
    }

    .news-content p {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .news-heading h1 {
        font-size: 16px;
    }

    .news-content p {
        font-size: 12px;
    }

    .news-column {
        padding: 10px;
    }

    .news-section {
        padding: 20px 10px;
    }
}