/* === HERO STRIP PINK === */
.hero-strip {
  background: var(--pink);
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 40px, rgba(255, 255, 255, .08) 40px, rgba(255, 255, 255, .08) 80px);
}

.hero-strip h1 {
  color: #fff
}

.hero-strip p {
  color: rgba(255, 255, 255, .85)
}

/* === COOKIE TYPE CARDS === */
.cookie-cards {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.ccard {
  background: var(--dark3);
  border-radius: var(--r);
  padding: 20px;
  border: 1.5px solid rgba(255, 255, 255, .07);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.ccard--required {
  border-left: 4px solid var(--green-lt)
}

.ccard--analytics {
  border-left: 4px solid var(--green-y)
}

.ccard--marketing {
  border-left: 4px solid var(--pink)
}

.ccard--prefs {
  border-left: 4px solid var(--pink-lt)
}

.ccard__ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(255, 255, 255, .06);
  flex-shrink: 0;
}

.ccard__body h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px
}

.ccard__body p {
  font-size: 14px;
  color: rgba(237, 237, 237, .65);
  line-height: 1.6
}

.ccard__footer {
  grid-column: 1/-1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ccard__badge {
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-h);
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge--req {
  background: rgba(149, 193, 31, .18);
  color: var(--green-lt)
}

.badge--opt {
  background: rgba(255, 255, 255, .08);
  color: rgba(237, 237, 237, .45)
}

.badge--session {
  background: rgba(231, 28, 119, .12);
  color: var(--pink-lt)
}

.badge--persist {
  background: rgba(187, 209, 81, .12);
  color: var(--green-y)
}

/* === COOKIE TABLE === */
.ck-table-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1.5px solid rgba(255, 255, 255, .08)
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px
}

thead th {
  background: var(--dark3);
  text-align: left;
  padding: 12px 14px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(237, 237, 237, .45);
  border-bottom: 1.5px solid rgba(255, 255, 255, .08);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

tbody tr:last-child {
  border-bottom: none
}

tbody tr:hover {
  background: rgba(255, 255, 255, .02)
}

td {
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(237, 237, 237, .7)
}

td:first-child {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--white);
  font-size: 14px
}

.td-type {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-h);
  text-transform: uppercase;
  letter-spacing: .5px
}

.td-type--req {
  background: rgba(149, 193, 31, .18);
  color: var(--green-lt)
}

.td-type--opt {
  background: rgba(255, 255, 255, .08);
  color: rgba(237, 237, 237, .4)
}

/* === UPDATE NOTE PINK === */
.update-note {
  background: var(--dark3);
  border-radius: var(--r);
  padding: 18px 20px;
  border-left: 4px solid var(--pink);
  font-size: 14px;
  color: rgba(237, 237, 237, .65);
}

.update-note strong {
  color: var(--pink-lt)
}

/* === MANAGE BOX === */
.manage-box {
  background: rgba(19, 165, 56, .08);
  border: 1.5px solid rgba(19, 165, 56, .25);
  border-radius: var(--r);
  padding: 20px 22px;
}

.manage-box h3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 17px;
  color: var(--green-lt);
  margin-bottom: 12px
}

.manage-box p {
  font-size: 14px;
  color: rgba(237, 237, 237, .7);
  margin-bottom: 10px
}

.manage-box p:last-child {
  margin-bottom: 0
}

.reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 50px;
  background: var(--green);
  color: #fff;
  border: none;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 3px 0 #0a7a27;
  transition: transform .12s, box-shadow .12s;
}

.reset-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #0a7a27
}

/* === BROWSER GRID === */
.browser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.browser-card {
  background: var(--dark3);
  border-radius: var(--r);
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, .07);
  font-size: 14px;
  color: rgba(237, 237, 237, .7);
}

.browser-card strong {
  display: block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px
}

.browser-card a {
  font-size: 13px
}