/* ── What Makes Me Unique ── */
#unique {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem) 2rem;
}

.unique-header {
  max-width: min(409px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.unique-icon {
  background: rgba(220, 122, 11, 0.15);
  border-radius: 50%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unique-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #031868;
  text-align: center;
  line-height: 1.2;
}

.unique-card {
  width: min(1179px, 100%);
  min-height: 270px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
}

.unique-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 2.5rem);
  gap: 0.75rem;
}

.unique-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.unique-item-icon svg {
  width: 100%;
  height: 100%;
}

.unique-item h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: #031868;
}

.unique-item p {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  line-height: 1.6;
  color: #555;
}

.unique-divider {
  width: 1px;
  background: rgba(3, 24, 104, 0.15);
  align-self: stretch;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .unique-header { width: 100%; }
  .unique-title { font-size: 1.8rem; }

  .unique-card {
    flex-direction: column;
  }

  .unique-divider {
    width: auto;
    height: 1px;
    margin: 0 1.5rem;
  }

  .unique-item { padding: 1.5rem; }
}
