/* form */
:root {
  --primary-color: #004C97;
  --text-main: #070808;
  --text-muted: #5E6568;
  --border-color: #f1f5f9;
  --bg-light: #f8fafc;
}

.dt-sbu {
  line-height: 1.6;
  margin-top: -20px;
}
.dt-sbu .banner {
  height: 300px;
  width: 100%;
  text-indent: -9999px;
  background: url(../../../images/pages/about-us/dt-sbu/banner.png);
  background-repeat: no-repeat;
  background-position: center;
}
.dt-sbu .title {
  text-align: center;
  margin: 5rem auto 3rem auto;
  color: var(--primary-color);
  font-size: 1.5rem;
}
.dt-sbu .title h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}
.dt-sbu .title h2 span {
  font-weight: 700;
}

/* Hero Section */
.hero {
  width: 1000px;
  padding: 2.5rem 0;
  border: 1px solid #D7D9DB;
  border-radius: 2rem;
  background-color: #F8F9F9;
  margin-bottom: 5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero .label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.hero .new .label {
  color: var(--primary-color);
}
.hero .name {
  min-height: 2.5rem;
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.hero .old-name {
  font-size: 1.75rem;
  color: var(--text-muted);
  min-height: 4rem;
}
.hero .new-name {
  color: var(--primary-color);
  letter-spacing: -0.02em;
}
.hero .abbr-badge span {
  display: inline-block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 8px;
}
.hero .abbr-badge span.new {
  background-color: var(--primary-color);
}
.hero .arrow-icon {
  width: 48px;
  height: 48px;
  min-height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}
.hero .arrow-icon svg {
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: center;
    gap: 64px;
  }
}
/* Organization Section */
.section-title {
  margin-bottom: 48px;
}
.section-title span {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  border-left: 3px solid #004C97;
  padding-left: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.section-title small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: normal;
  text-indent: calc(1rem + 3px);
}

.org-tree {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.root-node {
  display: flex;
  align-items: center;
  gap: 16px;
}

.root-box {
  background-color: #0072BA;
  color: #ffffff;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 18px;
}

.tree-content {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.tree-content::before {
  content: "";
  position: absolute;
  width: 0;
  top: -15px;
  bottom: 40px;
  left: 0;
  display: inline-block;
  border-left: 1px solid #D7D9DB;
}

.segment-item {
  position: relative;
}

.segment-name {
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-muted);
}
.segment-name::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 0;
  width: 35px;
  left: -48px;
  top: 50%;
  border-bottom: 1px solid #D7D9DB;
}

.segment-item.active .segment-name {
  color: var(--primary-color);
}

/* Division Cards */
.division-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .division-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.card {
  background-color: #ffffff;
  border: 1px solid #D7D9DB;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.card.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(0, 91, 172, 0.1);
}

.card-old-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.card-name {
  font-size: 1.25rem;
  line-height: 1.4;
}

.card.active {
  font-weight: 700;
}

.card.active .card-name {
  color: var(--primary-color);
}

.card-abbr {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Background Section */
.background-box {
  background-color: #F8F9F9;
  padding: 48px;
  margin-top: 5rem;
}

.background-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 32px 0;
}

.background-text {
  font-size: 18px;
  color: #334155;
  line-height: 2;
}

.product {
  width: 1000px;
  margin: 2.5rem auto 4rem auto;
  display: grid;
  grid-template-columns: 190px 190px 120px 120px 160px;
  justify-content: center;
  gap: 0.75rem;
}
.product img {
  filter: drop-shadow(rgb(145, 150, 153) 0px 0px 5.84365px);
}

/* SVG Icons */
.icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}/*# sourceMappingURL=dt-sbu.css.map */