:root {
  --breaking-blue: #004c97;
  --breaking-blue-hover: #003a73;
  --breaking-ink: #1a1a1a;
  --breaking-muted: #666666;
  --breaking-border: #d4d4d4;
  --breaking-soft: #fafafa;
  --breaking-warm: #fef3c7;
  --breaking-light-bg: #f5f5f5;
}

/* Critical typography - inline for PageSpeed */
.breaking-archive,
.breaking-card,
.breaking-card__title,
.breaking-card__excerpt,
.breaking-card__meta,
.breaking-card__tag {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.breaking-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  color: var(--breaking-ink);
  line-height: 1.65;
  background: #ffffff;
}

.breaking-archive__hero {
  background: #fff;
  border-bottom: 2px solid #000000;
  padding: 20px 0 32px;
  margin-bottom: 28px;
  position: relative;
}

.breaking-archive__hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 120px;
  height: 2px;
  background: var(--breaking-blue);
}

.breaking-archive__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #dc2626;
  font-weight: 700;
  margin-bottom: 12px;
}

.breaking-archive__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  animation: breaking-pulse 1.6s infinite;
  flex-shrink: 0;
}

@keyframes breaking-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.breaking-archive__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 900px;
}

.breaking-archive__subtitle {
  margin: 0 0 20px;
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  color: #333333;
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
}

.breaking-archive__meta-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #666666;
  margin-top: 8px;
  font-weight: 400;
}

.breaking-archive__dot {
  color: #999999;
  font-weight: 400;
}

.breaking-archive__lead {
  margin-top: 0;
  margin-bottom: 20px;
}

.breaking-archive__list {
  margin-top: 0;
  display: grid;
  gap: 0;
}

.breaking-card {
  display: block;
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.15s ease;
  position: relative;
}

.breaking-card:hover {
  background-color: #fafafa;
}

.breaking-card:first-of-type {
  border-top: 1px solid #e0e0e0;
}

/* Disable hover effect when content is expanded */
.breaking-card.has-expanded-content:hover {
  background-color: #ffffff;
}

.breaking-card__timeline {
  display: none;
}

.breaking-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.breaking-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #666666;
  font-weight: 400;
  margin-bottom: 0;
  order: -1;
}

.breaking-card__category {
  padding: 0;
  background: transparent;
  color: var(--breaking-blue);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.8125rem;
}

.breaking-card__badge {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.breaking-card__badge--fresh {
  background: #16a34a;
  color: #ffffff;
  border: none;
}

.breaking-card__dot {
  color: #cccccc;
}

.breaking-card__title {
  margin: 8px 0 !important;
  font-size: clamp(1.4rem, 2.8vw, 1.75rem) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em !important;
  order: 1;
}

.breaking-card__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breaking-card__title a:hover,
.breaking-card__title a:focus {
  color: var(--breaking-blue);
}

.breaking-card__excerpt {
  margin: 0;
  color: #333333;
  font-size: clamp(1.02rem, 1.6vw, 1.1rem);
  line-height: 1.55;
  font-weight: 400;
  order: 2;
}

.breaking-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #666666;
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
  order: 3;
}

.breaking-card__author {
  font-weight: 400;
  color: #666666;
}

.breaking-card__tag {
  display: inline-block;
  padding: 5px 12px;
  background: #f5f5f5;
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
}

.breaking-card__tag:hover,
.breaking-card__tag:focus {
  background: var(--breaking-blue) !important;
  color: #ffffff !important;
  border-color: var(--breaking-blue) !important;
  text-decoration: none !important;
}

.breaking-card__tags {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.breaking-card__expand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 0 !important;
  margin: 6px 0 0 !important;
  background: transparent !important;
  border: none !important;
  color: var(--breaking-blue) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  position: relative !important;
  vertical-align: baseline !important;
  order: 4;
}

.breaking-card__expand:hover,
.breaking-card__expand:focus {
  color: var(--breaking-blue-hover) !important;
  text-decoration: none !important;
  outline: none !important;
}

.breaking-card__expand:hover .breaking-card__expand-icon,
.breaking-card__expand:focus .breaking-card__expand-icon {
  color: var(--breaking-blue-hover) !important;
}

.breaking-card__expand[aria-expanded="true"] {
  color: #666666 !important;
}

.breaking-card__expand[aria-expanded="true"] .breaking-card__expand-icon {
  transform: rotate(180deg) !important;
  color: #666666 !important;
}

.breaking-card__expand[aria-expanded="true"]:hover,
.breaking-card__expand[aria-expanded="true"]:focus {
  color: #333333 !important;
}

.breaking-card__expand[aria-expanded="true"]:hover .breaking-card__expand-icon,
.breaking-card__expand[aria-expanded="true"]:focus .breaking-card__expand-icon {
  color: #333333 !important;
}

.breaking-card__expand-text {
  display: inline-block !important;
}

.breaking-card__expand-icon {
  width: 12px !important;
  height: 12px !important;
  transition: transform 0.25s ease, color 0.2s ease !important;
  flex-shrink: 0 !important;
  stroke-width: 2.5 !important;
  color: var(--breaking-blue) !important;
}

.breaking-card__content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  animation: fadeIn 0.25s ease-in;
  contain: layout style !important;
  order: 5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breaking-card__content-inner {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  padding: 0 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  white-space: normal !important;
  text-align: left !important;
}

.breaking-card__content-inner p {
  margin-bottom: 1rem;
  color: #333333;
}

.breaking-card__content-inner p:last-child {
  margin-bottom: 0;
}

.breaking-card__content-inner h1,
.breaking-card__content-inner h2,
.breaking-card__content-inner h3,
.breaking-card__content-inner h4,
.breaking-card__content-inner h5,
.breaking-card__content-inner h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.3;
}

.breaking-card__content-inner h1:first-child,
.breaking-card__content-inner h2:first-child,
.breaking-card__content-inner h3:first-child {
  margin-top: 0;
}

.breaking-card__content-inner a {
  color: var(--breaking-blue);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.breaking-card__content-inner a:hover {
  color: var(--breaking-blue-hover);
}

.breaking-card__content-inner ul,
.breaking-card__content-inner ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.breaking-card__content-inner li {
  margin-bottom: 0.5rem;
}

.breaking-card__content-inner strong,
.breaking-card__content-inner b {
  font-weight: 600;
  color: #1a1a1a;
}

.breaking-archive__loader {
  margin: 16px 0;
  text-align: center;
  color: var(--breaking-muted);
  font-weight: 600;
}

.breaking-archive__trigger {
  width: 100%;
  height: 1px;
}

.breaking-archive__load-more {
  margin: 24px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--breaking-border);
  background: #fff;
  color: var(--breaking-ink);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-weight: 600;
  font-size: 0.95rem;
}

.breaking-archive__load-more:hover {
  border-color: var(--breaking-blue);
  color: var(--breaking-blue);
}

.breaking-archive__pagination {
  margin-top: 12px;
  text-align: center;
}

.breaking-archive__empty {
  padding: 48px 24px;
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--breaking-border);
  border-bottom: 1px solid var(--breaking-border);
}

.breaking-archive__home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--breaking-border);
  color: var(--breaking-blue);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.breaking-archive__home:hover {
  border-color: var(--breaking-blue);
  color: var(--breaking-blue);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .breaking-archive {
    padding: 24px 16px 48px;
  }
  .breaking-card {
    padding: 12px 0;
  }
}

@media (max-width: 640px) {
  .breaking-archive {
    padding: 20px 16px 40px;
  }
  .breaking-archive__hero {
    padding: 16px 0 24px;
    margin-bottom: 32px;
  }
  .breaking-archive__hero::after {
    width: 80px;
  }
  .breaking-archive__eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 10px;
    gap: 6px;
  }
  .breaking-archive__pulse {
    width: 5px;
    height: 5px;
  }
  .breaking-archive__title {
    font-size: clamp(1.75rem, 5.5vw, 2rem);
    margin: 0 0 12px;
    line-height: 1.25;
  }
  .breaking-archive__subtitle {
    font-size: clamp(0.875rem, 2.2vw, 0.9375rem);
    line-height: 1.55;
    margin: 0 0 16px;
  }
  .breaking-archive__meta-bar {
    font-size: 0.8125rem;
    gap: 8px;
  }
  .breaking-card {
    padding: 12px 0;
  }
  .breaking-card__title {
    font-size: clamp(1.25rem, 5vw, 1.5rem) !important;
    line-height: 1.35 !important;
    margin: 6px 0 !important;
    font-weight: 700 !important;
  }
  .breaking-card__meta {
    font-size: 0.85rem;
    gap: 6px;
  }
  .breaking-card__excerpt {
    font-size: clamp(0.95rem, 3.2vw, 1.05rem);
    line-height: 1.6;
  }
  .breaking-card__footer {
    font-size: 0.85rem;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .breaking-card__tags {
    width: 100%;
    gap: 6px;
  }
  .breaking-card__tag {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  .breaking-card__expand {
    font-size: 0.9rem !important;
    margin: 6px 0 0 !important;
  }
  .breaking-card__expand-icon {
    width: 10px !important;
    height: 10px !important;
  }
  .breaking-card__content {
    margin-top: 12px;
    padding-top: 12px;
  }
  .breaking-card__content-inner {
    font-size: clamp(0.9375rem, 2.6vw, 1rem);
    line-height: 1.65;
  }
  .breaking-card__content-inner p {
    margin-bottom: 0.875rem;
  }
}

