/**
 * FortniteLocker.gg — base + marketing / static layouts
 * Tokens: ./tokens.css (imported below).
 */

@import url("./tokens.css");
@import url("./ds-base.css");
@import url("./ux-responsive-base.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 400;
  /* Mínimo 16px — mejor lectura en móvil (antes bajaba a ~13px) */
  font-size: clamp(1rem, 0.2vw + 0.96rem, 1.0625rem);
  line-height: var(--leading-normal);
  color: var(--text);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition:
    color var(--duration) var(--ease-out),
    opacity var(--duration) var(--ease-out);
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ——— Layout ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg-elevated) 40%, var(--bg-deep)) 0%,
    var(--bg-deep) 72%
  );
}

/* Same accent line as .site-footer::before — primary center, fades to edges */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--primary-line) 70%, transparent) 22%,
    color-mix(in srgb, var(--primary) 75%, transparent) 50%,
    color-mix(in srgb, var(--primary-line) 70%, transparent) 78%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo {
  font-family: var(--font-body);
  font-size: var(--text-ui);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary);
  box-shadow: none;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Legacy marketing/static nav — do not apply to `.nav--app` (SPA shell matches React Layout) */
.nav:not(.nav--app) a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-ui);
}

.nav:not(.nav--app) a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--text) 6%, transparent);
}

.nav:not(.nav--app) a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-dim);
}

.nav--split {
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  min-width: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  width: var(--container);
  margin: 0 auto;
  padding: var(--space-8) 0 calc(var(--space-8) * 2);
}

/* ——— Hero (inner pages) ——— */

.hero:not(.hero--home) {
  text-align: center;
  padding: var(--space-12) max(var(--space-4), env(safe-area-inset-right, 0px)) var(--space-10)
    max(var(--space-4), env(safe-area-inset-left, 0px));
  max-width: var(--container-prose);
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-3);
}

.hero:not(.hero--home) .hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  letter-spacing: 0.3px;
  color: var(--text);
}

@media (min-width: 768px) {
  .hero:not(.hero--home) .hero__title {
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
  }
}

.hero:not(.hero--home) .hero__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-base);
}

.hero:not(.hero--home) .hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ——— Hero home (landing) ——— */

.hero--home {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  background: var(--bg-deep);
}

.hero__bg {
  display: none;
}

.hero__bg-bloom {
  display: none;
}

.hero__bg-mesh {
  display: none;
}

.hero--home .hero__inner {
  position: relative;
  z-index: 1;
  width: min(67.5rem, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 5vw, 3.25rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero--home .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.92fr);
    gap: 3rem 3.5rem;
    align-items: start;
  }
}

.hero__copy {
  min-width: 0;
}

.hero--home .hero__eyebrow {
  margin-bottom: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.14em;
}

.hero__title--home {
  font-family: var(--font-hero);
  font-size: clamp(2.25rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.15rem;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero__title-line {
  display: block;
  margin-top: 0.2em;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.hero__lead--home {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.hero__statstrip {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  margin: 1.65rem 0 0;
  padding: var(--space-3) var(--space-4);
  max-width: 26rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--text) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.hero__statstrip-item {
  flex: 1 1 90px;
  min-width: 0;
  text-align: center;
  padding: 0.15rem 0.35rem;
}

.hero__statstrip-value {
  display: block;
  font-family: var(--font-hero);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero__statstrip-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero__statstrip-divider {
  width: 1px;
  align-self: stretch;
  min-height: 2.8rem;
  background: color-mix(in srgb, var(--border) 80%, transparent);
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .hero__statstrip {
    flex-direction: column;
  }

  .hero__statstrip-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .hero__statstrip-item {
    padding: var(--space-2) 0;
  }
}

.hero__actions--home {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  align-items: center;
  justify-content: flex-start;
}

.btn--hero {
  padding: 0.78rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text) 12%, transparent);
}

.btn--hero:hover {
  filter: brightness(1.06);
}

.btn--hero .btn__label {
  position: relative;
  z-index: 1;
}

.btn--hero-secondary {
  padding: 0.72rem 1.2rem;
}

.hero__subnav {
  margin: 1.35rem 0 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.hero__subnav a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s ease;
}

.hero__subnav a:hover {
  color: var(--primary);
}

.hero__subnav-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--text) 20%, transparent);
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem 1.25rem;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-inset-top), var(--shadow-card);
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

@media (hover: hover) and (min-width: 960px) {
  .hero-card:hover {
    transform: translateY(-4px);
    box-shadow:
      var(--shadow-inset-top),
      0 24px 48px color-mix(in srgb, var(--bg-deep) 50%, transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card {
    transition: none;
  }

  .hero-card:hover {
    transform: none;
  }
}

.hero-card__edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 1;
}

.hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-card__pill {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: color-mix(in srgb, var(--text) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.hero-card__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.hero-slot {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--text) 2%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-top: 3px solid var(--slot-rim, color-mix(in srgb, var(--border) 120%, transparent));
  box-shadow: var(--shadow-inset-top);
}

a.hero-slot {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  outline: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

a.hero-slot:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

a.hero-slot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hero-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.35rem;
  display: block;
  pointer-events: none;
}

.hero-slot--empty {
  opacity: 0.45;
  background: color-mix(in srgb, var(--text) 3%, transparent);
  border-style: dashed;
}

.hero-slot--legendary {
  --slot-rim: var(--rarity-legendary);
}
.hero-slot--epic {
  --slot-rim: var(--rarity-epic);
}
.hero-slot--rare {
  --slot-rim: var(--rarity-rare);
}
.hero-slot--uncommon {
  --slot-rim: var(--rarity-uncommon);
}
.hero-slot--common {
  --slot-rim: var(--rarity-common);
}

@media (prefers-reduced-motion: reduce) {
  a.hero-slot:hover {
    transform: none;
  }
}

.hero-card__note {
  margin: var(--space-4) 0 0;
  font-size: 0.6875rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

@media (max-width: 719px) {
  .hero__copy {
    text-align: center;
  }

  .hero__lead--home {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__statstrip {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions--home {
    justify-content: center;
  }

  .hero__subnav {
    justify-content: center;
  }
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: color-mix(in srgb, var(--bg-deep) 94%, var(--text));
  background: var(--primary);
  box-shadow: none;
  font-weight: 700;
}

.btn--primary:hover {
  background: var(--primary-hover);
}

.btn--ghost {
  color: var(--text);
  background: var(--bg-control);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--bg-control-hover);
  border-color: color-mix(in srgb, var(--border) 120%, transparent);
}

.btn--outline {
  color: var(--text);
  background: transparent;
  border-color: color-mix(in srgb, var(--border) 140%, transparent);
}

.btn--outline:hover {
  background: color-mix(in srgb, var(--text) 5%, transparent);
  border-color: color-mix(in srgb, var(--border) 220%, transparent);
}

.btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ——— Cards & locker grid ——— */

.section-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.locker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .locker-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

.card {
  position: relative;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: 0 0 0 transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.card__media {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  display: grid;
  place-items: center;
  padding: var(--space-3);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px color-mix(in srgb, var(--bg-deep) 60%, transparent));
}

.card__body {
  padding: 0.65rem 0.75rem 0.85rem;
}

.card__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__meta {
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Rarity ring on card (optional class on .card) */
.card--rarity-common {
  --card-rarity: var(--rarity-common);
}
.card--rarity-uncommon {
  --card-rarity: var(--rarity-uncommon);
}
.card--rarity-rare {
  --card-rarity: var(--rarity-rare);
}
.card--rarity-epic {
  --card-rarity: var(--rarity-epic);
}
.card--rarity-legendary {
  --card-rarity: var(--rarity-legendary);
}
.card--rarity-mythic {
  --card-rarity: var(--rarity-mythic);
}

.card[class*="card--rarity-"]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--card-rarity);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

/* ——— Badges ——— */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  background: color-mix(in srgb, var(--text) 8%, transparent);
  color: var(--text-muted);
}

.badge--accent {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}

/* ——— Stats strip ——— */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin: var(--space-8) 0 var(--space-10);
}

.stat {
  min-width: 120px;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--text) 4%, transparent);
  border: 1px solid var(--border);
  text-align: center;
}

.stat__value {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stat__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* ——— Footer ——— */

.site-footer {
  --footer-text: color-mix(in srgb, var(--text-muted) 55%, var(--text));
  margin-top: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-10) var(--space-5) max(2.75rem, env(safe-area-inset-bottom));
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg-elevated) 40%, var(--bg-deep)) 0%,
    var(--bg-deep) 72%
  );
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.55;
  font-weight: 500;
  color: var(--footer-text);
  text-shadow: none;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--primary-line) 70%, transparent) 22%,
    color-mix(in srgb, var(--primary) 75%, transparent) 50%,
    color-mix(in srgb, var(--primary-line) 70%, transparent) 78%,
    transparent 100%
  );
  opacity: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .site-footer {
    padding: var(--space-12) var(--space-6) calc(var(--space-12) + var(--space-1));
  }
}

.site-footer__inner {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: var(--space-5) var(--space-10);
  }
}

.site-footer__copy {
  margin: 0;
  max-width: var(--container-narrow);
  color: var(--footer-text);
  letter-spacing: 0.01em;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
}

@media (min-width: 768px) {
  .site-footer__legal {
    justify-content: flex-end;
  }
}

.site-footer a {
  color: color-mix(in srgb, var(--text-muted) 45%, var(--text));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: var(--text);
}

.site-footer a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ——— Utilities ——— */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* ——— Cosmetics page ——— */

.cosmetics-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3) var(--space-4);
  margin-bottom: var(--space-2);
}

.cosmetics-count {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cosmetics-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-6);
}

.error-state {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

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

a.card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Subtle scrollbars on any page that loads main.css + tokens */
html {
  scrollbar-color: color-mix(in srgb, var(--text-muted) 42%, transparent) transparent;
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--text-muted) 45%, transparent);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--primary) 50%, transparent);
  background-clip: padding-box;
}
