.stampscat { padding: 40px 16px; background: transparent; color: #0f172a; }
.stampscat__container { max-width: 1200px; margin: 0 auto; }
header.stampscat__top {background: transparent;}
.stampscat__top { text-align: center; margin-bottom: 24px; }
.stampscat__title { margin: 0 0 8px; font-size: 28px; font-weight: 800; color: #1d4ed8; }
.stampscat__subtitle { margin: 0; font-size: 15px; color: #6b7280; }

.stampscat__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .stampscat__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .stampscat__grid { grid-template-columns: repeat(5, 1fr); }
}

.stampscat__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stampscat__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.stampscat__img { width: 100%; height: 180px; object-fit: contain; }

.stampscat__body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.stampscat__heading { margin: 0; font-size: 18px; font-weight: 700; }
.stampscat__text { margin: 0; font-size: 14px; color: #6b7280; line-height: 1.4; }

.stampscat__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1d4ed8;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s ease;
}
.stampscat__btn:hover { background: #2563eb; color:#fff;}
.stampscat__icon { font-size: 16px; line-height: 1; }
.stampcats{ padding:40px 16px; background:transparent; color:#0f172a; }
.stampcats__container{ max-width:1200px; margin:0 auto; }
.stampcats__top{ text-align:center; margin-bottom:24px; }
.stampcats__title{ margin:0 0 8px; font-size:28px; font-weight:800; color:#1d4ed8; }
.stampcats__subtitle{ margin:0; font-size:15px; color:#6b7280; }

.stampcats__grid{
  display:grid; gap:20px; grid-template-columns:1fr;
}
@media (min-width:640px){
  .stampcats__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:992px){
  .stampcats__grid{ grid-template-columns:repeat(3,1fr); }
}
@media (min-width:1200px){
  .stampcats__grid{ grid-template-columns:repeat(4,1fr); }
}

.stampcats__card{
  background:#ffffff; border:1px solid #e5e7eb;
  border-radius:14px; overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.stampcats__card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  border-color:#dbe2ea;
}

.stampcats__img{ width:100%; height:170px; object-fit: contain; display:block; }
@media (min-width:992px){ .stampcats__img{ height:160px; } }

.stampcats__body{ padding:14px 16px; display:flex; flex-direction:column; gap:8px; flex:1; }
.stampcats__heading{ margin:0; font-size:17px; font-weight:700; line-height:1.25; }
.stampcats__text{ margin:0; font-size:14px; color:#6b7280; line-height:1.45; }

.stampcats__btn{
  margin-top:auto; align-self:flex-start;
  display:inline-flex; align-items:center; gap:6px;
  font-size:14px; font-weight:600; color:#fff; text-decoration:none;
  background:#1d4ed8; padding:10px 14px; border-radius:8px;
  transition:background .2s ease;
}
.stampcats__btn:hover{ background:#2563eb; color:#fff; }
.stampcats__icon{ font-size:16px; line-height:1; }
header.stampcats__top {background: transparent;}