.category-layout,
.board-layout,
.two-column {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.category-nav {
  position: sticky;
  top: 20px;
  display: grid;
  align-self: start;
  gap: 4px;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  background: #fff;
  padding: 10px;
}

.category-nav > a {
  border-radius: 0;
  padding: 13px 12px;
  color: #333;
  font-size: 15px;
  font-weight: 700;
}

.category-nav > a.is-active {
  background: #f3f6ff;
  color: var(--brand-primary);
}

.category-children {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px 12px;
}

.category-children span,
.dealer-list span,
.board-row span,
.catalog-card span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #f4f4f5;
  color: #555;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.detail-image {
  width: 100%;
  border-radius: 0;
  background: #f8f8fa;
  object-fit: contain;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #555;
  line-height: 1.7;
}

.as-center-page {
  display: grid;
  gap: 22px;
}

.as-support-panel {
  display: grid;
  gap: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  padding: clamp(28px, 4vw, 44px);
}

.as-support-header {
  display: grid;
  gap: 12px;
}

.as-support-header span {
  width: fit-content;
  border-radius: 999px;
  background: #edf8f8;
  color: var(--brand-primary);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 900;
}

.as-support-header h2 {
  margin: 0;
  color: #111114;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.as-support-header p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  font-weight: 800;
}

.as-flow-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.as-flow-card {
  position: relative;
  display: grid;
  grid-template-areas:
    "title icon"
    "desc icon"
    "tag icon";
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 10px 16px;
  min-height: 186px;
  align-content: center;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fafbfc;
  padding: 22px;
}

.as-flow-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 1px solid #d9e2ec;
  border-radius: 50%;
  background: #fff;
  content: "";
  transform: translateY(-50%);
}

.as-flow-card:not(:last-child)::before {
  position: absolute;
  top: 50%;
  right: -4px;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--brand-primary);
  border-right: 2px solid var(--brand-primary);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.as-flow-icon {
  grid-area: icon;
  justify-self: end;
  align-self: center;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 18px;
  background: #edf8f8;
  color: var(--brand-primary);
}

.as-flow-icon svg {
  display: block;
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.as-flow-title {
  grid-area: title;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin: 0;
}

.as-flow-number {
  color: var(--brand-primary);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.as-flow-card strong {
  color: #111114;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.22;
}

.as-flow-card p {
  grid-area: desc;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.as-flow-card em {
  grid-area: tag;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  align-self: start;
  border: 1px solid rgba(0, 157, 154, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary);
  padding: 7px 12px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.as-contact-panel {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fcfc;
  padding: 26px;
}

.as-contact-panel h3 {
  margin: 0 0 18px;
  color: #006f83;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.as-contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.as-contact-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.as-contact-list dt {
  width: fit-content;
  min-width: 90px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary);
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.as-contact-list dd {
  margin: 0;
  color: #303846;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.as-contact-list a {
  color: #111114;
  font-weight: 900;
  text-decoration: none;
}

.product-collection {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-top: 48px;
}

.product-collection-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 22px;
}

.product-collection-side-head {
  display: grid;
  gap: 12px;
}

.product-collection-side h1 {
  margin: 0;
  color: #111114;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.12;
}

.product-mobile-select {
  display: none;
}

.product-search-panel {
  display: grid;
  gap: 8px;
  border-top: 1px solid #edf0f5;
  padding-top: 20px;
}

.product-search-panel label {
  color: #111114;
  font-size: 14px;
  font-weight: 850;
}

.product-search-box {
  display: flex;
  height: 48px;
  overflow: hidden;
  border: 1.5px solid #dfe4ec;
  border-radius: 14px;
  background: #fff;
  transition: border-color 180ms ease;
}

.product-search-box:focus-within {
  border-color: var(--brand-primary);
}

.product-search-box input {
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 14px;
  color: #111114;
  font-size: 14px;
  font-weight: 650;
}

.product-search-box input:focus,
.product-search-box button:focus {
  outline: none;
}

.product-search-box button {
  position: relative;
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111114;
  cursor: pointer;
}

.product-search-box button::before,
.product-search-box button::after {
  content: none;
}

.product-search-box button .tabler-icon {
  display: block;
  width: 25px;
  height: 25px;
  stroke-width: 2.45;
}

.product-search-reset {
  width: fit-content;
  color: #7a8291;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-feature-filter {
  display: grid;
  gap: 12px;
  border-top: 1px solid #edf0f5;
  padding-top: 20px;
}

.product-feature-filter h2 {
  margin: 0;
  color: #111114;
  font-size: 14px;
  font-weight: 900;
}

.product-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-feature-list a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid #dfe4ec;
  border-radius: 999px;
  background: #fff;
  color: #5d6675;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.product-feature-list a.is-active {
  border-color: var(--brand-primary);
  background: var(--brand-soft);
  color: var(--brand-primary);
}

@media (hover: hover) and (pointer: fine) {
  .product-feature-list a:hover {
    border-color: var(--brand-primary);
    background: var(--brand-soft);
    color: var(--brand-primary);
  }
}

.product-collection-main {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.product-collection-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-collection-head h2 {
  margin: 0;
  color: var(--brand-primary);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}

.product-collection-head p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #667085;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.product-collection-head p b {
  color: #111114;
  font-weight: 900;
}

.product-collection-head strong {
  flex: none;
  border-radius: 14px;
  background: #f6f8fb;
  color: #4b5563;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
}

.product-filter,
.product-filter-children {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-filter {
  display: grid;
  gap: 4px;
}

.product-filter a,
.product-filter-group > summary,
.product-filter-children span {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #303846;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 700;
}

.product-filter-group {
  display: grid;
  gap: 0;
  border-bottom: 1px solid #edf0f5;
}

.product-filter > :last-child {
  border-bottom: 0;
}

.product-filter-group > summary {
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.product-filter-group > summary::-webkit-details-marker {
  display: none;
}

.product-filter-group > summary::after {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: currentColor;
  content: "+";
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-filter-group[open] > summary::after {
  transform: rotate(45deg);
}

.product-filter-group.is-closing > summary::after {
  transform: rotate(0deg);
}

.product-filter-group > div {
  display: grid;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms ease,
    padding 360ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 360ms ease;
}

.product-filter-group[open] > div {
  display: grid;
  max-height: 420px;
  padding: 0 0 9px;
  opacity: 1;
  visibility: visible;
}

.product-filter a {
  border-bottom: 1px solid #edf0f5;
  justify-content: space-between;
}

.product-filter > a.product-filter-all {
  justify-content: flex-start;
}

.product-filter-group > div a {
  border-bottom: 0;
  color: #667085;
  justify-content: flex-start;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
}

.product-filter a.is-child {
  margin-left: 0;
  border-left: 0;
  color: #667085;
  font-size: 16px;
  font-weight: 700;
}

.product-filter > a::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0;
  transform: rotate(45deg) translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-filter > a.product-filter-all::after {
  display: none;
}

.product-filter a.is-active,
.product-filter-group.is-active > summary {
  background: transparent;
  color: var(--brand-primary);
}

.product-filter > a.is-active::after {
  opacity: 1;
  transform: rotate(45deg) translateX(0);
}

@media (hover: hover) and (pointer: fine) {
  .product-filter a:hover,
  .product-filter-group > summary:hover {
    background: transparent;
    color: var(--brand-primary);
  }

  .product-filter > a:hover::after {
    opacity: 1;
    transform: rotate(45deg) translateX(0);
  }
}

.product-filter-children span {
  border: 1px solid #dfe4ec;
  border-radius: 999px;
  background: #f7fafc;
  color: #667085;
  padding: 8px 13px;
  font-size: 13px;
}

.product-detail-shop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-mobile-gallery {
  display: none;
}

.product-gallery-main {
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  border: 1px solid #dfe4ec;
  border-radius: 22px;
  background: #f8fafc;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.product-gallery-thumbs button {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #f8fafc;
  padding: 0;
}

.product-gallery-thumbs button.is-active {
  border-color: var(--brand-primary);
}

.product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  position: static;
  display: grid;
  gap: 22px;
  border-top: 3px solid #111114;
  padding-top: 28px;
}

.product-detail-info > span {
  width: fit-content;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-primary);
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
}

.product-detail-info h1 {
  margin: 0;
  color: #111114;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 1.05;
}

.product-detail-info p {
  margin: 0;
  color: #515866;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-tags b {
  border-radius: 999px;
  background: #f1f5f9;
  color: #4b5563;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.product-detail-meta {
  display: grid;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.product-detail-meta div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
}

.product-detail-meta div + div {
  border-top: 1px solid #edf0f5;
}

.product-detail-meta dt,
.product-detail-meta dd {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.product-detail-meta dt {
  color: #7a8291;
}

.product-detail-meta dd {
  color: #111114;
}

.product-detail-content {
  display: grid;
  gap: 28px;
}

.product-detail-mobile-select {
  display: none;
}

.product-detail-tabs {
  position: sticky;
  top: 90px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid #dfe4ec;
  border-bottom-color: #cbd5e1;
  border-radius: 18px 18px 0 0;
  background: rgba(248, 250, 252, 0.96);
  padding: 0;
  backdrop-filter: blur(10px);
}

.product-detail-tabs button {
  position: relative;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-right: 1px solid #e5eaf2;
  border-radius: 0;
  background: transparent;
  color: #667085;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: none;
  transform: none;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.product-detail-tabs button:last-child {
  border-right: 0;
}

.product-detail-tabs button.is-active {
  background: #fff;
  color: var(--brand-primary);
  box-shadow: inset 0 -4px 0 var(--brand-primary);
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .product-detail-tabs button:hover {
    background: #fff;
    color: var(--brand-primary);
    box-shadow: inset 0 -4px 0 var(--brand-primary);
    z-index: 1;
  }
}

.product-detail-tabs button.is-active::after {
  display: none;
}

.product-detail-content [hidden] {
  display: none !important;
}

.product-rich {
  display: grid;
  gap: 18px;
  border-top: 0;
  padding-top: 18px;
}

.product-rich h2 {
  margin: 0;
  color: #111114;
  font-size: 28px;
  font-weight: 900;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #111114;
  font-size: 15px;
  color: #303846;
}

.product-spec-table th,
.product-spec-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 18px;
  vertical-align: middle;
}

.product-spec-table .product-spec-section th {
  text-align: center;
  background: #dbe2ee;
  color: #1f2a44;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.product-spec-table .product-spec-group {
  width: 180px;
  text-align: center;
  vertical-align: middle;
  background: #eef1f5;
  color: #111114;
  font-weight: 900;
  border-right: 1px solid #e5e7eb;
}

.product-spec-table .product-spec-label {
  width: 200px;
  text-align: center;
  background: #fafbfc;
  color: #111114;
  font-weight: 800;
}

.product-spec-table.has-group-col .product-spec-label {
  width: 220px;
}

.product-spec-table .product-spec-value {
  text-align: left;
  line-height: 1.6;
  word-break: break-word;
}

.product-spec-empty {
  margin: 0;
  color: #6b7280;
}

.product-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-downloads .file-link {
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  justify-content: flex-start;
  text-align: left;
}

.product-downloads .file-link span:last-child {
  min-width: 0;
  overflow: visible;
  overflow-wrap: anywhere;
  text-overflow: clip;
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
}

.company-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 28px;
  align-items: start;
  border-radius: 0;
  background: #f2f4f7;
  padding: 42px;
}

.company-overview-copy {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.company-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #7b8190;
  font-size: 16px;
  font-weight: 700;
}

.company-kicker::before {
  width: 54px;
  height: 2px;
  background: var(--brand-primary);
  content: "";
}

.company-overview h2 {
  position: relative;
  max-width: 820px;
  margin: 0;
  color: #111;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.18;
}

html[lang="en"] .company-overview h2 {
  max-width: none;
  font-size: 32px;
  line-height: 1.16;
  white-space: nowrap;
}

.company-overview h2::before {
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--brand-primary);
  content: "";
}

.company-overview-lead {
  margin: 0;
  color: #4b5563;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}

.company-overview blockquote {
  position: relative;
  margin: 0;
  border: 1px solid rgba(0, 157, 154, 0.16);
  border-radius: 22px;
  background: #fff;
  color: var(--brand-primary-deep);
  padding: 26px 30px;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 16px 36px rgba(31, 42, 68, 0.06);
}

.company-overview-text {
  display: grid;
  gap: 12px;
  border: 1px solid #e3e7ef;
  border-radius: 22px;
  background: #fff;
  color: #5f6674;
  padding: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  box-shadow: 0 16px 36px rgba(31, 42, 68, 0.05);
}

.company-overview-text h3 {
  margin: 18px 0 0;
  color: #111827;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.company-overview-text h3:first-child {
  margin-top: 0;
}

.company-overview-text p {
  margin: 0;
}

.company-info-table {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid #e3e7ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(31, 42, 68, 0.05);
}

.company-info-table div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 44px;
  border-top: 1px solid #eef1f6;
}

.company-info-table div:first-child {
  border-top: 0;
}

.company-info-table dt,
.company-info-table dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 18px;
  line-height: 1.45;
}

.company-info-table dt {
  gap: 10px;
  background: var(--brand-soft);
  color: var(--brand-primary);
  font-weight: 800;
}

.company-info-table dt::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.company-info-table dd {
  color: #4b5563;
  font-weight: 600;
}

.company-overview-visual {
  position: sticky;
  top: 110px;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(0, 157, 154, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(5, 10, 35, 0.34)),
    linear-gradient(145deg, var(--brand-primary) 0%, #0f3f45 100%);
  box-shadow: 0 24px 56px rgba(31, 42, 68, 0.14);
}

.company-overview-visual::before {
  position: absolute;
  top: 42px;
  left: 32px;
  right: 32px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background:
    url("../img/brand/logo-master-transparency.png") center / 76% auto no-repeat,
    rgba(255, 255, 255, 0.94);
  content: "";
  box-shadow: 0 18px 42px rgba(5, 10, 35, 0.18);
}

.company-overview-visual::after {
  position: absolute;
  right: 28px;
  top: 230px;
  left: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.company-overview-visual div {
  position: absolute;
  right: 30px;
  bottom: 34px;
  left: 30px;
  display: grid;
  gap: 8px;
}

.company-overview-visual span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
}

.company-overview-visual strong {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.company-overview-visual small {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.company-history-section {
  display: grid;
  gap: 34px;
  border-radius: 0;
  background: #f2f4f7;
  padding: 42px;
}

.company-history-intro {
  display: grid;
  gap: 14px;
  border: 1px solid #e3e7ef;
  border-radius: 24px;
  background: #fff;
  padding: 34px 38px;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.05);
}

.company-history-intro span {
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.company-history-intro h2 {
  max-width: 850px;
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 850;
  line-height: 1.2;
}

html[lang="en"] .company-history-intro h2 {
  max-width: none;
  font-size: 32px;
  line-height: 1.16;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  html[lang="ko"] .company-history-intro h2 {
    max-width: none;
    font-size: clamp(30px, 2.5vw, 36px);
    white-space: nowrap;
  }
}

.company-history-intro p {
  max-width: 980px;
  margin: 0;
  color: #596273;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

@media (min-width: 1101px) {
  .company-history-intro p.company-history-lead {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
    white-space: nowrap;
  }
}

.company-history-timeline {
  position: relative;
  display: grid;
  gap: 28px;
}

.company-history-timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 186px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 157, 154, 0), rgba(0, 157, 154, 0.45), rgba(0, 157, 154, 0));
  content: "";
}

.history-era {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.history-era-heading {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.history-era-heading::after {
  position: absolute;
  top: 34px;
  right: -44px;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 999px;
  background: var(--brand-primary);
  box-shadow: 0 0 0 1px rgba(0, 157, 154, 0.18), 0 10px 26px rgba(0, 157, 154, 0.28);
  content: "";
}

.history-era-heading strong {
  color: var(--brand-primary);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.history-era-heading span {
  color: #667085;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.history-era ol {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid #e3e7ef;
  border-radius: 24px;
  background: #fff;
  padding: 24px 28px;
  list-style: none;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.05);
}

.history-era li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-top: 1px solid #eef1f6;
  padding: 13px 0;
}

.history-era li:first-child {
  border-top: 0;
  padding-top: 0;
}

.history-era li:last-child {
  padding-bottom: 0;
}

.history-era time {
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.history-era p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.58;
}

.company-philosophy-section {
  display: grid;
  gap: 30px;
  border-radius: 0;
  background: #f2f4f7;
  padding: 42px;
}

.company-philosophy-hero {
  display: grid;
  gap: 14px;
  border: 1px solid #e3e7ef;
  border-radius: 24px;
  background: #fff;
  padding: 34px 38px;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.05);
}

.company-philosophy-hero span {
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 900;
}

.company-philosophy-hero h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 850;
  line-height: 1.15;
}

.company-philosophy-hero h2::after {
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--brand-primary);
  content: "";
}

.company-philosophy-hero p {
  max-width: 980px;
  margin: 0;
  color: #596273;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

@media (min-width: 1200px) {
  html[lang="ko"] .company-philosophy-hero p {
    max-width: none;
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.5;
    white-space: nowrap;
  }
}

.philosophy-diagram {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 210px;
  overflow: hidden;
  border: 1px solid #e3e7ef;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 157, 154, 0.08) 0 19%, transparent 19.5%),
    linear-gradient(135deg, #fff 0%, #f9fbff 100%);
  padding: 58px 62px;
  box-shadow: 0 22px 54px rgba(31, 42, 68, 0.07);
}

.philosophy-diagram::before,
.philosophy-diagram::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 360px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 157, 154, 0.24), transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.philosophy-diagram::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.philosophy-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 14px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-primary) 0%, #22b8cf 100%);
  color: #fff;
  box-shadow: 0 24px 64px rgba(0, 157, 154, 0.22);
  transform: translate(-50%, -50%);
}

.philosophy-center small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 900;
}

.philosophy-center strong {
  font-size: 26px;
  font-weight: 850;
}

.philosophy-item {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 184px;
  align-content: center;
  gap: 9px;
  border: 1px solid rgba(0, 157, 154, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  padding: 30px;
  box-shadow: 0 16px 40px rgba(31, 42, 68, 0.06);
}

.philosophy-item::after {
  position: absolute;
  top: 50%;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 157, 154, 0.34), rgba(0, 157, 154, 0));
  content: "";
}

.philosophy-item.speed::after,
.philosophy-item.standard::after {
  right: -86px;
}

.philosophy-item.service::after,
.philosophy-item.satisfaction::after {
  left: -86px;
  transform: rotate(180deg);
}

.philosophy-item span {
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 900;
}

.philosophy-item h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 850;
}

.philosophy-item p {
  margin: 0;
  color: #596273;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.company-environment-section {
  display: grid;
  gap: 30px;
  border-radius: 0;
  background: #f2f4f7;
  padding: 42px;
}

.company-environment-copy {
  display: grid;
  gap: 14px;
  border: 1px solid #e3e7ef;
  border-radius: 24px;
  background: #fff;
  padding: 34px 38px;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.05);
}

.company-environment-copy span {
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 900;
}

.company-environment-copy h2 {
  max-width: 850px;
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 850;
  line-height: 1.2;
}

@media (min-width: 1101px) {
  html[lang="ko"] .company-environment-copy h2 {
    max-width: none;
    font-size: clamp(28px, 2.5vw, 36px);
    white-space: nowrap;
  }
}

.company-environment-copy p {
  max-width: 980px;
  margin: 0;
  color: #596273;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.environment-policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}

.environment-policy-list {
  display: grid;
  gap: 14px;
}

.environment-policy-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid #e3e7ef;
  border-radius: 20px;
  background: #fff;
  padding: 22px 24px;
  box-shadow: 0 14px 34px rgba(31, 42, 68, 0.05);
}

.environment-policy-list article > strong {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 900;
}

.environment-policy-list h3 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.35;
}

.environment-policy-list p {
  margin: 8px 0 0;
  color: #5d6675;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.62;
}

.environment-policy-visual {
  display: grid;
  gap: 14px;
  align-content: start;
}

.environment-policy-diagram {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid #e3e7ef;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 157, 154, 0.08), transparent 34%),
    #fff;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.05);
}

.environment-policy-diagram::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 2px solid rgba(0, 157, 154, 0.22);
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
}

.environment-policy-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand-primary), var(--brand-primary-deep));
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 44px rgba(0, 157, 154, 0.24);
}

.environment-policy-center strong {
  align-self: end;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.environment-policy-center span {
  align-self: start;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.environment-node {
  position: absolute;
  display: grid;
  width: 138px;
  min-height: 92px;
  place-items: center;
  border: 1px solid rgba(0, 157, 154, 0.18);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-primary-deep);
  padding: 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0, 157, 154, 0.12);
}

.environment-node.node-1 {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}

.environment-node.node-2 {
  top: 190px;
  right: 48px;
}

.environment-node.node-3 {
  right: 94px;
  bottom: 74px;
}

.environment-node.node-4 {
  bottom: 74px;
  left: 94px;
}

.environment-node.node-5 {
  top: 190px;
  left: 48px;
}

.environment-policy-note {
  margin: 0;
  color: #667085;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.company-location-section {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 92px;
  border-radius: 0;
  background: #fff;
  padding: 0;
}

.location-map-hero {
  position: relative;
  width: 100%;
  height: clamp(430px, 38vw, 620px);
  overflow: visible;
  background: #e9edf4;
}

.location-map-hero iframe,
.location-kakao-map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.96) contrast(0.98);
}

.location-kakao-map {
  position: relative;
  overflow: hidden;
}

.location-map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #667085;
  background: linear-gradient(135deg, #eef2f8 0%, #f8fafc 100%);
  font-size: 16px;
  font-weight: 800;
}

.location-kakao-map.is-ready .location-map-loading {
  display: none;
}

.location-kakao-map.is-error .location-map-loading {
  padding: 24px;
  text-align: center;
}

.location-map-label {
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 13px 16px;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.18);
  transform: translateY(-8px);
}

.location-map-label strong {
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.location-map-label span {
  color: #5f6b7c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.location-detail-wrap {
  width: min(var(--detail-max), calc(100vw - 40px));
  margin: 86px auto 0;
  display: grid;
  gap: 24px;
}

.location-intro-card {
  display: grid;
  gap: 12px;
  border: 1px solid #e3e7ef;
  border-radius: 24px;
  background: #fff;
  padding: 34px 38px;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.05);
}

.location-intro-card span {
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 900;
}

.location-intro-card h2 {
  margin: 10px 0 0;
  color: #111827;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 850;
  line-height: 1.2;
}

.location-intro-card p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #596273;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.location-map-buttons {
  position: absolute;
  left: 50%;
  bottom: -36px;
  z-index: 3;
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: center;
  transform: translateX(-50%);
}

.location-map-buttons a {
  display: inline-flex;
  min-width: 310px;
  height: 78px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  padding: 0 46px;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 22px 48px rgba(31, 42, 68, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-map-buttons a:first-child {
  background: linear-gradient(135deg, #4d95f5 0%, #2f76e6 100%);
}

.location-map-buttons a:last-child {
  background: linear-gradient(135deg, #59cf6b 0%, #34aa4e 100%);
}

@media (hover: hover) and (pointer: fine) {
  .location-map-buttons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 58px rgba(31, 42, 68, 0.24);
  }
}

.location-map-buttons i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.location-map-buttons i::after {
  display: none;
  content: none;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.location-office-card,
.location-transport-card {
  border: 1px solid #e3e7ef;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.05);
}

.location-office-card {
  padding: 34px 36px;
}

.location-office-card > span {
  display: inline-flex;
  height: 34px;
  align-items: center;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--brand-primary);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 900;
}

.location-office-card h3 {
  margin: 22px 0 24px;
  color: #111827;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.22;
}

.location-office-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.location-office-card dl div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.location-office-card dt {
  color: #6b7280;
  font-weight: 900;
}

.location-office-card dd {
  margin: 0;
  color: #4b5563;
  font-weight: 650;
  line-height: 1.55;
}

.location-office-card a {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .location-office-card a:hover {
    color: var(--brand-primary);
  }
}

.location-transport-card {
  display: grid;
  gap: 18px;
  padding: 30px 36px;
}

.location-transport-card h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 850;
}

.location-transport-card div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid #eef1f6;
  padding-top: 18px;
}

.location-transport-card strong {
  color: var(--brand-primary);
  font-weight: 900;
}

.location-transport-card p {
  margin: 0;
  color: #5d6675;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.detail-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  border-left: 4px solid var(--brand-primary);
  padding: 4px 0 4px 16px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.catalog-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.catalog-showcase-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}

.catalog-cover {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(0, 157, 154, 0.95), rgba(0, 103, 128, 0.96)),
    #009d9a;
  color: #fff;
  padding: 28px;
}

.catalog-cover::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  content: "";
}

.catalog-cover::after {
  position: absolute;
  right: 28px;
  bottom: 68px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.catalog-cover span,
.catalog-cover strong,
.catalog-cover em {
  position: relative;
  z-index: 1;
}

.catalog-cover span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.catalog-cover strong {
  align-self: center;
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.catalog-cover em {
  width: fit-content;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-primary);
  padding: 7px 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.catalog-showcase-body {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-width: 0;
  padding: 30px;
}

.catalog-showcase-body small {
  display: block;
  margin-bottom: 10px;
  color: #667085;
  font-size: 14px;
  font-weight: 800;
}

.catalog-showcase-body h2 {
  margin: 0;
  color: #111114;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
}

.catalog-showcase-body p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
}

.catalog-detail-link {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #111114;
}

.catalog-download-link {
  border: 1px solid var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}

.company-certifications-section {
  display: grid;
  gap: 24px;
}

.certificate-card {
  display: grid;
  grid-template-rows: auto 116px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.certificate-card-visual {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 5;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  background: #f8fafc;
  padding: 16px;
}

.certificate-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.certificate-order {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  min-width: 38px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 157, 154, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 900;
}

.certificate-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid #c9eded;
  border-radius: 50%;
  background: #ecfafa;
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 900;
}

.certificate-card-body {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 0;
  border-top: 1px solid #edf0f5;
  padding: 14px 16px;
}

.certificate-card h2 {
  margin: 0;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.certificate-card time {
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  min-height: 170px;
  place-items: center;
  border: 1px dashed #d6d6d6;
  border-radius: var(--radius);
  background: #fff;
  color: #777;
  font-weight: 800;
}

.visual-block {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #fff;
  padding: 32px;
}

.open-source-page {
  display: grid;
  gap: 26px;
}

.open-source-intro {
  display: grid;
  gap: 10px;
  border: 1px solid #d9eeee;
  border-radius: 16px;
  background: #f5fbfb;
  padding: 24px 26px;
}

.open-source-intro strong {
  color: #111114;
  font-size: 22px;
  font-weight: 900;
}

.open-source-intro p,
.open-source-note p {
  margin: 0;
  color: #5d6675;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.72;
}

.open-source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.open-source-card {
  display: grid;
  gap: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(31, 42, 68, 0.06);
}

.open-source-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: rgba(0, 157, 154, 0.1);
  color: var(--brand-primary-deep);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.open-source-card h2 {
  margin: 14px 0 0;
  color: #111114;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.open-source-card p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.open-source-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.open-source-card dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
}

.open-source-card dt {
  color: #8a93a3;
  font-size: 13px;
  font-weight: 850;
}

.open-source-card dd {
  min-width: 0;
  margin: 0;
  color: #303846;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.open-source-card a {
  color: var(--brand-primary-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.open-source-note {
  border-top: 1px solid #e6ebf2;
  padding-top: 18px;
}
