/* Section Wrapper */
.things-section {
  padding: 20px 10%;
  font-family: "Myriad Pro", sans-serif;
}

.things-header {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--purple-color);
}

/* 2-Column Row */
.things-row {
  display: flex;
  gap: 40px;
}

/* LEFT COLUMN */
.things-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; /* vertical + horizontal centering */
}

.things-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding-top: 40px;
}

/* RIGHT COLUMN */
.things-right {
  flex: 1;
}

.things-subtitle {
  font-size: 18px;
  color: var(--purple-color);
  margin-bottom: 5px;
}

.things-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* GRID OF CARDS */
.things-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Card Design */
.things-card {
  border-radius: 15px;
  padding: 15px;
  text-align: left;
}

.things-grid a {
  text-decoration: none;
}

.things-card:hover {
  transform: translateY(-4px);
}

.things-card h3 {
  color: var(--purple-color);
}

/* Circular Image */
.card-circle {
  width: 80px;
  height: 80px;
  /* margin: 0 auto 15px; */
  border-radius: 50%;
  overflow: hidden;
  background: #f2f2f2;
}

.card-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Text */
.things-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.things-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.4;
  margin-bottom: 12px;
}

.card-ending {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-color);
}

/* Responsive */
@media (max-width: 900px) {
  .things-row {
    flex-direction: column;
  }
}

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