/* =========================================
   Abuse Prevention Page
========================================= */

.abuse-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
}

.abuse-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 201, 196, 0.18) 0%,
    rgba(126, 201, 196, 0) 72%
  );
  pointer-events: none;
}

.abuse-hero::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 214, 174, 0.16) 0%,
    rgba(244, 214, 174, 0) 72%
  );
  pointer-events: none;
}

.abuse-hero-box {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 42px 40px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
  border: 1px solid rgba(44, 122, 123, 0.08);
  box-shadow: 0 18px 46px rgba(44, 122, 123, 0.08);
}

.abuse-hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #edf7f6;
  color: #2c7a7b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.abuse-hero-text {
  max-width: 760px;
  margin-top: 18px;
  line-height: 2;
}

.abuse-summary-card {
  margin-top: 28px;
  padding: 24px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f4fbfa 0%, #edf7f6 100%);
  border: 1px solid rgba(44, 122, 123, 0.08);
}

.abuse-summary-title {
  margin-bottom: 12px;
  color: #2c7a7b;
  font-size: 1rem;
  font-weight: 700;
}

.abuse-summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.abuse-summary-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.9;
}

.abuse-summary-list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7fc8c2;
  box-shadow: 0 0 0 6px rgba(127, 200, 194, 0.16);
  transform: translateY(-50%);
}

.abuse-section .section-title {
  margin-bottom: 22px;
}

.abuse-outline,
.abuse-structured-card,
.abuse-checklist-card,
.abuse-contact-box,
.abuse-revision-note {
  padding: 32px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
  border: 1px solid rgba(44, 122, 123, 0.08);
  box-shadow: 0 14px 34px rgba(44, 122, 123, 0.06);
}

.abuse-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.abuse-mini-card,
.abuse-training-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  border: 1px solid rgba(44, 122, 123, 0.08);
  box-shadow: 0 14px 34px rgba(44, 122, 123, 0.06);
}

.abuse-mini-card h3,
.abuse-training-card h3,
.abuse-contact-box h3,
.abuse-checklist-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #2c7a7b;
}

.abuse-mini-card p,
.abuse-training-card p,
.abuse-contact-box p {
  margin: 0;
  line-height: 1.95;
}

.abuse-info-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.abuse-info-list > div {
  padding-top: 18px;
  border-top: 1px solid #e2efee;
}

.abuse-info-list > div:first-child {
  padding-top: 0;
  border-top: none;
}

.abuse-info-list dt {
  margin-bottom: 8px;
  color: #2c7a7b;
  font-weight: 700;
}

.abuse-info-list dd {
  margin: 0;
  line-height: 1.95;
  color: #425857;
}

.abuse-emphasis-box {
  margin-bottom: 22px;
  padding: 24px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2c7a7b 0%, #58afaa 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(44, 122, 123, 0.14);
}

.abuse-emphasis-box p {
  margin: 0;
  line-height: 1.95;
  font-weight: 700;
}

.abuse-checklist {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.abuse-checklist li {
  position: relative;
  padding-left: 28px;
  line-height: 1.9;
}

.abuse-checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #2c7a7b;
  font-weight: 700;
}

.abuse-training-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.abuse-contact-box {
  background: linear-gradient(180deg, #f4fbfa 0%, #ffffff 100%);
}

.abuse-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.abuse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.abuse-btn-secondary {
  border: 2px solid #2c7a7b;
}

.abuse-revision-note p {
  margin: 0;
  line-height: 1.95;
}

.abuse-revision-note p + p {
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .abuse-card-grid,
  .abuse-training-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .abuse-hero {
    padding-bottom: 44px;
  }

  .abuse-hero-box,
  .abuse-outline,
  .abuse-structured-card,
  .abuse-checklist-card,
  .abuse-contact-box,
  .abuse-revision-note,
  .abuse-mini-card,
  .abuse-training-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .abuse-mini-card h3,
  .abuse-training-card h3,
  .abuse-contact-box h3,
  .abuse-checklist-card h3 {
    font-size: 1.12rem;
  }

  .abuse-contact-actions {
    flex-direction: column;
  }

  .abuse-btn {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .abuse-hero-box,
  .abuse-outline,
  .abuse-structured-card,
  .abuse-checklist-card,
  .abuse-contact-box,
  .abuse-revision-note,
  .abuse-mini-card,
  .abuse-training-card {
    padding: 22px 18px;
  }
}
