/*
 * Intentional fixes on top of the captured GeoTrust CSS.
 * Keep this file tiny and each rule documented — everything else must stay
 * faithful to the source site.
 */

/* The purchase buttons in comparison/pricing tables overflow their cells on
 * mobile (prod has the same flaw): .btn-container declares min-width:201px
 * while the table cell is ~171px at phone widths. Let it shrink to the cell. */
@media (max-width: 1024px) {
  .table_new .table_main .btn-container {
    min-width: 0;
    max-width: 100%;
  }
  .table_new .table_main .btn-container .btn {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
}
