.wtr-btns-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}
.wtr-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 0 1 auto;
    padding: 5px 0;
}
.wtr-btns::-webkit-scrollbar {
    display: none;
}
.wtr-button {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #037580;
    background: #037580;
    color: #fff;
}
.wtr-button.is-white {
    background: #fff;
    color: #0066cc;
    border: 2px solid #037580;
}
.wtr-button.active {
    background: #0066cc;
    color: #fff;
    border: 2px solid #037580;
}
.wtr-button:hover {
    opacity: 0.85;
}
.wtr-arrow-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #037580;
    background: #fff;
    color: #0066cc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.wtr-arrow-btn:hover {
    background: #037580;
    color: #fff;
}
.wtr-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Tabs content */
.tabs-hld {
    padding: 20px 0;
}
/*.tabs-hld .tab {
    display: block;
}*/
.tabs-hld .tab.invisible {
    display: none;
}

/* News Grid Layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.news-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-item-content {
    padding: 16px;
}

.news-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-date {
    font-size: 13px;
    color: #888;
}
.wtr-btns-container .wtr-btns .wtr-button {
    line-height: 17px;
}
.wtr-btns-container .wtr-btns .wtr-button.is-white {
    line-height: 17px;
}
.wtr-btns-container .wtr-btns {
    justify-content: space-between;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Mobile styles for tabs */
@media (max-width: 768px) {
    .wtr-btns-container {
        gap: 8px;
    }
    .wtr-arrow-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .wtr-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    .wtr-btns-container .wtr-btns .wtr-button {
        line-height: 30px;
    }
    .wtr-btns-container .wtr-btns .wtr-button.is-white {
        line-height: 30px;
    }
}

@media (max-width: 400px) {
    .wtr-btns-container .wtr-btns {
        flex-wrap:nowrap;
    }
}