
.investor-news-main {
    background-color: #F5F5F5;
    padding-block: 80px 58px;
    margin-bottom: 80px;
}

.investor-news-layout>div {
    flex: 1 0 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #f8f8f8;
}

.investor-news-layout {
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.investor-news-head p {
    font: 500 20px/1.4 var(--font-helvetica-neue);
    background-color: #EA7600;
    padding: 4px 12px 12px;
    width: max-content;
    color: #FFF;
}

.investor-news-title {
    font: 500 30px/1.33 var(--font-helvetica-neue);
    color: #222;
    margin-block: 16px;
    max-width: 543px;
    width: 100%;
}

.investor-news-date {
    font: 400 20px/1.5 var(--font-helvetica-neue);
    color: #797A7D;
    margin-block-end: 16px;
}

.investor-news-img {
    width: 100%;
    max-width: 543px;
}

.investor-news-read-more {
    margin-top: 44px;
}

.investor-news-read-more a {
    color: #4A4A4A;
    opacity: 1;
}

.investor-news-main .section-small-heading {
    font: 700 18px/22px var(--font-helvetica-neue);
    letter-spacing: 10%;
    text-transform: uppercase;
    color: #00677F;
    margin-block: 0 24px;
}

.justify-between {
  justify-content: space-between;
}
.investor-news-dots:empty {
  display: none;
}

@media screen and (max-width: 890px) {
    .investor-news-title {
        font-size: 20px;
    }

}

@media screen and (max-width: 768px) {
    .investor-news-title {
        font-size: 24px;
    }

    .investor-news-read-more {
        margin-top: 33px;
    }

    .investor-news-head p {
        padding: 4px 12px;
        font-size: 18px;
    }

    .investor-news-title {
        max-width: 100%;
    }

    .investor-news-img {
        max-width: 100%;
    }



    .investor-news-layout.slider-mode {
        display: flex;
        overflow: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .investor-news-layout.slider-mode>.investor-news-layout-sub {
        min-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .investor-news-dots {
        display: flex;
        justify-content: end;
        margin-top: 12px;
        gap: 8px;
        padding-right: 15px;
    }

    .news-dot {
        width: 6px;
        height: 6px;
        background-color: #bbb;
        transition: background-color 0.3s;
        cursor: pointer;
    }

    .news-dot.active {
        background-color: red;
        width: 18px;
    }

    .investor-news-layout{
        flex-direction: row;
        
    }

    .investor-news-read-more a {
    color: #E71316;
    opacity: 1;
}
}


