/* =========================================
   ② お知らせページ：CSS（例：assets/css/page-news.css などに）
   既存トンマナ（角丸・余白・太字・品の良い線）を踏襲しつつ、
   スクショの「横3カラム + ページネーション」を再現
========================================= */

.tm-newsHero {
    padding: clamp(36px, 7vw, 84px) 0 18px;
}

.tm-newsHero__container {
    width: min(100%, 1200px);
    padding: 0 var(--gutter);
    align-items: stretch;
}

.tm-newsHero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    align-items: center;
}

.tm-newsHero__title {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: 0.03em;
    color: var(--text-color);
}

.tm-newsHero__lead {
    margin: 14px 0 0;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: rgba(11, 31, 42, 0.72);
}

.tm-newsHero__media {
    display: flex;
    justify-content: flex-end;
}

.tm-newsHero__circle {
    width: min(420px, 42vw);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    background:
        radial-gradient(closest-side, rgba(92, 193, 181, 0.25), rgba(92, 193, 181, 0.06) 60%, rgba(92, 193, 181, 0) 100%);
    border: 1px solid rgba(11, 31, 42, 0.12);
}

.tm-newsArchive {
    padding: 22px 0 clamp(56px, 8vw, 90px);
}

.tm-newsArchive__container {
    width: min(100%, 1200px);
    padding: 0 var(--gutter);
    align-items: stretch;
}

.tm-newsArchive__panel {
    border-radius: var(--radius-xxl);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 31, 42, 0.10);
    box-shadow: var(--shadow-1);
    overflow: hidden;
}

.tm-newsArchive__list {
    padding: 22px 26px;
}

.tm-newsRow {
    display: grid;
    grid-template-columns: 140px 180px 1fr;
    gap: 18px;
    align-items: center;
    padding: 26px 0;
    border-top: 1px dashed rgba(11, 31, 42, 0.18);
}

.tm-newsRow:first-child {
    border-top: none;
}

.tm-newsRow__date {
    font-weight: 900;
    letter-spacing: 0.02em;
    color: rgba(11, 31, 42, 0.88);
    white-space: nowrap;
}

.tm-newsRow__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--main-color);
    background: rgba(11, 111, 134, 0.06);
    border: 1px solid rgba(11, 111, 134, 0.40);
    white-space: nowrap;
}

.tm-newsRow__title {
    margin: 0;
    min-width: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    font-weight: 900;
    color: var(--text-color);
}

.tm-newsRow__link {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tm-newsRow__link:hover {
    text-decoration: underline;
}

/* pagination (paginate_links: type=list の <ul class="page-numbers"> を整形) */
.tm-pagination {
    padding: 18px 18px 26px;
    display: flex;
    justify-content: center;
}

.tm-pagination ul.page-numbers {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.tm-pagination li {
    display: flex;
}

.tm-pagination a.page-numbers,
.tm-pagination span.page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(11, 31, 42, 0.10);
    background: rgba(255, 255, 255, 0.96);
    color: rgba(11, 31, 42, 0.90);
    font-weight: 900;
    text-decoration: none;
}

.tm-pagination span.page-numbers.current {
    background: rgba(11, 111, 134, 0.10);
    border-color: rgba(11, 111, 134, 0.24);
    color: rgba(11, 111, 134, 1);
}

.tm-pagination a.page-numbers:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(11, 31, 42, 0.08);
}

.tm-newsEmpty--light {
    color: rgba(11, 31, 42, 0.78);
    font-weight: 900;
    padding: 18px 0 0;
}

@media (max-width: 1080px) {
    .tm-newsHero__grid {
        grid-template-columns: 1fr;
    }

    .tm-newsHero__media {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .tm-newsArchive__panel {
        border-radius: var(--radius-xl);
    }

    .tm-newsArchive__list {
        padding: 18px 18px;
    }

    .tm-newsRow {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0;
    }

    .tm-newsRow__tag {
        width: 150px;
        max-width: 100%;
    }
}