.about {
  padding: 18px;
}

.about-empty {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* Hero Banner Section */
.hero-banner {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 48px;
  gap: 56px;
  isolation: isolate;
  position: relative;
  width: 100%;
  min-height: 402px;
  background: #FFFFFF;
  border: 1px solid #A8A8A8;
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
}

.hero-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  max-width: 604px;
  flex: 1;
  z-index: 1;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 100%;
}

.hero-title {
  margin: 0;
  width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  background: linear-gradient(90deg, #E31937 0%, #A82465 60%, #5236AB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  margin: 0;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  color: #333333;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
}

.hero-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
}

.hero-btn-outline {
  background: #FFFFFF;
  border: 1px solid #5236AB;
  color: #5236AB;
}

.hero-btn-outline:hover {
  background: #f8f7fc;
}

.hero-btn-filled {
  background: #5236AB;
  border: none;
  color: #FFFFFF;
}

.hero-btn-filled:hover {
  background: #432d8f;
}

.hero-btn-text {
  white-space: nowrap;
}

.hero-patterns {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: 100%;
  height: auto;
  z-index: 0;
  opacity: 0.9;
}

.hero-pattern-image {
  display: block;
  width: auto;
  height: 100%;
  max-height: 402px;
  object-fit: contain;
  object-position: right center;
}

/* Navigation */
.about-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.about-navItem {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 140ms ease, border-color 140ms ease;
  cursor: pointer;
}

.about-navItem:hover {
  color: var(--text);
}

.about-navItem.is-active {
  color: var(--text);
  border-bottom-color: #E31937;
}

.about-heroContent {
  flex: 1;
  max-width: 700px;
}

.about-heroTitle {
  margin: 0 0 8px 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
}

.about-heroSubtitle {
  margin: 0 0 16px 0;
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.about-heroDesc {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 65ch;
}

.about-heroImage {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  opacity: 0.75;
}

.about-heroImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Section */
.about-section {
  margin-bottom: 48px;
}

.about-h2 {
  margin: 0 0 8px 0;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
}

.about-subtitle {
  margin: 0 0 24px 0;
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

/* Dark Mode Support */
html.theme-dark .hero-banner {
  background: #1a1a2e;
  border: 1px solid #444;
}

html.theme-dark .hero-description {
  color: #e5e7eb;
}

html.theme-dark .hero-btn-outline {
  background: transparent;
  border-color: #8b7bc8;
  color: #8b7bc8;
}

html.theme-dark .hero-btn-outline:hover {
  background: rgba(139, 123, 200, 0.1);
}

html.theme-dark .hero-btn-filled {
  background: #6b4fc4;
}

html.theme-dark .hero-btn-filled:hover {
  background: #5a3fa8;
}

html.theme-dark .hero-patterns {
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-banner {
    padding: 36px 32px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }
  .hero-col {
    max-width: 100%;
    align-items: center;
  }
  .hero-headline {
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: 36px;
    line-height: 45px;
  }
  .about-heroContent {
    max-width: 100%;
  }
  .about-heroTitle {
    font-size: 42px;
  }
}
@media (max-width: 720px) {
  .about {
    padding: 12px;
  }
  .hero-banner {
    padding: 28px 24px;
  }
  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }
  .hero-description {
    font-size: 16px;
    line-height: 20px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-btn {
    width: 100%;
  }
  .hero-patterns {
    display: none;
  }
  .about-heroTitle {
    font-size: 34px;
  }
  .about-heroSubtitle {
    font-size: 20px;
  }
  .about-heroDesc {
    font-size: 16px;
  }
  .about-heroImage {
    width: 200px;
    height: 200px;
  }
  .about-h2 {
    font-size: 28px;
  }
}

/*# sourceMappingURL=about.css.map */