main.news-regulations {
    width: 100%;
    padding: 64px 0 0;
}

main.news-regulations > .news-regulations__section {
    width: 100%;
    padding: 80px 0;
    box-sizing: border-box;
}

main.news-regulations .news-regulations__inner {
    width: 100%;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* header */

.news-regulations__header {
    margin-bottom: 48px;
}

.news-regulations__eyebrow {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 20px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.news-regulations__title {
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    color: #111827;
}

.news-regulations__description {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #6b7280;
}


/* controls */

.news-regulations__controls {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 32px;
}

.news-regulations__search {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

.news-regulations__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    color: #9ca3af;
    transform: translateY(-50%);
    pointer-events: none;
}

.news-regulations__search-input {
    width: 100%;
    height: 42px;
    padding: 10px 16px 10px 36px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    outline: none;
    background: #ffffff;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 20px;
    color: #111827;
}

.news-regulations__search-input::placeholder {
    color: #9ca3af;
}

.news-regulations__search-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 1px #000000;
}

.news-regulations__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-regulations__category {
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    background: #ffffff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #4b5563;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        background-color 0.15s ease,
        color 0.15s ease;
}

.news-regulations__category:hover {
    border-color: #9ca3af;
}

.news-regulations__category.is-active {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}


/* notice */

.news-regulations__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px;
    border: 1px solid #fde68a;
    border-radius: 12px;
    background: #fffbeb;
    box-sizing: border-box;
}

.news-regulations__notice-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

.news-regulations__notice-text {
    margin: 0;
    font-size: 12px;
    line-height: 19px;
    color: #b45309;
}


/* list */

.news-regulations__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-regulations__item {
    overflow: hidden;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    background: #ffffff;
}

.news-regulations__item-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    padding: 20px;
    border: 0;
    background: #ffffff;
    box-sizing: border-box;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.news-regulations__item-button:hover {
    background: #f9fafb;
}

.news-regulations__item-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.news-regulations__book-icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #9ca3af;
}

.news-regulations__item-text {
    display: block;
    min-width: 0;
}

.news-regulations__meta {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 16px;
    color: #9ca3af;
}

.news-regulations__item-title {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #111827;
}

.news-regulations__chevron {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #9ca3af;
    transition: transform 0.15s ease;
}

.news-regulations__item.is-open .news-regulations__chevron {
    transform: rotate(180deg);
}


/* accordion content */

.news-regulations__item-content {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid #f9fafb;
}

.news-regulations__item.is-open .news-regulations__item-content {
    display: block;
}

.news-regulations__summary {
    margin: 16px 0;
    font-size: 14px;
    line-height: 22px;
    color: #4b5563;
}

.news-regulations__points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.news-regulations__points li {
    position: relative;
    margin: 0;
    padding-left: 12px;
    font-size: 12px;
    line-height: 18px;
    color: #4b5563;
}

.news-regulations__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9ca3af;
}

.news-regulations__item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    line-height: 16px;
    color: #9ca3af;
}

.news-regulations__updated {
    color: #9ca3af;
}

.news-regulations__reference {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 12px;
    line-height: 16px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.15s ease;
}

.news-regulations__reference:hover {
    color: #374151;
}


/* empty / contact */

.news-regulations__empty {
    padding: 80px 0;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #9ca3af;
}

.news-regulations__contact {
    margin: 40px 0 0;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    color: #9ca3af;
}


/* tablet / mobile */
@media (min-width: 640px) {

    .news-regulations__controls {
        flex-direction: row;
    }

    .news-regulations__description br {
        display: block;
    }

}

@media (max-width: 639px) {

    main.news-regulations .news-regulations__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .news-regulations__title {
        font-size: 36px;
        line-height: 40px;
    }

    .news-regulations__description br {
        display: none;
    }

    .news-regulations__controls {
        flex-direction: column;
    }

    .news-regulations__item-button {
        padding: 20px;
    }

    .news-regulations__item-content {
        padding: 0 20px 20px;
    }

}