/**
 * Theme Name:        DTB
 * Description:       Einfaches Depot Tagebuch
 * Version:           0.1
 * Author:            Adrian Korte & Chatty
 * Text Domain:       dt
 */

/* --------------------------------------------------------------------------
   1. Design Tokens
-------------------------------------------------------------------------- */
:root {
  --dt-background: 40 20% 98%;
  --dt-foreground: 220 20% 10%;
  --dt-card: 0 0% 100%;
  --dt-muted: 40 10% 93%;
  --dt-muted-foreground: 220 10% 46%;
  --dt-border: 40 10% 88%;
  --dt-input: 40 10% 88%;
  --dt-primary: 220 20% 10%;
  --dt-primary-foreground: 40 20% 98%;
  --dt-secondary: 314 31% 47%;
  --dt-accent: 152 50% 42%;
  --dt-accent-foreground: 0 0% 100%;
  --dt-destructive: 0 72% 51%;
  --dt-radius: 0.375rem;
  --dt-font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dt-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --dt-background: 220 20% 7%;
    --dt-foreground: 40 20% 95%;
    --dt-card: 220 18% 10%;
    --dt-muted: 220 12% 16%;
    --dt-muted-foreground: 220 10% 55%;
    --dt-border: 220 12% 18%;
    --dt-input: 220 12% 18%;
    --dt-primary: 40 20% 95%;
    --dt-primary-foreground: 220 20% 7%;
    --dt-secondary: 314 31% 47%;
  }
}

html[data-theme="light"] {
  --dt-background: 40 20% 98%;
  --dt-foreground: 220 20% 10%;
  --dt-card: 0 0% 100%;
  --dt-muted: 40 10% 93%;
  --dt-muted-foreground: 220 10% 46%;
  --dt-border: 40 10% 88%;
  --dt-input: 40 10% 88%;
  --dt-primary: 220 20% 10%;
  --dt-primary-foreground: 40 20% 98%;
}

html[data-theme="dark"] {
  --dt-background: 220 20% 7%;
  --dt-foreground: 40 20% 95%;
  --dt-card: 220 18% 10%;
  --dt-muted: 220 12% 16%;
  --dt-muted-foreground: 220 10% 55%;
  --dt-border: 220 12% 18%;
  --dt-input: 220 12% 18%;
  --dt-primary: 40 20% 95%;
  --dt-primary-foreground: 220 20% 7%;
}

.dt-theme-toggle {
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  border: 1px solid hsl(var(--dt-border));
  border-radius: 999px;
  background: hsl(var(--dt-card));
  color: hsl(var(--dt-muted-foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dt-theme-toggle:hover {
  color: hsl(var(--dt-foreground));
}

.dt-theme-toggle svg {
  width: 1rem;
  height: 1rem;
}

.dt-theme-toggle__icon--moon {
  display: none;
}

html[data-theme="dark"] .dt-theme-toggle__icon--sun {
  display: none;
}

html[data-theme="dark"] .dt-theme-toggle__icon--moon {
  display: block;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .dt-theme-toggle__icon--sun {
    display: none;
  }

  html:not([data-theme="light"]) .dt-theme-toggle__icon--moon {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   2. Reset / Base
-------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: var(--dt-font-sans);
}

body {
  margin: 0;
  min-height: 100vh;
  background: hsl(var(--dt-background));
  color: hsl(var(--dt-foreground));
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* --------------------------------------------------------------------------
   3. Layout
-------------------------------------------------------------------------- */
.dt-site {
  min-height: 100vh;
  background:
            radial-gradient(circle at top right, hsl(var(--dt-accent) / 0.14), transparent 26%),
            hsl(var(--dt-background));
}

.dt-container {
  max-width: 48rem;
  margin-inline: auto;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .dt-container {
    padding-block: 5rem;
  }
}

.dt-header {
  margin-bottom: 4rem;
}

.dt-page-header {
  margin-bottom: 3rem;
}

.dt-section {
  margin-bottom: 3rem;
}

.dt-section--large {
  margin-bottom: 4rem;
}

.dt-section-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.disclaimer {
  text-align: right !important;
}

.dt-footer {
  margin-top: 5rem;
  border-top: 1px solid hsl(var(--dt-border));
}

.dt-footer__inner {
  max-width: 48rem;
  margin-inline: auto;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: hsl(var(--dt-muted-foreground));
}

.dt-footer a:hover {
  color: hsl(var(--dt-foreground));
}

/* --------------------------------------------------------------------------
   4. Typography
-------------------------------------------------------------------------- */
.dt-title {
  margin: 0;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .dt-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.dt-title--page {
  margin-bottom: 2rem;
}

.dt-intro {
  max-width: 32rem;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-intro svg {
  width: 0.875rem;
  height: 0.875rem;
  display: inline;
  margin-right: 0.15rem;
  position: relative;
  top: 0.15rem;
}

.dt-excerpt {
  margin: 1rem 0 0;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-date {
  font-family: var(--dt-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-prose {
  max-width: none;
  font-size: 0.875rem;
  line-height: 1.625;
}

.dt-prose > * + * {
  margin-top: 1.5rem;
}

.dt-prose h2 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.dt-prose p,
.dt-prose li {
  color: hsl(var(--dt-muted-foreground));
}

.dt-prose a {text-decoration: underline; text-underline-offset: 0.3rem;}

/* --------------------------------------------------------------------------
   5. Links / Navigation
-------------------------------------------------------------------------- */
.dt-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: hsl(var(--dt-muted-foreground));
  transition: color 150ms ease;
}

.dt-back-link:hover {
  color: hsl(var(--dt-foreground));
}

.dt-back-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

.dt-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--dt-border));
  font-size: 0.875rem;
}

.dt-post-nav a {
  color: hsl(var(--dt-muted-foreground));
  transition: color 150ms ease;
}

.dt-post-nav a:hover {
  color: hsl(var(--dt-foreground));
}

/* --------------------------------------------------------------------------
   6. Cards
-------------------------------------------------------------------------- */
.dt-card {
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background: hsl(var(--dt-card));
}

.dt-card--padded {
  padding: 1rem;
}

@media (min-width: 768px) {
  .dt-card--padded {
    padding: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   7. Metrics
-------------------------------------------------------------------------- */
.dt-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .dt-metric-grid {
    grid-template-columns: grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  }
}

.dt-metric {
  display: grid;
}

.dt-metric__label {
  margin: 0;
  margin-left: 1.5rem;
  font-size: 0.6rem;
  line-height: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-metric__value {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--dt-font-mono);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: hsl(var(--dt-muted-foreground));
}

@media (max-width: 640px) {
  .dt-metric__value {
    font-size: 1.15rem;
  }
}

.dt-metric__value svg {
  width: 1rem;
  height: 1rem;
}

.dt-metric__value--positive {
  color: hsl(var(--dt-accent));
}

.dt-metric__value--negative {
  color: hsl(var(--dt-destructive));
}

/* --------------------------------------------------------------------------
   8. Chart
-------------------------------------------------------------------------- */
.dt-chart-card {
  width: 100%;
  height: auto;
}

.dt-chart-placeholder {
  width: 100%;
  height: auto;
}

.dt-chart-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   9. Update List
-------------------------------------------------------------------------- */
.dt-update-list {
  display: grid;
}

.dt-update-item {
  display: block;
  margin-inline: -1rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid hsl(var(--dt-border));
  border-radius: 0.25rem;
  transition: background-color 150ms ease;
}

.dt-update-item:last-child {
  border-bottom: 0;
}

.dt-update-item:hover {
  background: hsl(var(--dt-muted) / 0.3);
}

.dt-update-item__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dt-update-item__content {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}

.dt-update-item__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dt-update-item__title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  transition: color 150ms ease;
}

.dt-update-item:hover .dt-update-item__title {
  color: hsl(var(--dt-accent));
}

.dt-update-item__excerpt {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-update-item__side {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: right;
}

.dt-update-item__performance {
  font-family: var(--dt-font-mono);
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: hsl(var(--dt-muted-foreground));
}

.dt-update-item__performance--positive {
  color: hsl(var(--dt-accent));
}

.dt-update-item__performance--negative {
  color: hsl(var(--dt-destructive));
}

.dt-update-item__arrow {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--dt-muted-foreground));
  transition: color 150ms ease;
}

.dt-update-item:hover .dt-update-item__arrow {
  color: hsl(var(--dt-foreground));
}

.dt-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 0.25rem;
  background: hsl(var(--dt-muted));
  padding: 0.125rem 0.375rem;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-comment-count {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  color: hsl(var(--dt-muted-foreground));
}

.dt-comment-count svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 640px) {
  .dt-update-item__inner {
    display: grid;
  }

  .dt-update-item__side {
    justify-content: space-between;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   10. Tables
-------------------------------------------------------------------------- */
.dt-table-wrap {
  overflow-x: auto;
}

.dt-table th,
.dt-table td {
  padding: 0.5rem;
  vertical-align: middle;
  border-bottom: 1px solid hsl(var(--dt-border));
}

.dt-table tr:last-child td {
  border-bottom: 0;
}

.dt-table th {
  height: 2.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-table th.sum {border-bottom: 0;}

.dt-table td {
  font-size: 0.875rem;
}

.dt-table .is-number,
.dt-table .is-money {
  text-align: right;
  font-family: var(--dt-font-mono);
}

.dt-table .is-strong {
  font-weight: 500;
}

.dt-table .is-positive {
  color: hsl(var(--dt-accent));
}

.dt-table .is-negative {
  color: hsl(var(--dt-destructive));
}

.dt-security-name {
  font-weight: 500;
}

.dt-security-ticker {
  margin-left: 0.375rem;
  font-family: var(--dt-font-mono);
  font-size: 0.75rem;
  color: hsl(var(--dt-muted-foreground));
}

.dt-security-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dt-security-inline__logo {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  background: hsl(var(--dt-muted));
}

.dt-transaction-type {
  display: inline-flex;
  align-items: center;
  border: 1px solid hsl(var(--dt-border));
  border-radius: calc(var(--dt-radius) - 2px);
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.dt-transaction-type--buy {
  border-color: hsl(var(--dt-accent) / 0.2);
  background: hsl(var(--dt-accent) / 0.1);
  color: hsl(var(--dt-accent));
}

.dt-transaction-type--sell {
  border-color: hsl(var(--dt-destructive) / 0.2);
  background: hsl(var(--dt-destructive) / 0.1);
  color: hsl(var(--dt-destructive));
}

@media (max-width: 640px) {
  .dt-table td {
  font-size: 0.75rem;
  }
  .dt-table th,
  .dt-table th.is-number,
  .dt-table th.is-money {
  font-size: 0.625rem   
  }
	.dt-table th.sum {border-bottom: 0;}
}

/* --------------------------------------------------------------------------
   11. Dividends
-------------------------------------------------------------------------- */
.dt-dividend-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .dt-dividend-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  }
}

.dt-dividend-summary__item {
  display: grid;
}

.dt-dividend-summary__label {
  margin: 0;
  font-size: 0.6rem;
  line-height: 0.75rem
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-dividend-summary__value {
  margin: 0;
  font-family: var(--dt-font-mono);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. Comments
-------------------------------------------------------------------------- */
.dt-comments {
  display: grid;
  gap: 2rem;
}

.dt-comment-list {
  display: grid;
  gap: 1.25rem;
}

.dt-comment {
  display: flex;
  gap: 0.75rem;
}

.dt-comment__avatar {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  flex-shrink: 0;
  overflow: hidden;
  background: hsl(var(--dt-muted));
}

.dt-comment__avatar-img,
.dt-comment__avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

.dt-comment__avatar-img {
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.dt-comment__avatar-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--dt-muted-foreground));
  font-size: 0.75rem;
  font-weight: 600;
}

.dt-comment__avatar.is-fallback .dt-comment__avatar-img {
  display: none;
}

.dt-comment__body {
  flex: 1;
  min-width: 0;
}

.dt-comment__meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.dt-comment__author {
  font-size: 0.875rem;
  font-weight: 600;
}

.dt-comment__date {
  font-family: var(--dt-font-mono);
  font-size: 0.75rem;
  color: hsl(var(--dt-muted-foreground));
}

.dt-comment__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.dt-comment-form__field {
  margin: 0;
}

.dt-comment-form__field--full,
.dt-comment-form .comment-form-cookies-consent,
.dt-comment-form .form-submit {
  grid-column: 1 / -1;
}

.dt-comment-form .comment-form-cookies-consent {
  font-size: 0.875rem;
  color: hsl(var(--dt-muted-foreground));
}

@media (max-width: 640px) {
  .dt-comment-form {
    grid-template-columns: 1fr;
  }
}

.dt-comment-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .dt-comment-form__row {
    grid-template-columns: 1fr;
  }
}

.dt-input,
.dt-textarea {
  width: 100%;
  border: 1px solid hsl(var(--dt-input));
  border-radius: calc(var(--dt-radius) - 2px);
  background: transparent;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  color: hsl(var(--dt-foreground));
  font-size: 0.875rem;
}

.dt-input {
  height: 2.25rem;
  padding: 0.25rem 0.75rem;
}

.dt-textarea {
  min-height: 60px;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.dt-input::placeholder,
.dt-textarea::placeholder {
  color: hsl(var(--dt-muted-foreground));
}

.dt-input:focus,
.dt-textarea:focus {
  outline: 1px solid hsl(var(--dt-primary));
  outline-offset: 0;
}

.dt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  height: 2rem;
  border: 0;
  border-radius: calc(var(--dt-radius) - 2px);
  padding-inline: 0.75rem;
  background: hsl(var(--dt-primary));
  color: hsl(var(--dt-primary-foreground));
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 150ms ease;
}

.dt-button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   13. Utilities
-------------------------------------------------------------------------- */
.dt-text-positive {
  color: hsl(var(--dt-accent));
}

.dt-text-negative {
  color: hsl(var(--dt-destructive));
}

.dt-text-muted {
  color: hsl(var(--dt-muted-foreground));
}

.dt-font-mono {
  font-family: var(--dt-font-mono);
}

/* --------------------------------------------------------------------------
   13. Chart
-------------------------------------------------------------------------- */

.dt-chart-placeholder {
  height: 100%;
  width: 100%;
}

.dt-chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.dt-chart-grid {
  stroke: hsl(var(--dt-border));
  stroke-dasharray: 3 3;
  stroke-width: 1;
}

.dt-chart-axis {
  fill: hsl(var(--dt-muted-foreground));
  font-family: var(--dt-font-sans);
  font-size: 11px;
}

.dt-chart-axis--y {
  text-anchor: end;
  dominant-baseline: middle;
}

.dt-chart-axis--x {
  text-anchor: middle;
}

.dt-chart-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dt-chart-dot.is-negative {
  fill: hsl(var(--dt-destructive));
}

.dt-chart-dot {
  fill: hsl(var(--dt-accent));

  stroke-width: 1;
}

/* --------------------------------------------------------------------------
   13. Reading List
-------------------------------------------------------------------------- */


.dt-reading-link {
  border-bottom: 1px solid hsl(var(--dt-border));
  padding: 0.5rem 0;
}

.dt-reading-link:last-child {
  border-bottom: none;
  padding: 0.5rem 0 0 0;
}

.dt-reading-link__intro {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-reading-link__link {
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--dt-font-mono);
  gap: 0.375rem;
}

.dt-reading-link__link:hover {
  text-decoration: underline;
}

.dt-reading-link__link svg {
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 0.2rem;
}
	
.dt-error {
  max-width: 40rem;
}

.dt-error__title {
  margin-top: 0.5rem;
}

.dt-error__text {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-error__card {
  margin-top: 2rem;
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background: hsl(var(--dt-card));
  padding: 1.5rem;
}

.dt-error__card p {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-error__chart {
  height: 8rem;
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
}

.dt-error__chart span {
  display: block;
  width: 2.25rem;
  border-radius: 999px 999px 0 0;
  background: hsl(var(--dt-muted));
}

.dt-error__chart span:nth-child(1) {
  height: 70%;
}

.dt-error__chart span:nth-child(2) {
  height: 48%;
}

.dt-error__chart span:nth-child(3) {
  height: 26%;
  background: hsl(var(--dt-destructive) / 0.22);
}

.dt-error__chart span:nth-child(4) {
  height: 38%;
}

.dt-error__chart span:nth-child(5) {
  height: 18%;
  background: hsl(var(--dt-destructive) / 0.35);
}

.dt-error__actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dt-error__link {
  font-size: 0.875rem;
  color: hsl(var(--dt-muted-foreground));
  transition: color 150ms ease;
}

.dt-error__link:hover {
  color: hsl(var(--dt-foreground));
}
	
.dt-allocation-pie {
  margin: 3rem 0;
}

.dt-allocation-pie__card {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 2.25rem;
  align-items: center;
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background: hsl(var(--dt-card));
  padding: 1.5rem;
}

.dt-allocation-pie__chart {
  width: 100%;
  max-width: 18rem;
  margin-inline: auto;
}

.dt-allocation-pie__chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.dt-allocation-pie__legend {
  display: grid;
  gap: 0.875rem;
}

.dt-allocation-pie__legend-item {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.25;
}

.dt-allocation-pie__dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 999px;
  background: var(--dt-pie-color);
}

.dt-allocation-pie__security {
  min-width: 0;
  color: hsl(var(--dt-foreground));
  font-weight: 500;
}

.dt-allocation-pie__security a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

.dt-allocation-pie__security a:hover {
  color: hsl(var(--dt-accent));
}

.dt-allocation-pie__value {
  font-family: var(--dt-font-mono);
  font-weight: 700;
  color: hsl(var(--dt-accent));
  white-space: nowrap;
  letter-spacing: -0.02em;
}

@media (max-width: 640px) {
  .dt-allocation-pie__card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dt-allocation-pie__chart {
    max-width: 15rem;
  }

  .dt-allocation-pie__legend {
    gap: 0.75rem;
  }

  .dt-allocation-pie__legend-item {
    grid-template-columns: 0.875rem minmax(0, 1fr) auto;
    gap: 0.625rem;
    font-size: 0.875rem;
  }

  .dt-allocation-pie__dot {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.dt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.25rem;
  background: hsl(var(--dt-muted));
  padding: 0.125rem 0.375rem;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.dt-badge--update {
  background: hsl(var(--dt-accent) / 0.1);
  color: hsl(var(--dt-accent));
}

.dt-badge--article {
  background: hsl(var(--dt-muted));
  color: hsl(var(--dt-muted-foreground));
}

.dt-badge--category {
  background: hsl(var(--dt-secondary) / 0.12);
  color: hsl(var(--dt-secondary));
}

.dt-badge--disclaimer {
  background: hsl(var(--dt-destructive) / 0.12);
  color: hsl(var(--dt-destructive));
}
	
	.dt-update-item__performance--article {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}
	
	.dt-disclaimer {
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background: hsl(var(--dt-card));
  padding: 1rem;
}

.dt-disclaimer p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-disclaimer-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid hsl(var(--dt-destructive) / 0.22);
        border-radius: 999px;
        background: hsl(var(--dt-destructive) / 0.12);
        color: hsl(var(--dt-destructive));
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        white-space: nowrap;
        line-height: normal;
    }

.ig-slide-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.dt-pagination {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dt-pagination .page-numbers {
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.625rem;
  border: 1px solid hsl(var(--dt-border));
  border-radius: calc(var(--dt-radius) - 2px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: hsl(var(--dt-muted-foreground));
  background: hsl(var(--dt-card));
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.dt-pagination .page-numbers:hover {
  color: hsl(var(--dt-foreground));
  border-color: hsl(var(--dt-foreground) / 0.25);
}

.dt-pagination .page-numbers.current {
  background: hsl(var(--dt-primary));
  border-color: hsl(var(--dt-primary));
  color: hsl(var(--dt-primary-foreground));
}

.dt-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  min-width: auto;
}

@font-face {
  font-family: "Indiana Jonas";
  src: url("./assets/fonts/Indiana-Jonas-48ip.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.dt-tag-archive {
  text-align: center;
}

.dt-tag-archive__header {
  margin-bottom: 4rem;
}

.dt-tag-archive__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-tag-archive__title {
  margin: 0;
  -webkit-text-stroke: 1px hsl(var(--dt-foreground));
  font-family: "Indiana Jonas", var(--dt-font-sans);
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 1.2;
  text-align: center;
  overflow: visible;
}

.dt-category-archive__title {
  margin: 0;
  -webkit-text-stroke: 1px hsl(var(--dt-foreground));
  font-family: var(--dt-font-sans);
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  overflow: visible;
}

.dt-tag-archive__title:after {text-shadow: -10px 10px 0px black;}

.dt-title-line {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.2rem;

  background: linear-gradient(181deg, #f45536 12%, #ffd34f 68%, #f2f6f4 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.dt-title-line::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: -1;
    color: rgba(0, 0, 0, 0.28);
    -webkit-text-fill-color: rgba(0, 0, 0, 0.28);
    text-shadow: -0.6rem 0.4rem 0 rgba(0, 0, 0, 0.8);
    pointer-events: none;
}
.dt-tag-archive__title {
    position: relative;
    z-index: 0;
}

.dt-tag-archive__description {
  max-width: 34rem;
  margin: 1.5rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: hsl(var(--dt-muted-foreground));
}

.dt-tag-archive__list {
  text-align: left;
}

.dt-cta-card {
  margin: 3rem 0;
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background:
    radial-gradient(circle at top right, hsl(var(--dt-accent) / 0.12), transparent 34%),
    hsl(var(--dt-card));
  padding: 1.5rem;
}

.dt-cta-card__content {
  max-width: 38rem;
}

.dt-cta-card__headline {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: hsl(var(--dt-foreground));
}

.dt-cta-card__text {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--dt-muted-foreground));
}

.dt-cta-card__action {
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .dt-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
  }

  .dt-cta-card__action {
    margin-top: 0;
  }
}

.dt-security-feature__hero {
  position: relative;
  margin-bottom: 3rem;
  border-radius: var(--dt-radius);
  overflow: hidden;
}

.dt-security-feature__hero.has-background {
  padding: 2rem;
  border: 1px solid hsl(var(--dt-border));
  background: hsl(var(--dt-card));
}

.dt-security-feature__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.08);
  opacity: 0.82;
}

.dt-security-feature__hero.has-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      hsl(var(--dt-card) / 0.8) 0%,
      hsl(var(--dt-card) / 0.6) 46%,
      hsl(var(--dt-card) / 0.4) 100%
    ),
    radial-gradient(
      circle at top right,
      hsl(var(--dt-accent) / 0.18),
      transparent 44%
    );
}

.dt-security-feature__hero > *:not(.dt-security-feature__bg) {
  position: relative;
  z-index: 2;
}

.dt-security-feature__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-security-feature__eyebrow span {
  color: hsl(var(--dt-accent));
}

.dt-security-feature__headline-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.dt-security-feature__logo {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: hsl(var(--dt-muted));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dt-security-feature__logo .dt-security-inline__logo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.dt-security-feature__title {
  margin: 0;
}

.dt-security-feature__subtitle {
  margin: 0.875rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--dt-muted-foreground));
}

.dt-security-feature__facts {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dt-security-feature__fact {
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background: hsl(var(--dt-card));
  padding: 1rem;
}

.dt-security-feature__fact span {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-security-feature__fact strong {
  display: block;
  font-family: var(--dt-font-mono);
  font-size: 0.9375rem;
  color: hsl(var(--dt-foreground));
}

@media (max-width: 640px) {
  .dt-security-feature__eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.375rem;
  }

  .dt-security-feature__headline-row {
    grid-template-columns: 1fr;
  }

  .dt-security-feature__logo {
    width: 3.5rem;
    height: 3.5rem;
  }

  .dt-security-feature__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dt-security-feature__hero.has-background {
    padding: 1.25rem;
  }

  .dt-security-feature__hero.has-background::after {
    background:
      linear-gradient(
        180deg,
        hsl(var(--dt-card) / 0.8) 0%,
        hsl(var(--dt-card) / 0.6) 62%,
        hsl(var(--dt-card) / 0.4) 100%
      ),
      radial-gradient(
        circle at top right,
        hsl(var(--dt-accent) / 0.16),
        transparent 48%
      );
  }
}

.dt-security-archive__hero {
  margin-bottom: 3rem;
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background:
    radial-gradient(circle at top right, hsl(var(--dt-accent) / 0.12), transparent 36%),
    hsl(var(--dt-card));
  padding: 1.5rem;
}

.dt-security-archive__headline-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.dt-security-archive__logo {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: hsl(var(--dt-muted));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dt-security-archive__logo .dt-security-inline__logo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.dt-security-archive__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--dt-accent));
}

.dt-security-archive__title {
  margin: 0;
}

.dt-security-archive__subtitle {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--dt-muted-foreground));
}

.dt-security-archive__description {
  margin-top: 1.5rem;
  max-width: 46rem;
  color: hsl(var(--dt-muted-foreground));
}

.dt-security-archive__description p {
  margin-bottom: 0;
}

.dt-security-archive__facts {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dt-security-archive__fact {
  border: 1px solid hsl(var(--dt-border));
  border-radius: calc(var(--dt-radius) - 0.25rem);
  background: hsl(var(--dt-background) / 0.55);
  padding: 1rem;
}

.dt-security-archive__fact span {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--dt-muted-foreground));
}

.dt-security-archive__fact strong {
  display: block;
  font-family: var(--dt-font-mono);
  font-size: 0.9375rem;
  color: hsl(var(--dt-foreground));
}

.dt-security-feature-teaser {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background:
    radial-gradient(circle at top right, hsl(var(--dt-accent) / 0.16), transparent 42%),
    hsl(var(--dt-card));
  color: inherit;
  text-decoration: none;
  padding: 1.5rem;
}

.dt-security-feature-teaser.has-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--dt-security-feature-teaser-bg);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.08);
  opacity: 0.28;
}

.dt-security-feature-teaser.has-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      hsl(var(--dt-card) / 0.98) 0%,
      hsl(var(--dt-card) / 0.88) 48%,
      hsl(var(--dt-card) / 0.62) 100%
    );
}

.dt-security-feature-teaser__content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.dt-security-feature-teaser__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--dt-accent));
}

.dt-security-feature-teaser__title {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: hsl(var(--dt-foreground));
}

.dt-security-feature-teaser__text {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: hsl(var(--dt-muted-foreground));
}

.dt-security-feature-teaser__link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--dt-accent));
}

.dt-security-feature-teaser:hover .dt-security-feature-teaser__link {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .dt-security-archive__hero {
    padding: 1.25rem;
  }

  .dt-security-archive__headline-row {
    grid-template-columns: 1fr;
  }

  .dt-security-archive__logo {
    width: 3.5rem;
    height: 3.5rem;
  }

  .dt-security-archive__facts {
    grid-template-columns: 1fr;
  }

  .dt-security-feature-teaser {
    padding: 1.25rem;
  }

  .dt-security-feature-teaser.has-background::after {
    background:
      linear-gradient(
        180deg,
        hsl(var(--dt-card) / 0.98) 0%,
        hsl(var(--dt-card) / 0.9) 66%,
        hsl(var(--dt-card) / 0.72) 100%
      );
  }
}

.dt-author-box {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background:
    radial-gradient(circle at top right, hsl(var(--dt-accent) / 0.12), transparent 38%),
    hsl(var(--dt-card));
  padding: 1.25rem;
}

.dt-author-box__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  overflow: hidden;
  background: hsl(var(--dt-muted));
  border: 1px solid hsl(var(--dt-border));
  flex-shrink: 0;
}

.dt-author-box__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dt-author-box__content {
  min-width: 0;
}

.dt-author-box__kicker {
  margin: 0 0 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--dt-accent));
}

.dt-author-box__name {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: hsl(var(--dt-foreground));
}

.dt-author-box__text {
  margin: 0.625rem 0 0;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: hsl(var(--dt-muted-foreground));
}

.dt-author-box__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.875rem;
}

.dt-author-box__links a {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: hsl(var(--dt-accent));
  text-decoration: none;
}

.dt-author-box__links a:hover {
  text-decoration: underline;
}

.dt-author-box--home {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.dt-author-box--single {
  margin-top: 3rem;
}

@media (max-width: 640px) {
  .dt-author-box {
    grid-template-columns: 1fr;
    padding: 1.125rem;
  }

  .dt-author-box__avatar {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.dt-breadcrumbs {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  color: hsl(var(--dt-muted-foreground));
}

.dt-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dt-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.dt-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.375rem;
  color: hsl(var(--dt-border));
}

.dt-breadcrumbs a {
  color: hsl(var(--dt-muted-foreground));
  text-decoration: none;
  transition: color 150ms ease;
}

.dt-breadcrumbs a:hover {
  color: hsl(var(--dt-accent));
}

.dt-breadcrumbs span[aria-current="page"] {
  color: hsl(var(--dt-foreground));
  font-weight: 600;
}

@media (max-width: 640px) {
  .dt-breadcrumbs {
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
  }

  .dt-breadcrumbs__list {
    row-gap: 0.25rem;
  }

  .dt-breadcrumbs span[aria-current="page"] {
    max-width: 16rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.dt-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid hsl(var(--dt-border) / 0.7);
  background: hsl(var(--dt-background) / 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}

.dt-site-header__inner {
  width: min(100% - 2rem, var(--dt-container, 48rem));
  min-height: 4rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.dt-site-header__brand {
  justify-self: center;
  color: hsl(var(--dt-foreground));
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.dt-site-header__brand:hover {
  color: hsl(var(--dt-accent));
}

.dt-site-header__side {
  min-width: 2.5rem;
  display: flex;
  align-items: center;
}

.dt-site-header__side--left {
  justify-content: flex-start;
}

.dt-site-header__side--right {
  justify-content: flex-end;
}

.dt-site-header__side--left > * {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.dt-site-header__side--right > * {
  margin-right: 0 !important;
}

@supports not ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
  .dt-site-header {
    background: hsl(var(--dt-background) / 0.94);
  }
}

@media (max-width: 640px) {
  .dt-site-header__inner {
    width: min(100% - 1.5rem, var(--dt-container, 48rem));
    min-height: 3.5rem;
  }

  .dt-site-header__brand {
    font-size: 0.875rem;
  }
}

.dt-disclaimer-block {
  margin: 3rem 0;
  border: 1px solid hsl(var(--dt-border));
  border-radius: var(--dt-radius);
  background:
    radial-gradient(circle at top right, hsl(var(--dt-destructive) / 0.08), transparent 38%),
    hsl(var(--dt-card));
  padding: 1.25rem;
}

.dt-disclaimer-block__kicker {
  margin: 0 0 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--dt-destructive));
}

.dt-disclaimer-block__text {
  margin: 0;
  max-width: 54rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: hsl(var(--dt-muted-foreground));
}

.dt-disclaimer-block__text strong {
  color: hsl(var(--dt-foreground));
  font-weight: 700;
}

@media (max-width: 640px) {
  .dt-disclaimer-block {
    padding: 1.125rem;
  }

  .dt-disclaimer-block__text {
    font-size: 0.8125rem;
  }
}
/* --------------------------------------------------------------------------
   Utilities
-------------------------------------------------------------------------- */
.dt-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
