/** Shopify CDN: Minification failed

Line 162:32 Expected ":"

**/
/* ============================================================
   Collection Template 16 — Procedure Card Styles
   File: assets/collection-template-16.css
   ============================================================ */

/* ----------------------------------------------------------
   Page wrapper
   ---------------------------------------------------------- */
.cpt16-page {
  /* max-width: 1400px;
  margin: 0 auto; */
  padding-left: 48px;
  padding-right: 48px;
}

/* ----------------------------------------------------------
   Header / title
   ---------------------------------------------------------- */
.cpt16-header {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.cpt16-title {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.cpt16-description {
  font-size: 1rem;
  color: #666;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------
   Grid — 2 columns, centered
   ---------------------------------------------------------- */
.cpt16-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(40px, 3.5vw, 60px);
}

/* ----------------------------------------------------------
   Card
   ---------------------------------------------------------- */
.cpt16-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.cpt16-card .cpt16-card__media:hover {
  /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09); */
  transform: translateY(-3px);
}

/* ----------------------------------------------------------
   Card image
   ---------------------------------------------------------- */
.cpt16-card__media {
  width: 100%;
  /* aspect-ratio: 4 / 3; */
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}

.cpt16-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}

.cpt16-card__media img:hover {
  transform: scale(1.04);
}

/* placeholder when no image */
.cpt16-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.cpt16-placeholder-svg {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* ----------------------------------------------------------
   Card info area
   ---------------------------------------------------------- */
.cpt16-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 34px 44px;
  gap: 1rem;
  border-top: 1px solid #f0f0f0;
}

/* ----------------------------------------------------------
   Product title
   ---------------------------------------------------------- */
.cpt16-card__title {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  margin-bottom:34px;
}

/* ----------------------------------------------------------
   "View Procedures" button
   ---------------------------------------------------------- */
.cpt16-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 26px;
  border: 2px solid rgba(23,23,23,1);
  border-radius: 3.75rem;
  background: transparent;
  color: rgba(23,23,23,1);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  max-height: 3.75rem;
}

.cpt16-card__btn:hover {
  background: rgba(23,23,23,1);a;
  color: #ffffff;
}

/* ----------------------------------------------------------
   Empty state
   ---------------------------------------------------------- */
.cpt16-empty {
  text-align: center;
  color: #999;
  font-size: 1rem;
  padding: 4rem 0;
}

/* ----------------------------------------------------------
   Pagination
   ---------------------------------------------------------- */
.cpt16-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 0.5rem;
}

.cpt16-pagination .pagination {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cpt16-pagination .pagination li a,
.cpt16-pagination .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cpt16-pagination .pagination li a:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.cpt16-pagination .pagination li.active span {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* ----------------------------------------------------------
   Responsive — tablet: still 2 cols
   Responsive — mobile: 1 col
   ---------------------------------------------------------- */
@media (max-width: 640px) {
  .cpt16-grid {
    grid-template-columns: 1fr;
  }

  .cpt16-page {
    padding: 0 1rem 3rem;
  }
}
@media (min-width:641px) and (max-width:800px) {
    .cpt16-card__btn{
        display: flex !important;
        font-size: 12px !important;
        padding:14px !important;
    }
}