/* ==========================================================================
   Section 006: Features - 当院の特長
   ========================================================================== */

/* Main section container */
:where(.sec-006-features) {
}

/* Background Decorations - 中央配置・横幅いっぱい */
:where(.sec-006-features__bg-decoration) {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

:where(.sec-006-features__bg-decoration--1) {
  top: 10%;
  width: 100%;
  max-width: 1400px;
  height: 400px;
}

:where(.sec-006-features__bg-decoration--2) {
  bottom: 10%;
  width: 100%;
  max-width: 1600px;
  height: 350px;
}

:where(.sec-006-features__bg-decoration img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.08;
  filter: blur(1px);
  animation: float 20s ease-in-out infinite;
}

/* Container */
:where(.sec-006-features__wrapper) {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--base);
  position: relative;
  z-index: 1;
}

/* Header */
:where(.sec-006-features__header) {
  text-align: center;
  margin-bottom: 60px;
}

/* Title styling */
:where(.sec-006-features__title) {
  font-size: var(--wp--preset--font-size--heading-lg);
  font-weight: 700;
  color: var(--wp--preset--color--primary-900);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

:where(.sec-006-features__title-ja) {
  display: block;
  font-size: 1em;
  letter-spacing: 0.08em;
}

:where(.sec-006-features__title-en) {
  display: block;
  font-size: 0.35em;
  letter-spacing: 0.2em;
  color: var(--wp--preset--color--primary-500);
  opacity: 0.6;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Feature item - Using c-card-003 component */
:where(.sec-006-features__item) {
  /* Styles moved to c-card-003 component */
}

/* Legacy styles - kept for backward compatibility */
/* These will be overridden by c-card-003 component styles */

/* Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}
