/* Minification failed. Returning unminified contents.
(2,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,20): run-time error CSS1039: Token not allowed after unary operator: '-margin-top'
(13,23): run-time error CSS1039: Token not allowed after unary operator: '-margin-bottom'
(17,17): run-time error CSS1039: Token not allowed after unary operator: '-title-color'
(18,23): run-time error CSS1039: Token not allowed after unary operator: '-title-weight'
 */
.oembed-container {
  --title-color: #000;
  --title-weight: #400;
  --margin-top: 0px;
  --margin-bottom: 0px;
  clear: both;
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  width: 100%;
  position: relative;
  margin-top: var(--margin-top);
  margin-bottom: var(--margin-bottom);
}

  .oembed-container .oembed-title {
    color: var(--title-color);
    font-weight: var(--title-weight);
  }

  .oembed-container .oembed-resource {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .oembed-container .oembed-resource-blocker {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }

