.yk-section--latest {
  margin-top: 32px;
  margin-bottom: 64px;
}
.yk-section--latest .yk-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.yk-section--latest .yk-section__title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  color: #111;
  letter-spacing: 0.5px;
}
.yk-section--latest .yk-section__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #f15350;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.yk-section--latest .yk-section__action:hover {
  border-color: currentColor;
}
.yk-section--latest .yk-section__action-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: currentColor;
  mask-image: url('../assets/yokara/double_next_arrow.svg');
  mask-size: 16px;
  mask-repeat: no-repeat;
  mask-position: center;
}
.yk-section--latest .yk-grid {
  display: grid;
  gap: 28px;
}
.yk-section--latest .yk-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.yk-section--latest .yk-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.yk-section--latest .yk-card__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.yk-section--latest .yk-card__body {
  padding: 18px 20px 20px;
}
.yk-section--latest .yk-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.yk-section--latest .yk-card__title a {
  color: #222;
}
.yk-section--latest .yk-card__excerpt {
  font-size: 15px;
  color: #6b6b6b;
  margin: 0 0 12px;
  line-height: 1.6;
}
.yk-section--latest .yk-card__meta {
  font-size: 14px;
  color: #8a8a8a;
  margin: 0;
}
@media (max-width: 767px) {
  .yk-section--latest .yk-section__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .yk-section--latest .yk-grid--3 {
    grid-template-columns: 1fr;
  }
  .yk-section--latest .yk-card__thumb img {
    height: 180px;
  }
}
