/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
.top-actual-results {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.top-actual-results li {
  flex: 0 0 auto;
  width: 300px; /* 見やすい画像サイズに合わせる */
  border-bottom: none !important;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-actual-results li:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.top-actual-results .wp-block-latest-posts__featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.top-actual-results li:hover .wp-block-latest-posts__featured-image img {
  transform: scale(1.05);
}

.top-actual-results .wp-block-latest-posts__post-title {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.top-actual-results li:hover .wp-block-latest-posts__post-title {
  color: #0073aa; /* ホバー時のアクセントカラー */
}