@charset "UTF-8";

/* ================================================
   News Page Styles
   ================================================ */

/* News Hero Section */
.news-hero {
    background: linear-gradient(135deg, #063026 0%, #2C7260 100%);
    padding: 164px 0 68px;
    text-align: center;
    color: #fff;
}

.news-hero-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    color: var(--white);
}

.news-hero-lead {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    opacity: 0.9;
}

/* News List Section */
.news-section {
    padding: 80px 0;
    background-color: #F8F9FA;
    min-height: 60vh;
}

.news-list {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    border-top: 0;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 24px 20px;
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 100%);
    background-size: 200% 100%;
    text-decoration: none;
    border-bottom: 1px solid var(--gray-300);
    transition: background-position 0.4s ease, color 0.2s ease, padding-left 0.25s ease;
    color: var(--color-forest-dark);
    position: relative;
}

.news-item:hover {
  background-position: -100% 0;
  color: var(--color-teal);
  padding-left: 28px;
  text-decoration: none;
  background: linear-gradient(120deg, #f5fff0 0%, #ffffff 100%);
}

.news-item .news-title:hover {
  text-decoration: underline;
}

.news-link {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: color 0.2s ease;
}

.news-link:hover {
    color: var(--color-teal, #2C7260);
    text-decoration: none;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    width: 240px; /* 日付とラベルの幅固定 */
}

.news-date {
    font-size: 14px;
    color: #777;
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt";
}

.news-label {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    background-color: #EFEFEF;
    color: #555;
    white-space: nowrap;
}

/* カテゴリごとの色分け例（slugに合わせて調整可能） */
.news-label.cat-release,
.news-label.cat-press {
    background-color: #E5EEE8; /* 薄い緑 */
    color: #2C7260;
}

.news-label.cat-update {
    background-color: #FDF4E6; /* 薄いオレンジ */
    color: #BD8639;
}

.news-label.cat-media {
    background-color: #EBF5FB; /* 薄い青 */
    color: #0056b3;
}

.news-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
    padding-right: 32px;
}

.news-link:hover .news-title {
    color: var(--color-teal, #2C7260);
    text-decoration: underline;
}

/* 矢印アイコン */
.news-arrow {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    opacity: 0.3;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.news-arrow::before,
.news-arrow::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: background-color 0.2s ease;
}

.news-arrow::before {
    width: 12px;
    height: 2px;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
}

.news-arrow::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    top: 50%;
    right: 4px;
    transform: translateY(-50%) rotate(45deg);
    background-color: transparent;
}

.news-link:hover .news-arrow {
    opacity: 1;
    transform: translateX(4px);
}
.news-link:hover .news-arrow::before,
.news-link:hover .news-arrow::after {
    border-color: var(--color-teal, #2C7260);
    background-color: var(--color-teal, #2C7260);
}
.news-link:hover .news-arrow::after {
    background-color: transparent; /* borderのみ色変更 */
}

/* Gutenbergボタンブロック */
.wp-block-button .wp-block-button__link,
.wp-block-button a {
    background: var(--bg-gradient-primary) !important;
    background-color: transparent !important;
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
    padding: 11px 36px 15px;
    opacity: 1 !important;
}

.wp-block-button .wp-block-button__link::before,
.wp-block-button a::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    opacity: 0;
    transition: left .5s ease, opacity .3s ease;
    pointer-events: none;
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-button a:hover {
    background: #103c20 !important;
    background-color: #103c20 !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgb(35 134 72 / 30%);
    text-decoration: none;
    opacity: 1 !important;
    color: var(--white) !important;
}

.wp-block-button .wp-block-button__link:active,
.wp-block-button a:active { 
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(189, 134, 57, .3);
}

.wp-block-button .wp-block-button__link:hover::before,
.wp-block-button a:hover::before {
    opacity: 1;
    left: 100%;
}

/* Pagination Styles */
.news-pagination {
    margin-top: 40px;
    text-align: center;
}

.news-pagination ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 8px;
}

.news-pagination li {
    margin: 0;
}

.news-pagination a,
.news-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.news-pagination a {
    color: #333;
    background-color: #fff;
    border-color: #e0e0e0;
}

.news-pagination a:hover {
    background-color: var(--color-teal, #2C7260);
    color: #fff;
    border-color: var(--color-teal, #2C7260);
}

.news-pagination span.current {
    background-color: var(--color-teal, #2C7260);
    color: #fff;
    border-color: var(--color-teal, #2C7260);
    font-weight: 700;
}

.news-pagination .dots {
    background: transparent;
    border: none;
    color: #777;
}

/* Utilities */
.sp-only { display: none; }
.pc-only { display: inline; }

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .sp-only { display: inline; }
    .pc-only { display: none; }

    .news-hero {
        padding: 143px 20px 30px;
    }

    .news-hero-lead {
        font-size: 12px;
    }

    .news-hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .news-section {
        padding: 40px 0;
    }

    .news-link {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .news-meta {
        width: 100%;
        margin-bottom: 12px;
        gap: 12px;
    }

    .news-date {
        font-size: 13px;
    }
    
    .news-title {
        font-size: 15px;
        padding-right: 0;
        width: 100%;
    }

    .news-arrow {
        display: none; /* スマホでは矢印非表示でシンプルに */
    }
}

/* ================================================
   News Single Page Styles
   記事詳細ページ専用スタイル
   ================================================ */

/* ===== News Hero Single ===== */
.news-hero--single {
    background: linear-gradient(135deg, #063026 0%, #2C7260 100%);
    padding: 100px 0 40px;
    text-align: center;
    color: #fff;
}

/* パンくずリスト */
.news-hero-breadcrumb {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.news-hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.news-hero-breadcrumb a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 12px;
    opacity: 0.6;
}

.breadcrumb-current {
    opacity: 0.8;
}

/* ===== News Section Single ===== */
.news-section--single {
    padding: 60px 0 80px;
    background-color: #F8F9FA;
}

/* ===== News Article ===== */
.news-article {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto 40px;
}

/* 記事ヘッダー */
.news-article-header {
    padding: 40px 48px 32px;
    border-bottom: 1px solid #eee;
}

.news-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 32px;
}

.news-article-meta .section-title {
    margin: 0 0 24px 0;
    text-align: center;
    word-wrap: break-word;
}

.news-article-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px 24px ;
    padding-top: 8px;
}

.news-article-meta-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    right: 0;
    flex-shrink: 0; /* 縮小を防ぐ */
}

.news-article-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* カテゴリラベル（アーカイブページと共通） */
.news-label {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    background-color: #EFEFEF;
    color: #555;
    white-space: nowrap;
}

.news-label.cat-release,
.news-label.cat-press {
    background-color: #E5EEE8;
    color: #2C7260;
}

.news-label.cat-update {
    background-color: #FDF4E6;
    color: #BD8639;
}

.news-label.cat-media {
    background-color: #EBF5FB;
    color: #0056b3;
}

.news-article-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* アイキャッチ画像 */
.news-article-thumbnail {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.news-article-image {
    width: 100%;
    height: auto;
    display: block;
}

/* 記事本文 */
.news-article-content {
    padding: 40px 48px 0;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    display: flow-root;
}

.news-article-content p {
    margin-bottom: 1.5em;
}

.news-article-content p:last-child {
    margin-bottom: 0;
}

.news-article-content h2.section-title {
	background: none;
	border: none;
	color: #6cb4e4;
    display: flex;
	padding: 0;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--color-forest-dark);
    font-weight: 700;
}
.news-article-content h2.section-title::after {
	content: "";
    position: sticky;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    background: none;
}
.news-article-content h1 {
	position: relative;
	font-size: 28px;
	text-align: center;
	border-bottom: 5px solid #dddddd;
    margin-bottom: 18px;
    padding-bottom: 8px;
    color: var(--color-forest-dark);
}

.news-article-content h1::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 5px;
	background-color: var(--color-teal);
}

.news-article-content h2 {
  font-size: 24px;
  padding: 8px 16px;
  position: relative;
  border-bottom: 2px solid #a3a3a3;
  color: var(--color-forest-dark);
}

.news-article-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 10%;
  height: 2px;
  background-color: #2b7260;
}

.news-article-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 1.8em 0 0.8em;
    padding: 0.4em 0.5em;
    background: var(--gray-200);
    border-left: solid 5px var(--color-teal);/*左線*/
    border-bottom: solid 3px var(--gray-500);/*下線*/
    color: var(--color-forest-dark);
}

.news-article-content h4 {
  font-size: 14px;
  padding: 4px 16px 4px 12px;
  position: relative;
  color: var(--color-forest-dark);
  border-left: 4px solid #bfe8cb;
  margin: 1.8em 0 0.8em;
}

.news-article-content h4::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 50%;
  background-color: #2b7260;
}

.news-article-content h5 {
  padding: 3px 8px;
  border-left: 6px double #2b7260;
  margin: 1.8em 0 0.8em;
  font-size: 12px;
  color: var(--color-forest-dark);
}

.news-article-content h6 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  color: var(--color-forest-dark);
}
.news-article-content h6:before, 
.news-article-content h6:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px #2b7260;
  border-bottom: solid 1px #2b7260;
}
.news-article-content h6:before {
  left:0;
}
.news-article-content h6:after {
  right: 0;
}

.news-article-content ul,
.news-article-content ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.news-article-content li {
    margin-bottom: 0.5em;
}

.news-article-content a {
    color: var(--color-teal, #2C7260);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.news-article-content a:hover {
    opacity: 0.7;
}

.news-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}

.news-article-content blockquote {
    margin: 1.5em 0;
    padding: 20px 24px;
    background-color: #F8F9FA;
    border-left: 4px solid var(--color-teal, #2C7260);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.news-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.news-article-content th,
.news-article-content td {
    padding: 12px 16px;
    border: 1px solid #ddd;
    text-align: left;
}

.news-article-content th {
    background-color: #F8F9FA;
    font-weight: 700;
}

/* 画像共通：すべてブロック要素として独立させる */
.news-article-content img.aligncenter,
.news-article-content img.alignleft,
.news-article-content img.alignright {
    display: block;
    float: none;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

/* 中央寄せ */
.news-article-content img.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

/* 左寄せ */
.news-article-content img.alignleft {
    margin-left: 0;
    margin-right: auto;
}

/* 右寄せ */
.news-article-content img.alignright {
    margin-left: auto;
    margin-right: 0;
}

/* キャプション付き画像 */
.news-article-content .wp-caption {
    display: block;
    float: none;
    max-width: 100%;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.news-article-content .wp-caption.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.news-article-content .wp-caption.alignleft {
    margin-left: 0;
    margin-right: auto;
}

.news-article-content .wp-caption.alignright {
    margin-left: auto;
    margin-right: 0;
}

.news-article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-tag {
    display: inline-block;
    padding: 6px 14px 8px;
    font-size: 12px;
    font-weight: 500;
    background-color: #F8F9FA;
    color: #666;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

/* 記事フッター */
.news-article-footer {
    padding: 24px 48px 26px;
    border-top: 1px solid #eee;
}

/* SNSシェアボタン */
.news-share {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-share-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.news-share-buttons {
    display: flex;
    gap: 12px;
}

.news-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.news-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.news-share-btn--x {
    background-color: #000;
}

.news-share-btn--facebook {
    background-color: #1877F2;
}

.news-share-btn--line {
    background-color: #00B900;
}

.container-main {
    width: 1000px;
    margin: 0 auto;
}

.no-posts-message {
    text-align: center;
    margin-bottom: 80px;
}

/* ===== 前後記事ナビゲーション ===== */
.news-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.news-nav-item {
    flex: 1;
    max-width: 48%;
}

.news-nav-prev {
    text-align: left;
}

.news-nav-next {
    text-align: right;
    margin-left: auto;
}

.news-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-nav-link:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.news-nav-next .news-nav-link {
    justify-content: flex-end;
}

.news-nav-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.news-nav-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-teal, #2C7260);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-nav-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-nav-link:hover .news-nav-title {
    color: var(--color-teal, #2C7260);
}

/* 矢印アイコン */
.news-nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F8F9FA;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.news-nav-link:hover .news-nav-arrow {
    background-color: var(--color-teal, #2C7260);
}

.news-nav-arrow::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    top: 50%;
    transition: border-color 0.2s ease;
}

.news-nav-link:hover .news-nav-arrow::before {
    border-color: #fff;
}

.news-nav-arrow--prev::before {
    left: 55%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.news-nav-arrow--next::before {
    left: 45%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ===== 一覧に戻るボタン ===== */
.news-back-to-list {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.news-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--color-forest-dark, #063026);
    border-radius: 8px;
    background: #fff;
    color: var(--color-normal, #333);
    text-decoration: none;
    transition: all 0.2s ease;
}

.news-back-btn:hover {
    background: var(--color-teal, #2C7260);
    border-color: var(--color-teal, #2C7260);
    color: #fff;
}

.news-back-icon {
    width: 16px;
    height: 16px;
    position: relative;
}

.news-back-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%) rotate(-45deg);
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 768px) {
    .news-hero--single {
        padding: 80px 20px 30px;
    }

    .news-hero-breadcrumb {
        font-size: 13px;
    }

    .breadcrumb-separator {
        margin: 0 8px;
    }

    .news-section {
        min-height: 40vh;
    }

    .news-section--single {
        padding: 0 0 60px;
    }

    .news-article {
        margin: 0 auto 30px;
        border-radius: 0;
    }

    .news-article-header {
        padding: 24px 20px 20px;
    }

    .news-article-date {
        font-size: 14px;
    }

    .news-article-title {
        font-size: 20px;
        line-height: 1.6;
    }

    .news-article-content {
        padding: 24px 20px;
        font-size: 15px;
        line-height: 1.85;
    }

    .news-article-content h2 {
        font-size: 18px;
    }

    .news-article-content h3 {
        font-size: 16px;
    }

    .news-article-content blockquote {
        padding: 16px 20px;
    }

    .news-article-tags {
        margin-left: 0;
    }

    .news-article-footer {
        padding: 20px;
    }

    .news-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* 前後記事ナビゲーション */
    .news-navigation {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }

    .news-nav-item {
        max-width: 100%;
    }

    .news-nav-link {
        padding: 16px 20px;
        gap: 12px;
    }

    .news-nav-next .news-nav-link {
        flex-direction: row-reverse;
        justify-content: flex-start;
    }

    .news-nav-next .news-nav-content {
        text-align: left;
    }

    .news-nav-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-nav-arrow {
        width: 28px;
        height: 28px;
    }

    .news-nav-arrow::before {
        width: 6px;
        height: 6px;
    }

    /* 一覧に戻るボタン */
    .news-back-to-list {
        padding: 0;
        margin: 0 24px;
    }

    .news-back-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* ===== Utilities ===== */
.sp-only { display: none; }
.pc-only { display: inline; }

@media screen and (max-width: 768px) {
    .sp-only { display: inline; }
    .pc-only { display: none; }
}

/* 記事本文内のメタ情報 */
.news-article-content .news-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.news-article-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
}

.news-meta-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.news-article-content .news-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    background-color: #EFEFEF;
    color: #555;
    white-space: nowrap;
}

/* カテゴリ別カラー */
.news-label.cat-release,
.news-label.cat-press {
    background-color: #E5EEE8;
    color: #2C7260;
}

.news-label.cat-update {
    background-color: #FDF4E6;
    color: #BD8639;
}

.news-label.cat-media {
    background-color: #EBF5FB;
    color: #0056b3;
}

/* SP対応 */
@media screen and (max-width: 768px) {
    .container-main {
        width: auto;
        padding: 0 24px;
    }

    .btn.btn-secondary {
        width: 100%;
    }

    .news-article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-article-content .news-article-meta {
        gap: 0px;
        margin-bottom: 20px;
        padding-bottom: 4px;
    }

    .news-article-meta .section-title {
        text-align: left;
        margin-bottom: 16px;
        max-width: 100%;
    }

     .news-article-meta-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .news-article-meta-right {
        position: static;
        flex-wrap: wrap;
    }

    .news-article-date {
        font-size: 14px;
    }

    .news-meta-icon {
        width: 14px;
        height: 14px;
    }
    .news-article-thumbnail {
        margin: 18px 18px 0;
        padding: 0;
        line-height: 0;
    }
    .no-posts-message {
        margin-bottom: 24px;
    }
    .news-back-icon {
        width: 10px;
        height: 10px;
        display: inline-block;
    }
    .news-list {
        margin-bottom: 40px;
    }
}