:root {
    --foreground-color: #fff;
    --background-color: #000;

}

@font-face {
    font-family: 'LophiileItalicAd';
    src: url('/assets/fonts/LophiileItalicAd.woff2') format('woff2'),
        url('/assets/fonts/LophiileItalicAd.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.credit-link {
    text-decoration: none;
}

.credit-link:hover {
    text-decoration: underline;
    text-decoration-color: var(--foreground-color);
    text-decoration-thickness: 4px;
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-layout-hflex {
    flex-direction: row;
    align-items: flex-start;
    display: flex;
}

.w-layout-vflex {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

@media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
        max-width: none;
    }
}

.body {
    background-color: var(--background-color);
    color: var(--foreground-color);
    font-family: neue-haas-grotesk-display, sans-serif;
}

.credit-text-type {
    color: var(--foreground-color);
    flex: 1;
    font-family: LophiileItalicAd, Palatino Linotype, Book Antiqua, Palatino, serif;
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -0.3px;
}

.header-container {
    justify-content: space-between;
    align-items: flex-end;
}

.credit-text-title {
    color: var(--foreground-color);
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -1px;

}

.credit-text-artist {
    color: var(--foreground-color);
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 500;
}

.heading {
    color: var(--foreground-color);
    font-size: 80px;
    line-height: 80px;
    font-weight: 500;
    letter-spacing: -3px;

}

.heading.bold {
    font-weight: 600;
}

.credit-container {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    width: 100%;
}

.container {
    grid-column-gap: 140px;
    grid-row-gap: 140px;
    flex-flow: column;
    max-width: 1700px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.credit-text-date {
    color: var(--foreground-color);
    flex: none;
    width: 100%;
    max-width: 167px;
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -1px;

}

.credit-text-date.right {
    text-align: right;
}

.credit-lower-row-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
}

.credit-upper-row-container {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.credit-upper-row-container.right {
    justify-content: flex-end;
    align-items: flex-start;
}

.deco-block {
    background-color: var(--foreground-color);
    flex: none;
    width: 6px;
    height: 6px;
}

.deco-block.top {
    margin-top: -4px;
}

.deco-block.pad-right,
.deco-block.pad-left {
    display: none;
}

.credit-full-type-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
}

.credit-full-name-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    width: 100%;
}

.credit-full-name-container.right {
    justify-content: flex-end;
    align-items: flex-start;
}

.flex-block-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
}



    .credit-detail-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .back-button {
      display: inline-block;
      margin-bottom: 30px;
      color: inherit;
      text-decoration: none;
      font-size: 16px;
      transition: opacity 0.2s;
    }

    .back-button:hover {
      opacity: 0.7;
    }

    .credit-detail-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 40px;
      text-align: center;
    }

    .credit-detail-album-art {
      width: 300px;
      height: 300px;
      object-fit: cover;
      margin-bottom: 30px;
      /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
    }

    .credit-detail-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .credit-detail-artist {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .credit-detail-role {
      font-size: 18px;
      opacity: 0.8;
      margin-bottom: 5px;
    }

    .credit-detail-year {
      font-size: 16px;
      opacity: 0.6;
    }

    .credit-detail-spotify {
      margin-top: 40px;
      width: 100%;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 767px) {
      .credit-detail-album-art {
        width: 250px;
        height: 250px;
      }

      .credit-detail-title {
        font-size: 24px;
      }

      .credit-detail-artist {
        font-size: 18px;
      }

      .credit-detail-role {
        font-size: 16px;
      }
    }


@media screen and (max-width: 479px) {
    .credit-text-type {
        font-size: 32px;
        line-height: 48px;
    }

    .header-container {
        flex-flow: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .credit-text-title,
    .credit-text-artist {
        flex: 0 auto;
        font-size: 20px;
        line-height: 20px;
    }

    .heading {
        font-size: 48px;
        line-height: 48px;
    }

    .credit-text-date {
        max-width: 48px;
        font-size: 16px;
        line-height: 16px;
    }

    .credit-text-date.spacer,
    .credit-text-date.spacer.right {
        display: none;
    }

    .credit-lower-row-container {
        flex-flow: row;
    }

    .deco-block {
        width: 4px;
        height: 4px;
    }

    .deco-block.mobile-hide {
        display: none;
    }

    .deco-block.pad-right {
        margin-right: 12px;
        display: block;
    }

    .deco-block.pad-left {
        margin-left: 12px;
        display: block;
    }

    .credit-full-name-container {
        flex-flow: wrap;
    }
}