@layer custom { :root {
    --primary: 217 48% 19%;
    --primary-foreground: 0 0% 100%;
    --trust-gradient-from: 217 48% 19%;
    --background: 0 0% 100%;
    --foreground: 217 48% 19%;
    --font-sans: 'Averta Medium', sans-serif;
  }

/* General */
.trust-center-shell * {
  font-family: "AvertaStd-Regular", sans-serif;
}

/* Content Container */
.trust-center-shell {
    background: #ffffff;
    max-width: 1170px;
    margin: 0 auto !important;
    padding: 16px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.trust-center-shell .bg-background {
    background: transparent;
}
.trust-center-shell > section.bg-background:first-child {
  padding-top: 20px;
}
.trust-center-shell header.bg-background,
.trust-center-shell .bg-card {
  background: #FFFFFF;
}

/* Overview Card */
.trust-center-shell h1 + div {
  padding: 16px;
  border-radius: 12px;
  border: 1px #BCC1C9 solid;
}
.trust-center-shell h1 + div p {
  font-size: 1rem;
}

/* Tabs */
.trust-center-tabs {
    --card: 0deg 0% 100%;
}

[data-tc-overview-compliance] .space-y-2 {
    display: grid;
    grid-template-columns: 1fr; /* mobile default */
    gap: 0.5rem;
}

[data-tc-overview-compliance] .space-y-2 > button {
    border: 1px #192b4830 solid !important;
    margin: 0;
}

[data-tc-overview-compliance] .space-y-2 > button > .flex {
    flex-direction: column;
    gap: 0.5rem;
}

[data-tc-overview-compliance] .space-y-2 > button > .flex img {
    width: 90px !important;
    height: 90px !important;
}

[data-tc-overview-compliance] .space-y-2 > button > .flex > .flex {
    width: 100% !important;
    height: 160px !important; /* mobile default */
}

[data-tc-tabs-header] {
    border-bottom: 1px #192b4810 solid !important;
    padding: 0 !important;
}


[data-tc-tabs-header] button {
    border-radius: 0 !important;
    background: transparent !important;
    padding: 16px 24px !important;
    border-width: 0 !important;
}

[data-tc-tabs-header] button[data-state="active"] {
    border-bottom-width: 1px !important;
    font-weight: bold;
}

/* Desktop */
@media (min-width: 640px) {
    [data-tc-overview-compliance] .space-y-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    [data-tc-overview-compliance] .space-y-2 > button > .flex > .flex {
        height: 200px !important;
    }
  [data-tc-surface] > section.bg-background {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
}

[data-tc-surface] > section.bg-background .flex.flex-col.gap-3 {
    padding-left: 36px !important;
}
} }