.pwp-section {
  background: #ffffff;
  padding: 115px 0 154px;
}

.pwp-wrapper {
    width: 100%;
  max-width: 1480px;
  margin: 0 auto;
    padding: 0 40px;
}

/* ── Header ── */
.pwp-header {
  text-align: center;
  margin-bottom: 50px;
}

.pwp-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.80);
    line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pwp-title {
  font-size: 38px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 6px;
  line-height: 54px;
}

.pwp-desc {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.80);
    font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 28px;
}

/* ── Category group ── */
.pwp-category {
  margin-bottom: 39px;
}

.pwp-category:last-child {
  margin-bottom: 0;
}

.pwp-category__label {
  font-size: 12px;
  font-weight: 500;
    line-height: 28px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.80);
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* ── Card grid ── */
.pwp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
}

/* ── Card ── */
.pwp-card {
  text-decoration: none;
  color: inherit;
    border: 1px solid rgba(209, 209, 210, 1);
  border-radius: 8px;
  padding: 19px 21px;
  gap: 14px;
  background: #ffffff;
  transition: all 0.3s ease 0s;
}

.pwp-card:hover {
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.15), 0px 2px 4px 0px rgba(0, 0, 0, 0.19);
}

.pwp-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
    height: 100%;
}

.pwp-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 7.89px;
  overflow: hidden;
}

.pwp-card__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.pwp-card__info {
    flex: 1;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.pwp-card__name {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 5px;
    line-height: 23px;
}

.pwp-card__desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.80);
    margin: 0 0 18px;
    line-height: 22px;
    font-weight: 400;
}

a.pwp-card__link {
  font-size: 14.5px;
  font-weight: 500;
  color: #3040CF;
    line-height: 18px;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  margin:0;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease 0s;
}
a.pwp-card__link:hover {
    opacity: 0.80;
    transition: all 0.5s ease 0s;
}

.pwp-card:hover a.pwp-card__link {
    border-bottom: 1px solid #3040CF;
    transition: all 0.5s ease 0s;
}

@media (max-width: 1024px) {
  .pwp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pwp-section {
    padding: 60px 16px 48px;
  }

  .pwp-header {
    margin-bottom: 40px;
  }

  .pwp-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pwp-card {
    padding: 20px 16px 16px;
    gap: 16px;
  }

  .pwp-category {
    margin-bottom: 36px;
  }
}
