.industry-news {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 25px 0px;
}
.page__inner > .industry-news:first-child {
    margin-top: 60px;
    padding-top: 0px;
}
.industry-news .section-title {
    color: rgba(25, 40, 48, 0.9);
    font: 600 24px/1 Raleway, sans-serif;
    margin-bottom: 30px;
}

.industry-news .news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 46px;
}

.industry-news .news-item {
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 14px);
}

.industry-news .news-image {
    width: 100%;
    aspect-ratio: 1.64;
    object-fit: cover;
    border-radius: 8px;
}

.industry-news .news-content {
    margin-top: 20px;
}

.industry-news .news-date {
    color: #00a6aa;
    font: 700 15px/1.6 Raleway, sans-serif;
    display: block;
    margin-bottom: 10px;
    font-variant-numeric: lining-nums proportional-nums;
}

.industry-news .news-title {
    color: rgba(25, 40, 48, 0.9);
    font: 700 15px/1.6 Raleway, sans-serif;
    font-variant-numeric: lining-nums proportional-nums;
}

.industry-news .load-more-button {
    align-self: center;
    background-color: #f9f9f9;
    border: none;
    border-radius: 10px;
    color: #00a6aa;
    cursor: pointer;
    font: 700 15px/1.6 Raleway, sans-serif;
    padding: 12px 24px;
    transition: background-color 0.3s ease;
}
.industry-news .pagination-container{
    text-align: center;

}
.industry-news .load-more-button:hover {
    background-color: #e9e9e9;
}

.industry-news .button-text {
    display: inline-block;
}

@media (max-width: 991px) {
    .industry-news .news-grid {
        flex-direction: column;
    }

    .industry-news .news-item {
        width: 100%;
    }

    .industry-news .load-more-button {
        margin-top: 0px;
    }
}

@media (max-width: 990px) and (min-width: 620px) {
    .industry-news .news-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-news .news-item {
        width: calc(50% - 10px);
    }
}
.news-button-group .button-group {
    display: flex;
    margin-top: 30px;
    width: 157px;
    max-width: 100%;
    white-space: nowrap;
    font: 700 15px/1.6 Raleway, sans-serif;
    z-index: 10;
}

.news-button-group .btn {
    justify-content: center;
    display: flex;
    min-height: 44px;
    cursor: pointer;
    border: 1px solid #00a6aa;
    color: #00a6aa;
    transition: all 0.3s ease;
}

.news-button-group .btn:first-child {
    border-radius: 10px 0 0 10px;
}

.news-button-group .btn:last-child {
    border-radius: 0 10px 10px 0;
}

.news-button-group .btn.active {
    background: #00a6aa;
    color: #fff;
}

.news-button-group .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 10px;
}

.news-button-group .btn-text {
    font-variant-numeric: lining-nums proportional-nums;
    align-self: stretch;
    gap: 10px;
    margin: auto 0;
    padding: 0 8px;
    line-height: 45px;
}

#industry_news {
    display: none;
}