    .popup-grid-table {
      max-width: 960px;
      margin: 40px auto;
      padding: 20px;
    }

    .popup-grid-table_header {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0 0 0 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    .popup-grid-table_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 5px; /* 12px */
    }

    .popup-grid-table_cell {
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid rgba(38, 165, 158, 0.25);
      border-radius: 6px;
      padding: 12px;
      background: #fff;
      text-align: center;
    }

    .popup-grid-table_image {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    /* Explicit text color */
    .popup-grid-table_text {
      margin-bottom: 6px;
      color: #003d3d;
    }

    .popup-grid-table_link {
      color: #003d3d;
      text-decoration: none;
      border-bottom: 1px dotted currentColor;
    }

    .popup-grid-table_link:hover,
    .popup-grid-table_link:focus {
      color: #b8a94e;
      border-bottom-color: #b8a94e;
    }

    @media (max-width: 640px) {
      .popup-grid-table_grid {
        grid-template-columns: 1fr;
        gap: 3px; /* 12px */
      }
    }