.themeticWorry {

        font-family: Arial, sans-serif;
        background: #fff;
        padding: 40px;
        margin: 0;


      .card-grid {
        display: flex;
        flex-direction: column;
        gap: 34px;
        max-width: 900px;
        margin: 0 auto;
        align-items: center;
      }

      .card-row {
        display: flex;
        justify-content: center;
        gap: 46px;
      }

      .thematic_clause {
        background-color: #ffffff;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        /* padding: 29px; */
        border: 2px solid #A79421;

        .card-aligned-col {
          margin-left: -5px;
          margin-bottom: 4px;
        }
        .title-main {
            line-height: 1.3;
            padding-left: 2px;
            margin-top:10px;


        }
      }

      .main-row {
        display: flex;
        align-items: center;
      }

      .gauge-container {
        position: relative;
        width: 156px;
        height: 156px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        z-index: 2;
      }

      .gauge-border {
        width: 106px;
        height: 106px;
        border-radius: 50%;
        background: #fff;
        border: 8px solid #ffbedf;
        /* pink as default */
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
      }

      .donut {
        width: 82px;
        height: 82px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 9px #fdebea;
        position: relative;
      }

      .donut.pct93 {
        background: conic-gradient(#b9ac49 0 335deg, #ffe0ef 335deg 360deg);
      }

      .donut.pct65 {
        background: conic-gradient(#b9ac49 0 234deg, #ffe0ef 234deg 360deg);
      }

      .donut.pct49 {
        background: conic-gradient(#b9ac49 0 176deg, #ffe0ef 176deg 360deg);
      }

      .donut.pct20 {
        background: conic-gradient(#b9ac49 0 72deg, #ffe0ef 72deg 360deg);
      }

      .donut.pct7 {
        background: conic-gradient(#b9ac49 0 25deg, #ffe0ef 25deg 360deg);
      }

      .donut::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        background: #fff;
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 1px 5px #f7ebf1 inset;
      }

      .gauge-percent {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 15px;
        font-weight: bold;
        color: #393939;
        z-index: 3;
        pointer-events: none;
      }

      .card-aligned-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        min-width: 210px;
        max-width: 305px;
        margin-left: -50px;
        margin-bottom:40px;
      }

      .title-main {
        font-size: 16px;
        font-weight: bold;
        color: #222;
        margin-bottom: 9px;
        margin-left: 35px;
        text-align: left;
        line-height: 1.2;
        letter-spacing: -1px;
        padding-left: 0;
      }

      .card-section {
        border-radius: 20px;
        min-width: 200px;
        max-width: 300px;
        height: 80px;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 14px #f5e1e6;
        padding: 0 20px;
        text-align: left;
        position: relative;
        border: 3px solid #ffbedf;
        /* pink as default */
        background: #f5f5f5;
      }

      .card-section p {
        color: #464646;
        font-size: 1em;
        font-weight: 500;
        margin-left: 12px;
        line-height: 1.45;
        white-space: normal;
      }

      /* Unique border colors for each pair (card & donut) */
      .pink-border {
        border-color: #ffbedf !important;
      }

      .blue-border {
        border-color: #8bc9ff !important;
      }

      .green-border {
        border-color: #91e28b !important;
      }

      .orange-border {
        border-color: #ffd486 !important;
      }

      .purple-border {
        border-color: #c3b3f9 !important;
      }

      .gauge-border.pink-border {
        border-color: #ffbedf !important;
      }

      .gauge-border.blue-border {
        border-color: #8bc9ff !important;
      }

      .gauge-border.green-border {
        border-color: #91e28b !important;
      }

      .gauge-border.orange-border {
        border-color: #ffd486 !important;
      }

      .gauge-border.purple-border {
        border-color: #c3b3f9 !important;
      }

      /* Responsive styles */
      @media (max-width: 1100px) {
        .card-row {
          gap: 20px;
        }
      }

      @media (max-width: 900px) {
        .card-grid {
          max-width: 99vw;
        }
      }

      @media (max-width: 850px) {
        .main-row {
          flex-direction: column;
          align-items: center;
        }

        .card-aligned-col {
          margin-left: 0;
          align-items: center;
        }

        .card-section {
          min-width: unset;
          max-width: 98vw;
        }
      }

      @media (max-width: 650px) {

        .gauge-container,
        .gauge-border {
          width: 110px;
          height: 110px;
        }

        .donut {
          width: 94px;
          height: 94px;
        }

        .donut::after {
          width: 44px;
          height: 44px;
        }

        .gauge-percent {
          font-size: 1.5em;
        }

        .card-section {
          height: auto;
          padding: 0 10px;
        }

        .card-row {
          flex-direction: column;
          gap: 24px;
          align-items: center;
        }

        .card-aligned-col {
          margin-left: 0;
          max-width: 98vw;
          align-items: stretch;
        }
      }


}
