    :root{
      --card-bg: #fff;
      --border: #e6e6e6;
      --muted: #6f6f6f;
      --heading: #141414;
      --accent: #d93b2f;
    }

    .testimonial-card{
      max-width: 980px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 34px;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.00);
      margin: 0 auto 1rem auto;
      box-sizing: border-box;
    }

    .tc-header{
      display: flex;
      align-items: center;
      gap: 26px;
      margin-bottom: 18px;
    }

    .tc-logo{
      width: 72px;
      height: 72px;
      flex: 0 0 72px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tc-logo img{
      max-width: 72px;
      max-height: 72px;
      display: block;
    }

    .tc-title{
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }

    .job-title{
      font-size: 13px;
      color: #9a9a9a;
      letter-spacing: 0.2px;
    }

    .person-name{
      font-weight: 700;
      color: var(--heading);
      font-size: 19px;
      line-height: 1;
      letter-spacing: 0.1px;
    }

    .tc-body{
      font-size: 16px;
      line-height: 1.78;
      margin-top: 10px;
    }

    .tc-body p{
      margin: 0 0 18px 0;
      max-width: 860px;
    }

    .tc-attachment{
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #777;
      font-size: 17px;
    }

    .file-icon{
      width: 44px;
      height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      background: linear-gradient(180deg,#fff,#fbfbfb);
      border: 1px solid #eee;
      box-shadow: inset 0 -1px 0 rgba(0,0,0,0.02);
      flex: 0 0 44px;
    }

    .file-meta .name{
      font-weight: 600;
      color: #333;
      font-size: 17px;
    }

    .file-meta .size{
      font-size: 16px;
      color: #9a9a9a;
      margin-top: 4px;
    }

    @media (max-width: 640px){
      .testimonial-card{
        padding: 18px;
      }
      .tc-header{
        gap: 14px;
      }
      .tc-logo{
        width: 56px;
        height: 56px;
      }
      .tc-logo img{ max-width:56px; max-height:56px;}
      .person-name{ font-size: 17px; }
      .tc-body{ font-size: 15px; line-height: 1.6; }
    }