/* =============================================
   アフターピル検索サイト - 改善版CSS
   ============================================= */

/* リセット & ベース設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* グラデーション */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-emergency: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
  --gradient-success: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  
  /* 基本カラー */
  --color-primary: #667eea;
  --color-secondary: #f093fb;
  --color-danger: #ff6b6b;
  --color-warning: #FFA500;
  --color-success: #56CCF2;
  --color-dark: #2d3748;
  --color-gray: #718096;
  --color-gray-light: #e2e8f0;
  --color-light: #f7fafc;
  --color-white: #ffffff;
  
  /* シャドウ */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-colored: 0 10px 40px rgba(102, 126, 234, 0.3);
  
  /* フォント */
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  
  /* アニメーション */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  line-height: 1.6;
  font-size: 16px;
  background: var(--color-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* アニメーション定義 */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

/* 緊急バナー */
.emergency-banner {
  background: var(--gradient-emergency);
  color: white;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.emergency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.emergency-icon {
  font-size: 18px;
  animation: pulse 1s infinite;
}

/* ヒーローセクション */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
}

.hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  text-align: center;
  animation: slideInUp 0.8s ease;
}

/* タイムリミットカード */
.time-limit-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.time-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.time-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-gold);
}

.time-card.gold::before {
  background: var(--gradient-gold);
  animation: pulse 2s infinite;
}

.time-card.silver::before {
  background: var(--gradient-success);
}

.time-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-colored);
}

.time-number {
  font-size: 48px;
  font-weight: bold;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.time-unit {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 10px;
}

.time-effect {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-danger);
  margin: 10px 0;
}

.time-label {
  background: var(--gradient-gold);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
}

/* ヒーロータイトル */
.hero-title {
  margin-bottom: 15px;
}

.title-main {
  display: block;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: white;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}

.title-sub {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.sp-only {
  display: none;
}

/* 検索フォーム */
.hero-search {
  max-width: 500px;
  margin: 0 auto 25px;
}

.search-form-hero {
  display: flex;
  gap: 12px;
  background: white;
  padding: 6px;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.search-icon {
  margin-right: 8px;
  font-size: 18px;
}

.search-input-hero {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.search-button-hero {
  padding: 12px 24px;
  background: var(--gradient-secondary);
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.search-button-hero:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4);
}

/* クイックアクセス */
.quick-access {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  font-weight: 500;
  font-size: 14px;
}

.quick-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.quick-btn.urgent {
  background: var(--gradient-emergency);
  border-color: transparent;
  animation: pulse 2s infinite;
}

.quick-btn .icon {
  font-size: 18px;
}

/* セクションタイトル */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.title-en {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.title-ja {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 知識セクション */
.knowledge-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-light) 0%, white 100%);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.knowledge-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.knowledge-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.knowledge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-colored);
}

.knowledge-card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
}

.card-icon.timing { background: var(--gradient-gold); }
.card-icon.types { background: var(--gradient-success); }
.card-icon.process { background: var(--gradient-secondary); }
.card-icon.price { background: var(--gradient-emergency); }

.knowledge-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.knowledge-card p {
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 14px;
}

.card-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.card-link:hover {
  gap: 5px;
}

/* ピル比較テーブル */
.pill-comparison {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

.comparison-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--color-dark);
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.pill-type {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pill-type:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pill-header {
  padding: 15px;
  text-align: center;
  color: white;
}

.pill-header.levonorgestrel {
  background: var(--gradient-gold);
}

.pill-header.ulipristal {
  background: var(--gradient-success);
}

.pill-header.yuzpe {
  background: var(--gradient-secondary);
}

.pill-header h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.pill-header .badge {
  background: rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-block;
}

.pill-content {
  padding: 20px;
  background: var(--color-light);
}

.pill-item {
  margin-bottom: 15px;
}

.pill-item .label {
  display: block;
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 6px;
}

.pill-item .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.pill-item .value.price {
  color: var(--color-danger);
  font-size: 16px;
}

.effectiveness-bar {
  background: var(--color-white);
  height: 25px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.effectiveness-fill {
  height: 100%;
  background: var(--gradient-success);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  color: white;
  font-weight: bold;
  font-size: 12px;
  transition: width 1s ease;
}

/* 都道府県セクション */
.prefecture-section {
  padding: 100px 0;
  background: white;
}

.prefecture-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.region-group {
  margin-bottom: 35px;
  padding: 25px;
  background: var(--color-light);
  border-radius: 15px;
}

.region-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-gray-light);
}

.region-icon {
  font-size: 20px;
}

.prefecture-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.prefecture-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}

.prefecture-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--gradient-primary);
  color: white;
}

.prefecture-link:hover .pref-count {
  background: white;
  color: var(--color-primary);
}

.pref-count {
  background: var(--color-light);
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray);
}

.prefecture-link.no-clinics {
  opacity: 0.5;
}

/* 人気エリア */
.popular-areas {
  margin-top: 40px;
  padding: 30px;
  background: var(--gradient-primary);
  border-radius: 15px;
}

.popular-title {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

.popular-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.popular-area-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: white;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.popular-area-btn:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.area-count {
  background: var(--color-primary);
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 11px;
}

/* 病院リスト */
.recent-hospitals {
  padding: 100px 0;
  background: var(--color-light);
}

.hospital-list {
  margin-bottom: 40px;
}

.hospital-item {
  margin-bottom: 15px;
  animation: slideInUp 0.5s ease;
}

.hospital-inner {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hospital-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
}

.hospital-item:hover .hospital-inner {
  transform: translateX(8px);
  box-shadow: var(--shadow-colored);
}

.hospital-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hospital-main {
  flex: 1;
  min-width: 300px;
}

.hospital-name {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hospital-name a {
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition);
}

.hospital-name a:hover {
  color: var(--color-primary);
}

.hospital-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  color: var(--color-gray);
  font-size: 14px;
}

.meta-location, .meta-station {
  display: flex;
  align-items: center;
  gap: 4px;
}

.meta-location .icon, .meta-station .icon {
  font-size: 16px;
}

.meta-prefecture {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.meta-prefecture:hover {
  text-decoration: underline;
}

/* 病院特徴タグ */
.hospital-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.feature-pill, .feature-price, .feature-tag {
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.feature-pill {
  background: var(--gradient-primary);
  color: white;
}

.feature-pill.pill-72 {
  background: var(--gradient-gold);
}

.feature-pill.pill-120 {
  background: var(--gradient-success);
}

.feature-price {
  background: var(--gradient-emergency);
  color: white;
}

.feature-tag {
  background: var(--color-light);
  color: var(--color-gray);
}

.feature-tag.tag-female {
  background: #fce4ec;
  color: #c2185b;
}

.feature-tag.tag-online {
  background: #e3f2fd;
  color: #1976d2;
}

.feature-tag.tag-24h {
  background: #fff3e0;
  color: #e65100;
}

.feature-tag.tag-holiday {
  background: #e8f5e9;
  color: #2e7d32;
}

/* 詳細リンク */
.hospital-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.hospital-link:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-colored);
}

.hospital-link svg {
  transition: var(--transition);
  width: 16px;
  height: 16px;
}

.hospital-link:hover svg {
  transform: translateX(3px);
}

/* もっと見るボタン */
.more-link-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 40px;
  background: white;
  color: var(--color-primary);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  transition: var(--transition);
}

.btn-more:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: scale(1.03);
}

.btn-more .arrow {
  transition: var(--transition);
}

.btn-more:hover .arrow {
  transform: translateX(3px);
}

/* 緊急ガイド */
.emergency-guide {
  padding: 100px 0;
  background: white;
}

.emergency-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.step {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-light);
  border-radius: 15px;
  transition: var(--transition);
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-colored);
  background: white;
}

.step-number {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.step p {
  color: var(--color-gray);
  line-height: 1.6;
  font-size: 14px;
}

/* 警告ボックス */
.warning-box {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  border-left: 4px solid var(--color-danger);
  padding: 30px;
  border-radius: 12px;
}

.warning-box h3 {
  color: var(--color-danger);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.warning-box ul {
  list-style: none;
  color: var(--color-dark);
  line-height: 1.8;
}

.warning-box li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
}

.warning-box li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
}

/* CTAセクション */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: var(--transition);
  display: inline-block;
}

.cta-btn.primary {
  background: white;
  color: var(--color-primary);
}

.cta-btn.primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--color-primary);
}

/* その他 */
.no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.no-results p {
  color: var(--color-gray);
  font-size: 18px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
  
  .emergency-banner {
    font-size: 12px;
    padding: 8px 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }
  
  .time-limit-cards {
    flex-direction: row;
    gap: 10px;
  }
  
  .time-card {
    padding: 15px;
    min-width: 140px;
  }
  
  .time-number {
    font-size: 28px;
  }
  
  .time-unit {
    font-size: 12px;
  }
  
  .time-effect {
    font-size: 14px;
  }
  
  .title-main {
    font-size: 1.8rem;
  }
  
  .title-sub {
    font-size: 1.2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .search-form-hero {
    flex-direction: column;
    border-radius: 15px;
  }
  
  .search-input-wrapper {
    padding: 12px 15px;
  }
  
  .search-button-hero {
    width: 100%;
    border-radius: 10px;
    padding: 12px;
  }
  
  .quick-access {
    gap: 10px;
  }
  
  .quick-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .knowledge-section,
  .prefecture-section,
  .recent-hospitals,
  .emergency-guide,
  .cta-section {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .title-en {
    font-size: 11px;
  }
  
  .title-ja {
    font-size: 1.3rem;
  }
  
  .knowledge-grid,
  .comparison-table,
  .emergency-steps {
    grid-template-columns: 1fr;
  }
  
  .knowledge-card {
    padding: 20px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  
  .pill-comparison {
    padding: 25px 15px;
  }
  
  .prefecture-list {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }
  
  .prefecture-link {
    padding: 10px;
    font-size: 14px;
  }
  
  .hospital-inner {
    padding: 15px;
    border-radius: 12px;
  }
  
  .warning-box {
    padding: 20px;
  }
  
  .hospital-link {
    width: 100%;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}