.skills .stack-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.skills .stack-banner-label {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--heading-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.skills .stack-banner h3 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 0;
}

.skills .stack-banner p {
  margin: 0;
  font-size: 16px;
}

.skills .stack-card {
  height: 100%;
  padding: 26px 24px;
  background: var(--surface-color);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: none;
  transition: var(--transition-medium);
}

.skills .stack-card:hover {
  border-color: rgba(15, 23, 42, 0.14);
}

.skills .stack-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(226, 85, 77, 0.08);
  color: var(--red);
  font-size: 24px;
}

.skills .stack-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.skills .stack-card p {
  font-size: 15px;
  margin-bottom: 16px;
}

.skills .stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills .stack-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--heading-color);
  font-size: 12px;
  font-weight: 700;
}

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