:root {
  --dt-blue: #063477;
  --dt-blue-deep: #031d46;
  --dt-gold: #f5c84c;
  --dt-text: #ffffff;
}
.dt-container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.dt-topbar {
  background: var(--dt-blue-deep);
  color: var(--dt-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}
.dt-topbar-inner,
.dt-nav-inner,
.dt-topbar-right,
.dt-nav-actions,
.dt-category-row {
  display: flex;
  align-items: center;
}
.dt-topbar-inner {
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}
.dt-topbar-left {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dt-topbar-right {
  gap: 16px;
  flex: 0 0 auto;
}
.dt-topbar a,
.dt-category-row a {
  color: var(--dt-text);
  text-decoration: none;
}
.dt-navbar {
  background: #ffffff;
  border-bottom: 1px solid #dbe3ef;
  box-shadow: 0 4px 14px rgba(3, 29, 70, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 20;
}
.dt-nav-inner {
  min-height: 92px;
  justify-content: space-between;
  gap: 24px;
}
.dt-logo {
  display: inline-flex;
  flex: 0 0 auto;
}
.dt-logo img {
  display: block;
  width: 240px;
  height: 80px;
  object-fit: contain;
}
.dt-search {
  display: flex;
  align-items: center;
  flex: 1 1 420px;
  max-width: 560px;
  min-height: 44px;
  border: 1px solid #b7c5d8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.dt-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 11px 14px 11px 4px;
  font: inherit;
}
.dt-search-button {
  width: 44px;
  align-self: stretch;
  border: 0;
  background: transparent;
  color: var(--dt-blue);
  font-size: 26px;
  cursor: pointer;
}
.dt-nav-actions {
  gap: 10px;
  flex: 0 0 auto;
}
.dt-result-button,
.dt-login-button {
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
.dt-result-button {
  color: var(--dt-blue);
  border: 1px solid var(--dt-blue);
}
.dt-login-button {
  color: #181000;
  background: var(--dt-gold);
  border: 1px solid #d5a91e;
}
.dt-category-row {
  gap: 22px;
  min-height: 46px;
  overflow-x: auto;
  background: var(--dt-blue);
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  box-sizing: border-box;
}
.dt-category-row a {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .dt-container {
    width: min(100% - 20px, 1180px);
  }
  .dt-topbar-left {
    display: none;
  }
  .dt-topbar-inner {
    justify-content: center;
  }
  .dt-topbar-right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }
  .dt-topbar-right a {
    font-size: 11px;
  }
  .dt-nav-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 12px;
  }
  .dt-logo {
    width: 100%;
    justify-content: center;
  }
  .dt-logo img {
    width: 210px;
    height: 70px;
  }
  .dt-search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }
  .dt-nav-actions {
    margin-left: auto;
  }
  .dt-result-button,
  .dt-login-button {
    padding: 9px 12px;
    font-size: 13px;
  }
}
