/* ==========================================
   SHIPPING POLICY CONTAINER
========================================== */

#shippingPolicyContainer {
  max-width: 1400px;

  margin-bottom: 10rem;

  margin-left: auto;
  margin-right: auto;

  padding-left: 20px;
  padding-right: 20px;

  box-sizing: border-box;
}

/* ==========================================
   POLICY PAGE
========================================== */

.policy_document {
  background: #fff;

  padding: 40px;

  border-radius: 16px;

  border: 1px solid #e5e5e5;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.policy_document h1 {
  margin: 0 0 30px;

  font-size: 42px;

  font-weight: 700;

  color: #111;

  line-height: 1.2;
}

.policy_document h2 {
  margin-top: 40px;
  margin-bottom: 16px;

  font-size: 28px;

  font-weight: 700;

  color: #111;

  line-height: 1.3;

  padding-bottom: 10px;

  border-bottom: 1px solid #ececec;
}

.policy_document h3 {
  margin-top: 28px;
  margin-bottom: 12px;

  font-size: 22px;

  font-weight: 700;

  color: #111;
}

.policy_document p {
  margin-top: 0;
  margin-bottom: 18px;

  font-size: 16px;

  line-height: 1.9;

  color: #444;
}

.policy_document strong {
  color: #111;
}

.policy_document ul,
.policy_document ol {
  margin-top: 0;
  margin-bottom: 24px;

  padding-left: 24px;
}

.policy_document li {
  margin-bottom: 12px;

  color: #444;

  line-height: 1.8;

  font-size: 16px;
}

.policy_document hr {
  margin: 40px 0;

  border: none;

  border-top: 1px solid #ececec;
}

/* ==========================================
   POLICY HIGHLIGHTS
========================================== */

.policy_highlights {
  margin-bottom: 40px;
}

.policy_highlights h2 {
  margin: 0 0 24px;
  line-height: 1.4;

  font-size: 32px;

  font-weight: 700;

  color: #111;
}

.policy_highlight_grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}

.policy_highlight_card {
  display: flex;

  align-items: flex-start;

  gap: 16px;

  padding: 24px;

  background: #fff;

  border: 1px solid #e5e5e5;

  border-radius: 14px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

  transition: all 0.2s ease;
}

.policy_notice {
  margin-top: 2rem;
  font-size: 1.3rem;
}

@media (max-width: 600px) {
  #shippingPolicyContainer {
    padding-left: 10px;
    padding-right: 10px;
  }

   .policy_notice {
    padding: 18px;
  }

  .policy_document {
    padding: 18px;
  }

  .policy_highlight_grid {
    grid-template-columns: 1fr;

    width: 100%;
  }

  .policy_highlight_card {
    width: 100%;

    min-width: 0;
  }

  .policy_text {
    min-width: 0;
  }

  .policy_text p,
  .policy_text strong {
    overflow-wrap: break-word;

    word-break: break-word;
  }

  .policy_document h1 {
    font-size: 2rem;

    line-height: 1.5;

    word-break: break-word;
  }
}
