/********************************************************
    SCORE COLORS
********************************************************/
    .score.powder-blue {
      background: var(--powder-blue);
      color: var(--dark-slate);
    }

    .score.orange {
      background: var(--orange);
      color: white;
    }

    /********************************************************
        REVIEW HEADER
    ********************************************************/
    .review-header {
      display: flex;
      gap: 30px;
      padding: 30px 25px;
      background: var(--vanilla);
      border-bottom: 1px solid #ccc;
      justify-content: center;
      flex-wrap: wrap;
    }

    .header-left img {
      width: 260px;
      border-radius: 6px;
    }

    .header-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 400px;
    }

    .review-info h2 {
      margin: 0;
      font-family: var(--title-font);
      font-size: 28px;
    }

    .review-info h3 {
      margin: 8px 0;
      font-size: 20px;
      font-weight: normal;
    }

    .score {
      margin-top: 10px;
      display: inline-block;
      padding: 8px 16px;
      font-size: 26px;
      border-style: solid;
      border-color: #2F4F4F;
      border-radius: 6px;
      font-weight: bold;
    }

    /********************************************************
        GENERAL INFO (NEW POSITION)
    ********************************************************/
    .general-info {
      padding: 25px;
      background-color: rgba(255,255,255,0.3);
      border-bottom: 1px solid #ccc;
    }

    .general-info p {
      margin: 6px 0;
      text-align: left;
    }

    .info-grid {
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px 20px;
    }

    /********************************************************
        REVIEW BODY
    ********************************************************/
    .review-body {
      padding: 25px;
      line-height: 1.6;
      border-bottom: 1px solid #ccc;
    }

    .review-body p {
      margin-bottom: 16px;
      font-size: large;
    }

    #review-subtitle {
      text-align: center;
      font-style: italic;
      font-size: larger;
      width: 70%;
      justify-self: center;
    }

    #review-text p {
      text-indent: 50px;
      width: 70%;
      justify-self: center;
    }

    .review-note {
      text-align: center;
      font-style: italic;
    }

    /********************************************************
        YOUTUBE
    ********************************************************/
    .yt-wrapper {
      padding: 25px;
      display: flex;
      justify-content: center;
    }

    #youtube-embed {
      width: 100%;
      max-width: 560px;
      height: 315px;
      border: none;
      border-radius: 6px;
    }

    #bandcamp-embed {
      width: 100%;
      max-width: 560px;
      height: 120px;
      border: none;
      border-radius: 6px;
    }

    /********************************************************
        SUGGESTED REVIEWS
    ********************************************************/
    .suggested {
      padding: 25px;
    }

    .suggested h4 {
      font-family: var(--title-font);
      font-size: 28px;
      margin-bottom: 15px;
    }

    .suggested-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 25px;
    }

    .suggested-card {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      border-radius: 6px;
    }

    .suggested-card img {
      width: 100%;
      display: block;
      transition: all 0.3s ease;
    }

    .suggested-card .overlay {
      position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: var(--dark-slate);
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
    opacity: 0;
    transition: opacity 0.3s;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.9);
    }

    .suggested-card:hover img {
      opacity: 0.35;
    }

    .suggested-card:hover .overlay {
      opacity: 1;
    }

    @media (max-width: 768px) {
      #review-subtitle {
        width: 100%;
      }

      #review-text p {
        width: 100%;
      }
}