.menu-link.active {
    color: rgba(255, 255, 255, 0.72);
}

.client-box-news {
    width: 100%;
    max-width: 1280px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.client-news-tabs {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 5px 15px;
    min-height: 40px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.client-news-tabs::-webkit-scrollbar {
    display: none;
}

.client-news-tabs button {
    padding: 2px 10px;
    margin-right: 10px;
    color: #01305d;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #000;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.client-news-tabs button.is-active,
.client-news-tabs button:hover {
    background: #009245;
    color: #fff;
    border-color: transparent;
}

.client-news-content {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.client-news-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.client-news-table tr {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.client-news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 2px 8px;
}

.client-news-date {
    color: #01305d;
    font-size: 14px;
}

.client-news-tag {
    height: 18px;
    min-width: 32px;
    padding: 0 6px;
    text-align: center;
    line-height: 18px;
    border-radius: 5px;
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background-color: #3099ca;
}

.client-news-title {
    color: #01305d;
    font-size: 17px;
    letter-spacing: 1px;
    text-decoration: none;
    margin-left: 8px;
}

.client-news-title:hover {
    text-decoration: underline;
}

.client-banner {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 7 / 2.8;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 1), 0 0 5px 10px rgb(0 0 0 / 50%);
}

.client-banner-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.client-banner-slide {
    min-width: 100%;
    height: 100%;
    display: block;
}

.client-banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.client-banner-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.client-banner-dots button.is-active {
    width: 20px;
    border-radius: 999px;
}

.client-banner-empty,
.client-empty {
    color: #777;
    text-align: center;
    padding: 20px 0;
}

.client-icons-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    padding: 5px;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.client-icon-card {
    position: relative;
    aspect-ratio: 300 / 196;
    width: 100%;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.client-icon-card:hover {
    transform: scale(1.05);
    z-index: 1;
}

.client-icon-link {
    display: block;
    width: calc(100% - 28px);
    height: calc(75% - 6px);
    margin: 0 auto;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.client-icon-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: normal;
    justify-content: center;
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.client-icon-image--cover {
    background-size: cover;
}

.client-icon-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #0f5d3f;
    font-size: 28px;
    font-weight: 800;
}

.client-icon-buttons {
    display: flex;
    width: 100%;
    height: 25%;
    padding: 10px;
    gap: 8px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
}

.client-icon-buttons a.btn-text {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    color: transparent;
    overflow: hidden;
    white-space: nowrap;
    text-indent: -9999px;
}

.client-icon-buttons .btn-left {
    background-image: url('../icon/but-01.png');
}

.client-icon-buttons .btn-right {
    background-image: url('../icon/but-02.png');
}

.client-icon-buttons a.btn-text:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.client-icon-buttons a.btn-text.is-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.client-icon-buttons a.btn-text.is-disabled:hover {
    transform: none;
}

.client-download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-download-list li {
    border-bottom: 1px solid #ddd;
    padding: 14px 0;
}

.client-download-list li:last-child {
    border-bottom: 0;
}

.client-download-list a {
    color: #1d7a68;
    font-weight: bold;
}

.client-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 4px;
}

.client-section-anchor {
    scroll-margin-top: 90px;
}

@media (max-width: 1024px) {
    .client-banner {
        max-width: 100%;
        margin-top: -25px;
        margin-bottom: 20px;
    }

    .client-icons-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .client-news-tabs button {
        font-size: 16px;
        padding: 2px 8px;
    }

    .client-news-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .client-icons-wrapper {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .client-icon-buttons a.btn-text {
        min-height: 32px;
    }
}
