/* ==========================================================================
   Section 008: Column - コラム
   ========================================================================== */

/* Main section container */
:where(.sec-008-column) {
  padding: var(--section-spacing-large) 0;
  background: var(--wp--preset--color--gray-100);
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
:where(.sec-008-column__bg-decoration) {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

:where(.sec-008-column__bg-decoration--1) {
  top: 20%;
  left: -70px;
  width: 300px;
  height: 300px;
}

:where(.sec-008-column__bg-decoration--1 img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  opacity: 0.06;
  filter: blur(2px);
}

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

/* Grid Layout - Left: Vertical Card, Right: 2 Horizontal Cards */
:where(.sec-008-column__inner) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wp--preset--spacing--40);
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* Side container for horizontal cards */
:where(.sec-008-column__side) {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--lg);
  justify-content: space-between;
}

/* Empty State */
:where(.sec-008-column__empty) {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--wp--preset--spacing--3-xl);
  color: var(--wp--preset--color--text);
  opacity: 0.6;
  font-size: var(--wp--preset--font-size--lg);
}

/* More button section */
:where(.sec-008-column__more) {
  margin-top: var(--wp--preset--spacing--40);
  text-align: center;
}

:where(.sec-008-column__btn) {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--20);
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--50);
  background: linear-gradient(
    135deg,
    var(--wp--preset--color--primary),
    var(--wp--preset--color--primary-600)
  );
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(118, 197, 118, 0.3);
  font-size: var(--wp--preset--font-size--base);
}

:where(.sec-008-column__btn:hover) {
  transform: none !important;
  box-shadow: 0 6px 20px rgba(118, 197, 118, 0.4);
  background: linear-gradient(
    135deg,
    var(--wp--preset--color--primary-600),
    var(--wp--preset--color--primary)
  );
}

:where(.sec-008-column__btn-icon) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

:where(.sec-008-column__btn:hover .sec-008-column__btn-icon) {
  transform: translateX(3px);
}

:where(.sec-008-column__btn-icon .material-symbols-outlined) {
  font-size: 18px;
  color: white;
}
