section[tog="feature_detail"] {
  background: #1e1e2f;
  padding: 4rem 2rem;
}
section[tog="feature_detail"] .content_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
section[tog="feature_detail"] .feature_block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  section[tog="feature_detail"] .feature_block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
section[tog="feature_detail"] .feature_block.feature_block--flipped {
  grid-template-columns: 2fr 1fr;
}
section[tog="feature_detail"] .feature_block.feature_block--flipped .feature__icon {
  order: 2;
}
@media screen and (max-width: 767px) {
  section[tog="feature_detail"] .feature_block.feature_block--flipped {
    grid-template-columns: 1fr;
  }
  section[tog="feature_detail"] .feature_block.feature_block--flipped .feature__icon {
    order: 0;
  }
}
section[tog="feature_detail"] .feature_block .feature__icon {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 240px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3a86ff 0%, #00c2a8 100%);
  box-shadow: 0 0 24px rgba(58,134,255,0.25);
}
section[tog="feature_detail"] .feature_block .feature__copy h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.5px;
}
section[tog="feature_detail"] .feature_block .feature__copy p {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: rgba(245,245,247,0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}
section[tog="feature_detail"] .feature_block .feature__copy ul.feature__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
section[tog="feature_detail"] .feature_block .feature__copy ul.feature__points li {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: #f5f5f7;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}
section[tog="feature_detail"] .feature_block .feature__copy ul.feature__points li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  color: #00c2a8;
  font-size: 0.7rem;
  line-height: 1.6;
}
