.icards-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.icard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px 32px;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.icard:hover {
  border-color: #dccfb4;
  box-shadow: 0 18px 40px rgba(28, 28, 28, 0.08);
  transform: translateY(-4px);
}

.icard .dashed-frame {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px dashed rgba(213, 201, 174, 0);
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.icard:hover .dashed-frame {
  border-color: #d5c9ae;
}

.icard-icon {
  width: 62px;
  height: 62px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
  transition: background 0.3s ease, color 0.3s ease;
}

.icard-icon img {
  width: 100%;
  height: 100%;
  padding: 15px;
}

.icard:hover .icard-icon {
  background: rgb(236, 227, 207);
  color: #fff;
}

.icard-title {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 10px;
}

.icard-desc * {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-muted) !important;
  margin: 0;
}