.news_item {
    border-top: 1px solid var(--color-pink-shadow);
}
.item_anchor {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1.25rem;
    gap: 0.175rem;
}
.item_anchor:hover {
    opacity: 60%;
}
.item_date {
    font-size: 1rem;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.item_titleWrapper {
    display: flex;
    gap: 0.325rem;
    justify-content: flex-start;
    align-items: center;
}
.item_badge {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: var(--color-pink);
    border-radius: 0.25rem;
    padding: 0 0.45rem;
    font-size: 0.75rem;
    height: 1rem;
    @media screen and (max-width: 1023px) {
        font-size: 0.5rem;
        height: 0.875rem;
    }
}
.item_title {
    font-size: 1.25rem;
    @media screen and (max-width: 1023px) {
        font-size: 1rem;
    }
}
.item_text {
    font-size: 1rem;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.item_edit {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--color-pink-shadow);
    border-bottom: 1px solid var(--color-pink-shadow);
}
.item_content {
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}
.item_content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.item_buttonWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 0;
    border-top: 1px solid var(--color-pink-shadow);
}
.item_linkGroup {
    width: 100%;
    display: flex;
    align-items: center;
}
.item_link {
    font-size: 1rem;
    color: var(--color-black);
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
}
.-prev_archive {
    justify-content: flex-start;
}
.-next_archive {
    justify-content: flex-end;
}
.item_link.-prev_archive::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.875rem;
    display: inline-block;
    transform: translateY(1px);
    background: url(../../img/common/icon_arrow2.svg) no-repeat center / contain;
    @media screen and (max-width: 1023px) {
        margin-right: 0.5rem;
    }
}

.item_link.-next_archive::after {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 0.875rem;
    display: inline-block;
    transform: translateY(1px);
    background: url(../../img/common/icon_arrow3.svg) no-repeat center / contain;
    @media screen and (max-width: 1023px) {
        margin-left: 0.5rem;
    }
}
.button_shadow_filled{
    @media screen and (min-width: 1024px) {
        font-size: 1rem !important;
    }
}