/*
Theme Name: Arimoto Sports
Theme URI: https://arimoto-sports.com
Author: FEAT.
Author URI: https://feat-web.com
Description: アリモトスポーツ公式サイト用カスタムテーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arimoto
*/

/* ─── CSS Variables ─── */
:root {
  --navy:    #0d2044;
  --blue:    #1a4faa;
  --blue2:   #2563cc;
  --yellow:  #ffe600;
  --yellow2: #ffd000;
  --white:   #ffffff;
  --offwhite:#fffef0;
  --gray:    #f2f4f8;
  --text:    #1a1f2e;
  --muted:   #6b7280;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─── HEADER ─── */
.header {
  background: var(--navy);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none; flex-shrink: 0;
}

.logo-badge {
  background: var(--yellow);
  padding: 7px 16px 7px 12px;
  border-radius: 7px;
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1; gap: 2px;
  box-shadow: 0 2px 8px rgba(255,230,0,0.35);
}
.logo-badge .l1 {
  font-size: 26px; font-weight: 900; color: var(--blue);
  letter-spacing: -0.5px;
}
.logo-badge .l2 {
  font-size: 13px; font-weight: 900; color: var(--navy); letter-spacing: 2px;
}
.logo-since {
  font-size: 9px; color: rgba(0,0,0,0.55); font-weight: 700; letter-spacing: 1px;
}

.logo-tagline {
  margin-left: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 11px; line-height: 1.6;
}
.logo-tagline strong { display: block; color: rgba(255,255,255,0.9); font-size: 13px; }

/* ── Desktop nav ── */
.main-nav {
  display: flex; gap: 2px; align-items: center;
}
.main-nav a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; font-weight: 700;
  padding: 9px 12px; border-radius: 5px; transition: all .18s; white-space: nowrap;
  letter-spacing: 0.3px;
}
.main-nav a:hover { background: rgba(255,255,255,0.1); color: white; }
.main-nav a.current-menu-item > a,
.main-nav .current-menu-item > a { color: var(--yellow); }

.nav-price {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  padding: 9px 18px !important; border-radius: 20px !important;
  margin-left: 8px; font-size: 13px !important;
  box-shadow: 0 2px 8px rgba(255,230,0,0.3);
}
.nav-price:hover { background: var(--yellow2) !important; transform: translateY(-1px); }

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  background: rgba(255,255,255,0.08); border: none; border-radius: 8px;
  padding: 0; transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,0.15); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--navy); z-index: 190;
  border-top: 2px solid var(--yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  flex-direction: column; padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: all .15s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: white; }
.mobile-nav .m-price {
  color: var(--yellow); border-bottom: none; font-size: 16px;
  margin: 8px 16px 4px; background: rgba(255,230,0,0.1);
  border-radius: 8px; text-align: center;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .logo-tagline { display: none; }
}

/* ─── HERO SLIDESHOW ─── */
.hero {
  position: relative; overflow: hidden;
  height: 520px;
}

.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity .8s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }

.slide-1 {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3570 55%, var(--blue2) 100%);
}
.slide-1::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .12;
}

.slide-2 {
  background: linear-gradient(135deg, #3a0a08 0%, #7a1810 100%);
}
.slide-2::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,230,0,0.12) 0%, transparent 60%);
}

.slide-3 {
  background: linear-gradient(135deg, #1a0a00 0%, #6a3000 100%);
}
.slide-3::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,160,0,0.15) 0%, transparent 60%);
}

.slide-4 {
  background: linear-gradient(135deg, #001a28 0%, #004060 100%);
}

.slide-content {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: center; position: relative; z-index: 1; width: 100%;
}

.slide-text { padding-right: 32px; }

.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow);
  color: var(--navy); font-size: 10px; font-weight: 900;
  letter-spacing: 2px; padding: 4px 12px; border-radius: 4px;
  margin-bottom: 18px; text-transform: uppercase;
}

.slide h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; color: white; line-height: 1.5; margin-bottom: 16px;
}
.slide h2 em {
  font-style: normal; color: var(--yellow);
}

.slide-sub {
  color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.9; margin-bottom: 28px;
}

.slide-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-yellow {
  background: var(--yellow); color: var(--navy);
  font-weight: 900; font-size: 13px; padding: 11px 22px;
  border-radius: 6px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all .2s; box-shadow: 0 3px 12px rgba(255,230,0,0.35);
}
.btn-yellow:hover { background: var(--yellow2); transform: translateY(-2px); }

.btn-white-outline {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.4);
  color: white; font-weight: 700; font-size: 13px; padding: 11px 22px;
  border-radius: 6px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px; transition: all .2s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }

.slide-visual {
  display: flex; align-items: center; justify-content: center;
  height: 320px; font-size: 120px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.slide-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer; transition: all .2s;
  border: none;
}
.dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }

.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: white; width: 40px; height: 40px; border-radius: 50%;
  font-size: 18px; cursor: pointer; z-index: 10; transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.slide-arrow:hover { background: rgba(255,255,255,0.25); }
.slide-prev { left: 16px; }
.slide-next { right: 16px; }

@media (max-width: 768px) {
  .hero { height: 420px; }
  .slide-content { grid-template-columns: 1fr; padding: 0 24px; }
  .slide-visual { display: none; }
  .slide-text { padding-right: 0; }
}

/* ─── STORE INFO BAR ─── */
.store-bar {
  background: var(--yellow);
  padding: 0 32px;
}
.store-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: stretch; gap: 0;
  flex-wrap: wrap;
}
.store-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-right: 1px solid rgba(0,0,0,0.1);
  font-size: 13px; color: var(--navy);
}
.store-item:first-child { padding-left: 0; }
.store-item:last-child  { border-right: none; }
.store-icon { font-size: 18px; }
.store-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: rgba(0,0,0,0.5); display: block; }
.store-val   { font-size: 14px; font-weight: 900; color: var(--navy); }
.store-closed { color: #cc0000; }

.store-cta {
  margin-left: auto; display: flex; align-items: center;
  padding: 12px 0;
}
.store-cta a {
  background: var(--navy); color: var(--yellow);
  font-size: 12px; font-weight: 900;
  padding: 8px 18px; border-radius: 20px;
  text-decoration: none; transition: background .2s;
}
.store-cta a:hover { background: var(--blue); }

@media (max-width: 768px) {
  .store-bar-inner { flex-direction: column; }
  .store-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 10px 0; }
  .store-cta { margin-left: 0; justify-content: center; }
}

/* ─── TICKER ─── */
.ticker {
  background: var(--navy); padding: 8px 0; overflow: hidden;
}
.ticker-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 16px;
}
.ticker-label {
  background: var(--yellow); color: var(--navy);
  font-size: 10px; font-weight: 900; letter-spacing: 1px;
  padding: 2px 10px; border-radius: 3px; white-space: nowrap;
}
.ticker-text {
  color: rgba(255,255,255,0.8); font-size: 12px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}

/* ─── SECTION ─── */
.section { padding: 64px 32px; }
.section.bg-gray { background: var(--gray); }
.section.bg-off  { background: var(--offwhite); }
.section.bg-navy { background: var(--navy); }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-head { margin-bottom: 36px; }
.section-label {
  font-size: 10px; font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1.4;
}
.section-title span { color: var(--blue); }
.section-title-row {
  display: flex; align-items: flex-end; justify-content: space-between;
}
.see-all {
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-decoration: none; white-space: nowrap;
}
.see-all:hover { color: #e8650a; }

/* ─── SPORT GRID ─── */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.sport-card {
  background: white; border-radius: 14px;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(13,32,68,0.07);
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all .25s; position: relative;
}
.sport-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 14px; border: 2px solid var(--yellow);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.sport-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,32,68,0.14); }
.sport-card:hover::after { opacity: 1; }

.sport-body { padding: 22px 22px 24px; }

.sport-icon {
  font-size: 40px; display: block; margin-bottom: 10px;
  transition: transform .25s;
}
.sport-card:hover .sport-icon { transform: scale(1.12) rotate(-4deg); }

.sport-card h3 { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.sport-card p  { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }

.sport-links { display: flex; flex-direction: column; gap: 4px; }
.sport-link {
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-decoration: none; padding: 5px 0;
  border-bottom: 1px solid var(--gray);
  display: flex; align-items: center; gap: 4px;
  transition: all .15s;
}
.sport-link:last-child { border-bottom: none; }
.sport-link:hover { color: #e8650a; padding-left: 4px; }
.sport-link.price {
  color: var(--navy); font-weight: 900;
  background: #fffde7; margin: 4px -4px 0; padding: 6px 8px;
  border-radius: 6px; border: none;
}
.sport-link.price:hover { background: var(--yellow); padding-left: 8px; }

@media (max-width: 800px) { .sport-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .sport-grid { grid-template-columns: 1fr; } }

/* ─── PUSH SERVICES ─── */
.push-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.push-card {
  border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 220px; text-decoration: none; color: inherit;
  box-shadow: 0 4px 18px rgba(13,32,68,0.1);
  transition: all .22s;
}
.push-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(13,32,68,0.16); }

.push-visual {
  display: flex; align-items: center; justify-content: center; font-size: 72px;
}
.push-emb .push-visual { background: linear-gradient(135deg,#ffe8e8,#ffbfbf); }
.push-las .push-visual { background: linear-gradient(135deg,#fff8d9,#ffe580); }

.push-content { padding: 24px 22px; display: flex; flex-direction: column; justify-content: space-between; }
.push-emb .push-content { background: linear-gradient(135deg,#aa1a10,#cc2a18); color: white; }
.push-las .push-content { background: linear-gradient(135deg,#7a3a00,#b85a00); color: white; }

.push-tag {
  display: inline-block;
  background: rgba(255,230,0,0.25); border: 1px solid rgba(255,230,0,0.5);
  color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: 2px;
  padding: 3px 10px; border-radius: 3px; margin-bottom: 10px;
}
.push-card h3 { font-size: 16px; font-weight: 900; line-height: 1.4; margin-bottom: 8px; }
.push-card p  { font-size: 12px; opacity: .78; line-height: 1.7; margin-bottom: 14px; }
.push-price   { font-size: 13px; font-weight: 700; color: var(--yellow); margin-bottom: 12px; }
.push-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,230,0,0.2); border: 1px solid rgba(255,230,0,0.4);
  color: var(--yellow); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px; transition: background .15s;
}
.push-btn:hover { background: rgba(255,230,0,0.35); }

@media (max-width: 768px) {
  .push-grid { grid-template-columns: 1fr; }
  .push-card { grid-template-columns: 1fr; }
  .push-visual { height: 150px; }
}

/* ─── PRICE ─── */
.price-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.ptab {
  padding: 7px 18px; border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.6);
  font-size: 12px; font-weight: 700; cursor: pointer;
  transition: all .18s; font-family: 'Noto Sans JP', sans-serif;
}
.ptab:hover { border-color: rgba(255,255,255,0.5); color: white; }
.ptab.active { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }

.price-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; overflow: hidden;
}
.price-box table { width: 100%; border-collapse: collapse; }
.price-box thead th {
  background: rgba(255,255,255,0.07); padding: 12px 18px;
  text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.price-box tbody td {
  padding: 13px 18px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.82);
}
.price-box tbody tr:hover td { background: rgba(255,255,255,0.03); }
.pv { font-weight: 900; color: var(--yellow); font-size: 15px; }
.pn { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ─── FLOW ─── */
.flow-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative;
}
.flow-grid::before {
  content: ''; position: absolute; top: 34px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--yellow));
}
.flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.flow-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue2));
  color: var(--yellow); font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(26,79,170,0.35); margin-bottom: 14px;
  border: 3px solid var(--yellow);
}
.flow-step h4 { font-size: 13px; font-weight: 900; color: var(--navy); margin-bottom: 5px; }
.flow-step p  { font-size: 11px; color: var(--muted); line-height: 1.7; }

@media (max-width: 600px) {
  .flow-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .flow-grid::before { display: none; }
}

/* ─── NEWS ─── */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--gray);
  text-decoration: none; color: inherit; transition: padding .15s;
}
.news-item:hover { padding-left: 6px; }
.news-item:last-child { border-bottom: none; }
.news-date { font-size: 11px; color: var(--muted); white-space: nowrap; min-width: 76px; }
.news-cat {
  font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 3px;
  white-space: nowrap; min-width: 60px; text-align: center;
}
.c-info   { background: #dbeafe; color: #1d4ed8; }
.c-sport  { background: #dcfce7; color: #166534; }
.c-custom { background: #fef9c3; color: #854d0e; }
.news-title { font-size: 13px; color: var(--text); line-height: 1.5; }

@media (max-width: 600px) {
  .news-item { flex-wrap: wrap; gap: 8px; }
}

/* ─── CONCEPT STRIP ─── */
.concept-strip {
  background: var(--yellow); padding: 32px 32px;
  text-align: center;
}
.concept-strip p {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 1.8vw, 20px);
  color: var(--navy); font-weight: 700; line-height: 2;
}
.concept-strip span { border-bottom: 2px solid var(--blue); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 52px 32px 20px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-logo .logo-badge { margin-bottom: 14px; }
.footer-logo p { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.5); margin-top: 4px; }
.footer-col h4 {
  font-size: 10px; font-weight: 900; letter-spacing: 2px;
  color: var(--yellow); text-transform: uppercase; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 12px; color: rgba(255,255,255,0.55);
  text-decoration: none; margin-bottom: 7px; transition: color .15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.3);
}
.sns-row { display: flex; gap: 10px; }
.sns-btn {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; transition: background .15s;
}
.sns-btn:hover { background: rgba(255,230,0,0.2); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ─── PAGE CONTENT (single / page) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue2) 100%);
  padding: 48px 32px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: white; font-weight: 700;
}
.page-hero .breadcrumb {
  margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.5);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: white; }

.page-content {
  max-width: 900px; margin: 0 auto; padding: 48px 32px;
}
.page-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
  margin: 32px 0 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
}
.page-content h3 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin: 24px 0 12px;
}
.page-content p {
  font-size: 14px; line-height: 1.9; margin-bottom: 16px;
}

/* ─── ANIMATION ─── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.slide.active .slide-text > * {
  animation: fadeUp .5s ease both;
}
.slide.active .slide-text > *:nth-child(1) { animation-delay:.1s; }
.slide.active .slide-text > *:nth-child(2) { animation-delay:.25s; }
.slide.active .slide-text > *:nth-child(3) { animation-delay:.38s; }
.slide.active .slide-text > *:nth-child(4) { animation-delay:.48s; }
.slide.active .slide-visual { animation: fadeUp .6s .2s ease both; }

/* ─── WordPress Core ─── */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px); position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
}
