.bwh-notice-list {
    margin: 0;
    padding: 0;
}

.bwh-notice-dropdown {
    margin: 0;
    border-bottom: 1px solid rgba(28, 39, 43, 0.14);
    color: inherit;
}

.bwh-notice-dropdown:last-child {
    border-bottom: 0;
}

.bwh-notice-dropdown__summary {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 4px 0;
    color: inherit;
    cursor: pointer;
    list-style: none;
}

.bwh-notice-dropdown__summary::-webkit-details-marker {
    display: none;
}

.bwh-notice-dropdown__summary::marker {
    content: "";
}

.bwh-notice-dropdown__pin {
    flex: 0 0 auto;
    font-size: 13px;
    line-height: 1;
}

.bwh-notice-dropdown__heading {
    display: flex;
    flex: 1;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}

.bwh-notice-dropdown__name {
    font-weight: 600;
}

.bwh-notice-dropdown__hint {
    color: rgba(28, 39, 43, 0.65);
    font-size: 11px;
}

.bwh-notice-dropdown__chevron {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin: -3px 4px 0 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.bwh-notice-dropdown[open]
.bwh-notice-dropdown__chevron {
    margin-top: 3px;
    transform: rotate(225deg);
}

.bwh-notice-dropdown__body {
    padding: 0 20px 8px 21px;
    animation: bwh-notice-open 180ms ease;
}

@keyframes bwh-notice-open {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bwh-notice-row {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
    font-size: 13px;
}

.bwh-notice-row + .bwh-notice-row {
    border-top: 1px solid rgba(28, 39, 43, 0.08);
}

.bwh-notice-row__label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-weight: 500;
}

.bwh-notice-row__time {
    white-space: nowrap;
}

.bwh-notice-row__date {
    color: rgba(28, 39, 43, 0.7);
    font-size: 12px;
}

.bwh-notice-row.is-highlighted {
    padding-left: 8px;
    border-left: 2px solid #e83e78;
}

.bwh-notice-row.is-closed .bwh-notice-row__time {
    color: rgba(28, 39, 43, 0.6);
}

@media (max-width: 600px) {
    .bwh-notice-dropdown__hint {
        display: none;
    }

    .bwh-notice-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .bwh-notice-row__time {
        white-space: normal;
    }
}
