.things-hero > img {
  object-position: center;
}

.things-section {
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 146, 203, 0.1), transparent 28%),
    linear-gradient(180deg, #f4fbfe, #ffffff);
}

.things-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.things-heading h2 {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: clamp(30px, 3.5vw, 44px);
}

.things-heading p {
  color: #566a76;
}

.things-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.things-filters button {
  padding: 9px 20px;
  background: var(--white);
  color: #4b5e6a;
  border: 1px solid #cee7f2;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.things-filters button:hover,
.things-filters button.active {
  background: linear-gradient(135deg, var(--primary), #33b5e5);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 7px 18px rgba(0, 146, 203, 0.25);
  transform: translateY(-2px);
}

.things-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.thing-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e0f0f7;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 110, 155, 0.09);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.3s;
}

.thing-card.thing-hidden {
  display: none;
}

.thing-card.thing-enter {
  opacity: 0;
  transform: translateY(28px);
}

.thing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(0, 146, 203, 0.2);
}

.thing-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.thing-card:hover > img {
  transform: scale(1.08);
}

.thing-content {
  position: relative;
  padding: 23px 22px 25px;
}

.thing-content > span {
  display: inline-block;
  margin-top: -42px;
  margin-bottom: 13px;
  padding: 6px 13px;
  background: linear-gradient(135deg, var(--primary), #33b5e5);
  color: var(--white);
  border: 4px solid var(--white);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.thing-content h3 {
  margin-bottom: 9px;
  color: var(--text-dark);
  font-size: 19px;
  line-height: 1.35;
}

.thing-content p {
  color: #566a76;
  font-size: 13.5px;
  line-height: 1.7;
}

.things-more {
  margin-top: 42px;
  text-align: center;
}

.things-more p {
  margin-bottom: 12px;
  color: #71838e;
  font-size: 13px;
}

#loadMoreThings {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--primary), #33b5e5);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 146, 203, 0.32);
  transition: transform 0.25s, box-shadow 0.25s;
}

#loadMoreThings:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 146, 203, 0.42);
}

#loadMoreThings span {
  font-size: 19px;
  transition: transform 0.25s;
}

#loadMoreThings:hover span {
  transform: translateY(3px);
}

#loadMoreThings.hidden {
  display: none;
}

@media (max-width: 992px) {
  .things-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .things-section {
    padding: 60px 0 70px;
  }

  .things-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .things-filters {
    margin-bottom: 32px;
  }

  .things-filters button {
    padding: 8px 15px;
    font-size: 12px;
  }
}
