/*
Theme Name: Satsuma Theme Stylish
Text Domain: satsuma-theme-stylish
Version: 1.0.0
Description: さとしくんのための、洗練されたブロックテーマ。洗練されたデザインとカードレイアウトを実装。
Tags: block-styles, blog, responsive, elegant
Author: ChatGPT
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  scroll-behavior: smooth;
}
img, svg, video {
  max-width: 100%;
  height: auto;
}
/* Card styling */
.card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background-color: var(--wp--preset--color--background);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
/* Button improvements */
.wp-block-button__link {
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}
/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--wp--preset--color--primary), var(--wp--preset--color--accent));
  color: #fff;
  text-align: center;
  padding: 48px 24px;
  border-radius: 16px;
}
