    .img-cell {
      transition: transform 0.4s ease, border-color 0.3s ease;
      overflow: hidden;
    }

    .img-cell:hover {
      transform: scale(1.02);
    }

    .img-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .img-cell:hover img {
      transform: scale(1.05);
    }

    /* bullet list styling */
    .bullet-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .bullet-list li {
      display: flex;
      align-items: baseline;
      gap: 8px;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .bullet-list li::before {
      content: '';
      display: inline-block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #dc2626;
      flex-shrink: 0;
      margin-top: 6px;
    }