/* Breaking Page Styles */
.breaking-page {
  background: #f5f5f5;
  min-height: calc(100vh - 117px);
  padding: 60px 20px;
  font-family: "aktiv-grotesk", sans-serif;
}

.breaking-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid #000;
}

.page-header h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 20px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Content Sections */
.content-section {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.content-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 15px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 20px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section ul,
.content-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.content-section li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}

.content-section strong {
  font-weight: 700;
  color: #000;
}

/* Numbered Steps List */
.numbered-steps {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
  margin: 30px 0;
}

.numbered-steps > li {
  counter-increment: step-counter;
  margin-bottom: 40px;
  position: relative;
  padding-left: 0;
}

.numbered-steps > li:last-child {
  margin-bottom: 0;
}

.numbered-steps h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #000;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.numbered-steps h3::before {
  content: counter(step-counter) ".";
  flex-shrink: 0;
}

.numbered-steps p {
  margin: 0 0 10px;
  padding-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .breaking-page {
    padding: 40px 15px;
  }

  .page-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .content-section {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .content-section h2 {
    font-size: 26px;
  }

  .content-section h3 {
    font-size: 20px;
  }

  .content-section p,
  .content-section li {
    font-size: 15px;
  }

  .numbered-steps h3 {
    font-size: 26px;
  }
}
