@media screen {
  @keyframes FADE-IN {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  :root {
    --docs-default-margin: 1rem;
  }

  docs-detail {

    display: grid;

    /* 'Reading Time' Subheadline */
    .reading-time {
      display: block;
      font-weight: 500;
      font-size: smaller;
      margin-block-end: 2rem;

      span {
        display: inline;
        font-weight: 300;
        font-size: smaller;
        letter-spacing: .06;
        padding-inline-start: .5rem;
      }
    }

    h2 {
      margin-block-start: 5rem;
    }
    aside + h2 {
      margin-block-start: 3rem;
    }
    h3 {
      color: #505050;
      font-size: 1.125rem;
      font-weight: bold;
      line-height: 1.3;
      margin-block-start: 2rem;
    }
    h4 {
      color: #505050;
      font-size: 1.0625rem;
      font-weight: bold;
      line-height: 1.3;
      margin-block: 2.5rem 1rem;
    }

    figure { 
      background: #fff;
      border: 1px solid #d9d9d9;
      border-radius: 4px;
      box-shadow:0 4px 15px rgba(0,0,0,.1);
      margin: 0 0 20px;
      padding: 7px;

      figcaption {
        align-items: center;
        background: #fff;
        border-top: 1px solid #d9d9d9;
        border-radius: 0 0 4px 4px;
        color: #5d7d9a;
        display: flex;
        justify-content: center;
        margin: 7px -7px -7px;
        padding: 7px;
        padding: .75rem 1rem;
      }

      & > a:after {
        display: none;
      }
      
      img {
        margin: 0 auto;
        display: block;
      }
    }

    iframe {
      border: 1px solid #e9e9e9;
      border-radius: 4px;
      box-shadow: 0 4px 15px rgba(0,0,0,.1);
      margin-block: var(--docs-default-margin);
      min-height: 400px;
      width: 100%;
    }

    p {
      margin-block: var(--docs-default-margin);
    }

    table {
      border-radius: 4px;
      border-spacing: 0;
      box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
      color: #074361;
      margin-block: var(--docs-default-margin);
      width: 100%;
    }
    tr:first-child { border-radius: 4px 4px 0 0; }
    tr:last-child { border-radius: 0 0 4px 4px; }
    th { padding:.5rem 1rem; } 
    tr:first-child > th:first-child { border-radius: 4px 0 0 0; }  
    tr:first-child > th:last-child { border-radius: 0 4px 0 0; }  
    tr:first-child > th[colspan] { border-radius: 4px 4px 0 0; }  
    th :last-child, td :last-child { margin-block-end: 0; }
    table tbody tr td:last-child { word-break: break-word; }
    th { 
      color: #fff;
      background: #006C8C;
      text-align: left;
    }
    td { 
      background: #fff;
      border: 1px solid #f3f3f3;
      border-block-end-color: #e9e9e9;
      font-size: .9375rem;
      padding: 1rem;
      vertical-align: top;
    }
    tr:first-child > td:first-child { border-radius: 0 0 0 4px; }  
    tr:first-child > td:last-child { border-radius: 0 0 4px 0; }  
    table.table-both td { border-width: 1px; }
    table.table-vert td { border-width: 0 1px; }
    table.table-horz td { border-width: 1px 0; }
    table a {
      background: none;
      color: #00baf0;
    }


    /* CTA HINT BOX */
    [class*="zc-hint"] {
      --icon-fill: #00baf0;
      background: #fff;
      border: 1px solid #d9d9d9;
      border-inline-start: 3px solid #00baf0;
      border-inline-end: 3px solid #00baf0;
      border-radius: 4px;
      box-sizing: border-box;
      font-size: .9375rem;
      position: relative;
      margin-block-end: 20px;
      padding: 10px 20px 10px 38px;

      p {
        margin: 0;
      }
      p + p {
        margin-block-start: var(--docs-default-margin);
      }
    }
    .zc-hint-error {
      --icon-fill: #dc1257;
      border-inline-start-color: #dc1257;
      border-inline-end-color: #dc1257;
    }
    .zc-hint-success {
      --icon-fill: #7da82b;
      border-inline-start-color: #7da82b;
      border-inline-end-color: #7da82b;
    }
    .zc-hint-warning {
      --icon-fill: rgb(247, 125, 5);
      border-inline-start-color: rgb(247, 125, 5);
      border-inline-end-color: rgb(247, 125, 5);
    }
    [class*="zc-hint"]>svg {
      height: 20px;
      left: 9px;
      position: absolute;
      top: 12px;
      width: 20px;
    }
    [class*="zc-hint"]>div> :last-child {
      margin-block-end: 0 !important;
    }

    [class*="zc-hint"] code {
      background: #f9f9f9;
    }


  }

}