.p4-doc-links {
  padding: 80px 0;
  background: linear-gradient(180deg,#e8f5f2,#f7f1ee);
}

.p4-doc-links h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: 700;
}

.p4-doc-links .p4-doc-links-intro {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.p4-doc-links .p4-doc-links-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 10px 28px;
}

.p4-doc-links .p4-doc-list {
  list-style: none;
}

.p4-doc-links .p4-doc-list li {
  border-bottom: 1px solid #EDF0F2;
}

.p4-doc-links .p4-doc-list li:last-child {
  border-bottom: none;
}

.p4-doc-links .p4-doc-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.25s ease;
}

.p4-doc-links .p4-doc-list a:hover {
  color: var(--teal);
}

.p4-doc-links .doc-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.p4-doc-links .doc-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s ease;
}

.p4-doc-links .p4-doc-list a:hover .doc-arrow {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .p4-doc-links {
    padding: 60px 0;
  }

  .p4-doc-links h2 {
    font-size: 26px;
  }

  .p4-doc-links .p4-doc-links-intro {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .p4-doc-links .p4-doc-links-box {
    padding: 8px 18px;
    border-radius: var(--radius);
  }

  .p4-doc-links .p4-doc-list a {
    padding: 16px 0;
  }

  .p4-doc-links .doc-name {
    font-size: 14px;
  }

  .p4-doc-links .doc-arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
