.StakingInfo__TableCell.-high {
  color: var(--c-up);
  font-weight: bold;
}

.StakingInfo__TableCell.-low {
  color: var(--c-down);
  font-weight: bold;
}

/* 関連ニュースセクションのスタイル */
.RelatedNews__List {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.RelatedNews__ReadMore {
  padding: 0.5rem 0;
  text-align: center;
  background-color: white;
}

.RelatedNews__ReadMoreLink {
  display: block;
  color: #0095aa;
  text-decoration: none;
}

.RelatedNews__ReadMoreLink:hover {
  opacity: 0.8;
}

.RelatedNews__ReadMoreLink .fas {
  margin-left: 0.25rem;
}

/* NewsItem のスタイル */
.NewsItem {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.NewsItem:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.NewsItem__Link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.NewsItem__Content {
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 15px;
}

.NewsItem__Eyecatch {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.NewsItem__Info {
  flex: 1;
  min-width: 0;
}

.NewsItem__Title {
  color: #333;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.NewsItem__Date {
  color: #666;
  font-size: 12px;
  margin: 0;
}

@media (max-width: 767px) {
  .NewsItem__Content {
    padding: 12px;
    gap: 12px;
  }

  .NewsItem__Eyecatch {
    width: 80px;
    height: 60px;
  }

  .NewsItem__Title {
    font-size: 13px;
    line-height: 18px;
  }
}

/* 関連記事セクションのスタイル */
.RelatedPosts__List {
  margin-top: 0;
  margin-bottom: 0;
}

.RelatedPosts__ReadMore {
  padding: 0.5rem 0;
  text-align: center;
  background-color: white;
}

.RelatedPosts__ReadMoreLink {
  display: block;
  color: #0095aa;
  text-decoration: none;
}

.RelatedPosts__ReadMoreLink:hover {
  opacity: 0.8;
}

.RelatedPosts__ReadMoreLink .fas {
  margin-left: 0.25rem;
}

/* PostList のスタイル */
.PostList {
  max-width: 624px;
  margin: 20px 0;
}

.PostList:first-child {
  margin-top: 0;
}

.PostList__Body {
  box-sizing: border-box;
}

.PostList__Grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  max-height: none;
}

@media (max-width: 767px) {
  .PostList {
    margin: 8px 0 0;
    width: auto;
    max-width: none;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
    background: white;
  }

  .PostList:first-child {
    margin-top: 8px;
  }

  .PostList__Body {
    max-width: 372px;
    padding: 15px;
    margin: 0 auto;
  }

  .PostList__Grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 15px;
  }

  .PostItem {
    height: auto;
  }

  .PostItem__Link {
    height: auto;
    min-height: 90px;
  }
}

/* PostItem のスタイル */
.PostItem {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.PostItem__Link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}

.PostItem__Link:hover {
  opacity: 0.8;
}

.PostItem__Eyecatch {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .PostItem__Eyecatch {
    width: 35%;
    height: 90px;
    float: left;
    margin: 0 10px 0 0;
  }
}

.PostItem__Title {
  color: #333;
  font-weight: bold;
  overflow: hidden;
  font-size: 14px;
  line-height: 18px;
  height: 72px;
  margin: 10px 5px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .PostItem__Title {
    float: right;
    width: calc(65% - 10px);
    font-size: 14px;
    line-height: 18px;
    height: 72px;
    margin: 0;
  }
}

.PostItem__Date {
  color: #666;
  height: 18px;
  font-size: 12px;
  text-align: right;
  margin: 0 5px 10px;
}

@media (max-width: 767px) {
  .PostItem__Date {
    float: right;
    text-align: right;
    width: calc(65% - 10px);
    font-size: 12px;
    line-height: 18px;
    margin: 0;
  }
}