/*
Theme Name: Quantum Method
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: WordPress theme generated from Lovable project.
Version: 1.1.2
License: GNU General Public License v2 or later
Text Domain: tmt
*/

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; }

/*
 * Proof cards: Before/After sliders + videos.
 * Large screens: one row, equal-width cards (flex, no wrap).
 * Smaller: responsive grid with wrap.
 */
.tmt-proof-grid {
  display: grid;
  gap: 0.75rem;
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tmt-proof-grid > * {
  min-width: 0;
}

@media (min-width: 768px) {
  .tmt-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .tmt-proof-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .tmt-proof-grid > * {
    flex: 1 1 0;
  }
}
