/** Shopify CDN: Minification failed

Line 236:0 Unexpected "}"

**/
/* ファイル名: section-featured-blog.css */
/* ブログ記事セクション - 統一仕様対応スタイル */

/* ===== CSS変数定義（他セクションと統一） ===== */
:root {
  --blog-accent-gold: #c7a96b;
  --blog-text-dark: #333333;
  --blog-text-light: #666666;
  --blog-white: #ffffff;
  --blog-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 既存スタイル（変更なし） ===== */
.blog-placeholder-svg {
  height: 100%;
}

@media screen and (min-width: 990px) {
  .grid--1-col-desktop .article-card .card__content {
    text-align: center;
  }
}

.blog__title {
  margin: 0;
}

.blog__posts.articles-wrapper {
  margin-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .blog__posts.articles-wrapper {
    margin-bottom: 0;
  }
}

.blog__posts.articles-wrapper .article {
  scroll-snap-align: start;
}

@media screen and (max-width: 749px) {
  .blog__post.article {
    width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
  }
}

.background-secondary .blog-placeholder__content {
  background-color: rgb(var(--color-background));
}

.blog__posts .card-wrapper {
  width: 100%;
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  @media screen and (min-width: 750px) {
    .blog__posts .article + .article {
      margin-left: var(--grid-desktop-horizontal-spacing);
    }
  }
}

/* ===== カスタム記事カードスタイル ===== */
.custom-article-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--blog-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.custom-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.custom-article-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.custom-article-link:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

.custom-article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8f8f8;
}

.custom-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.custom-article-card:hover .custom-article-image img {
  transform: scale(1.05);
}

.custom-article-info {
  padding: 20px;
    background: white;
}

.custom-article-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--blog-text-dark);
  margin: 0 0 12px 0;
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', 'YuGothic', 'Meiryo', 'メイリオ', sans-serif;
}

.custom-article-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--blog-text-light);
  margin: 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.custom-article-date {
  font-size: 12px;
  color: var(--blog-accent-gold);
  font-weight: 500;
  display: block;
  margin-top: 12px;
}

/* ===== 新規追加：統一ボタンスタイル（レコメンドセクションと同一） ===== */
/* ボタン関連のスタイルは recommend-products.css と同一にする */

/* 既存ボタンスタイルの無効化 */
.blog__button {
  display: none !important;
}

/* ===== レスポンシブ対応（カスタム記事カード含む） ===== */

/* タブレット (768px以下) */
@media (max-width: 768px) {
  .custom-article-image {
    height: 160px;
  }
  
  .custom-article-info {
    padding: 16px;
  }
  
  .custom-article-title {
    font-size: 15px;
  }
  
  .custom-article-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
  
  .custom-article-date {
    font-size: 11px;
  }
}

/* モバイル (480px以下) */
@media (max-width: 480px) {
  .custom-article-image {
    height: 140px;
  }
  
  .custom-article-info {
    padding: 14px;
  }
  
  .custom-article-title {
    font-size: 14px;
    margin: 0 0 8px 0;
  }
  
  .custom-article-excerpt {
    font-size: 12px;
    margin: 8px 0;
  }
  
  .custom-article-date {
    font-size: 10px;
    margin-top: 8px;
  }
}

/* ===== アクセシビリティ対応 ===== */

/* 動画酔い軽減 */
@media (prefers-reduced-motion: reduce) {
  .custom-article-card {
    transition: box-shadow 0.2s ease;
  }
  
  .custom-article-card:hover {
    transform: none;
  }
  
  .custom-article-image img {
    transition: none;
  }
  
  .custom-article-card:hover .custom-article-image img {
    transform: none;
  }
}

/* ハイコントラストモード */
@media (prefers-contrast: high) {
  .custom-article-card {
    border: 2px solid var(--blog-text-dark);
  }
}

}