.it-news-monthly {
    --it-news-accent: #9b2f2d;
    --it-news-text: #232124;
    --it-news-muted: #e9e7e7;
    --it-news-border: #d9d4d1;
    --it-news-arrow: #6f48b8;
    color: var(--it-news-text);
}

.it-news-monthly__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.it-news-monthly__heading {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 0;
    font-family: "Noto Sans TC", Sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 2.56px;
    color: var(--e-global-color-5b2087d);
}

.it-news-monthly__dot {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--it-news-accent);
}

.it-news-monthly__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.it-news-monthly__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: #fff;
    color: rgba(29, 26, 26, 0.50);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.it-news-monthly__arrow:hover,
.it-news-monthly__arrow:focus-visible {
    color: var(--e-global-color-5b2087d)
}

.it-news-monthly__arrow-icon {
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1.8px solid currentColor;
    border-left: 1.8px solid currentColor;
}

.it-news-monthly__arrow--prev .it-news-monthly__arrow-icon {
    transform: translateX(2px) rotate(-45deg);
}

.it-news-monthly__arrow--next .it-news-monthly__arrow-icon {
    transform: translateX(-2px) rotate(135deg);
}

.it-news-monthly__list {
    width: 100%;
}

.it-news-monthly__item {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 24px;
    border-top: 1px solid rgba(29, 26, 26, 0.25);
}

.it-news-monthly__item:first-child {
    border-top: 0;
}

.it-news-monthly__category {
    border-radius: 12px;
    background: rgba(29, 26, 26, 0.10);
    padding: 4px 16px;
    color: var(--Color-Black-100, #1D1A1A);
    /* Paragraph */
    font-family: "Noto Sans TC";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    /* 200% */
    letter-spacing: 1.44px;
}

.it-news-monthly__category.is-empty {
    visibility: hidden;
}

.it-news-monthly__date {
    color: var(--Color-Black-100, #1D1A1A);
    /* Paragraph */
    font-family: "Noto Sans TC";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 200% */
    letter-spacing: 1.44px;
}

.it-news-monthly__title {
    color: var(--e-global-color-primary);

    /* Paragraph */
    font-family: "Noto Sans TC";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 200% */
    letter-spacing: 1.44px;
    text-decoration: none;
}

.it-news-monthly__title:hover,
.it-news-monthly__title:focus-visible {
    color: #B61E1B;
    text-underline-offset: 3px;
}



@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .it-news-monthly__header {
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .it-news-monthly__heading {
        gap: 12px;
        font-size: 24px;
    }

    .it-news-monthly__item {
        grid-template-columns: auto 1fr;
        gap: 10px 16px;
        padding: 16px 0;
    }

    .it-news-monthly__title {
        grid-column: 1 / -1;
    }

    .it-news-monthly__item {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .it-news-monthly__title {
        width: 100%;
    }
}