.c-consent-overlay {
  padding: var(--s-sm) var(--s-md);
  background-color: var(--c-secondary-light);
  min-height: 100%;
  width: 100%;
}
.c-consent-overlay--podcast > div {
  display: grid;
  grid-template-columns: 3fr 4fr;
  grid-template-areas: "left right";
}
.c-consent-overlay--podcast > div .c-consent-overlay__heading,
.c-consent-overlay--podcast > div .c-consent-overlay__description {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: left;
}
.c-consent-overlay--podcast > div .c-consent-overlay__heading {
  font-size: var(--s-lg);
}
.c-consent-overlay--podcast > div .c-consent-overlay__switch-container {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: right;
}
.c-consent-overlay--podcast > div .c-consent-overlay__switch-container .c-switch {
  font-size: var(--s-sm);
  gap: 0.875rem;
}
.c-consent-overlay--video {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-consent-overlay--video > div {
  max-width: var(--w-base);
}
.c-consent-overlay.big {
  padding: var(--s-7xl) 13.75rem;
}
.c-consent-overlay.big .c-consent-overlay__switch-container .c-switch {
  gap: var(--s-lg);
}
.c-consent-overlay.big .c-consent-overlay__description {
  display: block;
}
.c-consent-overlay.big .c-consent-overlay--grid {
  padding: var(--s-3xl) 6.875rem var(--s-4xl);
}
.c-consent-overlay.big .c-consent-overlay--grid .c-consent-overlay__switch-container .c-switch {
  gap: 3.5rem;
}
.c-consent-overlay.big.c-consent-overlay--full {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-consent-overlay.big.c-consent-overlay--full > div {
  max-width: var(--w-base);
}
.c-consent-overlay.small .c-consent-overlay__heading {
  font-size: var(--s-lg);
}
.c-consent-overlay.small .c-consent-overlay__switch-container .c-switch {
  font-size: var(--s-sm);
  gap: 0.375rem;
}
.c-consent-overlay.small.c-consent-overlay--podcast > div {
  display: block;
}
.c-consent-overlay.small.c-consent-overlay--podcast .c-consent-overlay__switch-container .c-switch {
  gap: 0.375rem;
}
.c-consent-overlay__switch-container {
  display: flex;
}
.c-consent-overlay__switch-container .c-switch {
  gap: 0.625rem;
  align-items: unset;
}
.c-consent-overlay__heading {
  margin-bottom: var(--s-sm);
}
.c-consent-overlay__description {
  display: none;
  margin-bottom: var(--s-8xl);
  color: var(--c-grayscale-off-dark);
}
.c-consent-overlay--grid .c-consent-overlay__description {
  margin-bottom: var(--s-3xl);
}
.c-consent-overlay--grid .c-consent-overlay__switch-container .c-switch {
  gap: 0.375rem;
}