.transp-section {
  font-family: 'Montserrat', sans-serif;
  background: #F1EBEB;
  padding: var(--section-space-y) var(--section-space-x);
  box-sizing: border-box;
}

.transp-section * {
  box-sizing: border-box;
}

.transp-container {
  max-width: 1080px;
  margin: 0 auto;
}

.transp-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.transp-kicker-line {
  width: 28px;
  height: 3px;
  background: #F19C04;
}

.transp-kicker-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #0351A1;
  text-transform: uppercase;
}

.transp-title {
  font-size: 40px;
  font-weight: 800;
  color: #052E55;
  margin: 0 0 18px 0;
  line-height: 1.15;
  max-width: 720px;
}

.transp-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #052E55;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 0 36px 0;
}

.transp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(5, 46, 85, 0.12);
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 44px;
}

.transp-badge span {
  font-size: 13.5px;
  font-weight: 600;
  color: #052E55;
}

.transp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.transp-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(5, 46, 85, 0.08);
  display: flex;
  flex-direction: column;
}

.transp-card-top {
  height: 5px;
  background: #0351A1;
}

.transp-card-header {
  padding: 26px 26px 10px 26px;
}

.transp-card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.transp-card-header-row h3 {
  font-size: 19px;
  font-weight: 700;
  color: #052E55;
  margin: 0;
}

.transp-uf {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0351A1;
  background: rgba(3, 81, 161, 0.1);
  padding: 4px 9px;
  border-radius: 5px;
}

.transp-card-subtitle {
  font-size: 13.5px;
  color: #052E55;
  opacity: 0.65;
  margin: 0 0 18px 0;
}

.transp-links {
  display: flex;
  flex-direction: column;
  padding: 0 10px 14px 10px;
}

.transp-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #052E55;
  transition: background 0.15s ease;
}

.transp-link:hover {
  background: #F1EBEB;
}

.transp-link span {
  font-size: 14.5px;
  font-weight: 500;
  flex: 1;
}

.transp-link svg {
  flex-shrink: 0;
}

.transp-footnote {
  font-size: 12.5px;
  color: #052E55;
  opacity: 0.55;
  margin: 32px 0 0 0;
}

@media (max-width: 640px) {
  .transp-title {
    font-size: 28px !important;
  }
  .transp-intro {
    font-size: 15.5px !important;
  }
  .transp-badge {
    padding: 10px 14px !important;
  }
  .transp-badge span {
    font-size: 12.5px !important;
  }
  .transp-grid {
    grid-template-columns: 1fr !important;
  }
}
