:root {
  --breaking-blue: #1d4ed8;
  --breaking-blue-hover: #1e3a8a;
  --breaking-ink: #111827;
  --breaking-muted: #6b7280;
  --breaking-border: #e5e7eb;
  --breaking-soft: #f9fafb;
  --breaking-warm: #fef3c7;
  --breaking-light-bg: #f8fafc;
}

/* 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: 900px;
  margin: 0 auto;
  padding: 0 20px 48px;
  color: var(--breaking-ink);
  line-height: 1.65;
  background: #ffffff;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.breaking-archive__hero {
  background: #fff;
  border-bottom: 2px solid var(--breaking-ink);
  padding: 0 0 16px;
  margin-bottom: 0;
  position: relative;
}

.breaking-archive__hero::after {
  display: none;
}

.breaking-archive__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--breaking-blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.breaking-archive__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--breaking-blue);
  animation: breaking-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes breaking-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.breaking-archive__title {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--breaking-ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 900px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.breaking-archive__subtitle {
  margin: 0 0 12px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--breaking-muted);
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
}

.breaking-archive__meta-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--breaking-muted);
  margin-top: 8px;
  font-weight: 400;
}

.breaking-archive__dot {
  color: var(--breaking-border);
  font-weight: 400;
}

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

.breaking-archive__lead .breaking-card {
  padding: 18px 0 18px 20px;
  border-left: 3px solid var(--breaking-blue);
  border-bottom: 1px solid var(--breaking-border);
  background: var(--breaking-soft);
}

.breaking-archive__lead .breaking-card:hover {
  background: #f1f5f9;
}

.breaking-archive__lead .breaking-card__title {
  font-size: clamp(26px, 3vw, 32px) !important;
  font-weight: 800 !important;
}

.breaking-archive__list {
  margin-top: 0;
  display: grid;
  gap: 0;
  border-left: 2px solid var(--breaking-border);
  margin-left: 6px;
}

.breaking-card {
  display: block;
  padding: 12px 0 12px 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--breaking-border);
  transition: background-color 0.15s ease;
  position: relative;
}

.breaking-card::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--breaking-muted);
  transition: border-color 0.2s ease, background 0.2s ease;
  z-index: 1;
}

.breaking-card:first-of-type::before {
  border-color: var(--breaking-blue);
  background: var(--breaking-blue);
}

.breaking-card:hover {
  background-color: var(--breaking-soft);
}

.breaking-card:hover::before {
  border-color: var(--breaking-blue);
  background: var(--breaking-blue);
}

.breaking-card:first-of-type {
  border-top: none;
}

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

.breaking-card.has-expanded-content:hover::before {
  border-color: var(--breaking-blue);
  background: var(--breaking-blue);
}

.breaking-card__timeline {
  display: none;
}

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

.breaking-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--breaking-muted);
  font-weight: 500;
  margin-bottom: 0;
  order: -1;
}

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

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

.breaking-card__badge--fresh {
  background: var(--breaking-blue);
  color: #ffffff;
  border: none;
}

.breaking-card__dot {
  color: #cccccc;
}

.breaking-card__title {
  margin: 4px 0 !important;
  font-size: clamp(20px, 2.5vw, 24px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  order: 1;
}

.breaking-card__title a {
  color: var(--breaking-ink);
  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: var(--breaking-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  font-weight: 400;
  order: 2;
}

.breaking-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--breaking-muted);
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
  order: 3;
}

.breaking-card__author {
  font-weight: 500;
  color: var(--breaking-muted);
}

.breaking-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--breaking-soft);
  color: var(--breaking-ink);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: 1px solid var(--breaking-border);
  border-radius: 3px;
}

.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: 15px !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 var(--breaking-border);
  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: 16px;
  line-height: 1.7;
  color: #374151;
  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: 16px;
  color: #374151;
}

.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: 24px;
  margin-bottom: 12px;
  color: var(--breaking-ink);
  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: 16px 0;
  padding-left: 24px;
}

.breaking-card__content-inner li {
  margin-bottom: 8px;
}

.breaking-card__content-inner strong,
.breaking-card__content-inner b {
  font-weight: 600;
  color: var(--breaking-ink);
}

.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 32px;
  border: 2px solid var(--breaking-ink);
  background: #fff;
  color: var(--breaking-ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.breaking-archive__load-more:hover {
  background: var(--breaking-ink);
  color: #ffffff;
}

.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: 0 16px 40px;
  }
  .breaking-card {
    padding: 10px 0 10px 18px;
  }
  .breaking-archive__lead .breaking-card {
    padding: 14px 0 14px 18px;
  }
}

@media (max-width: 640px) {
  .breaking-archive {
    padding: 0 16px 40px;
  }
  .breaking-archive__hero {
    padding: 0 0 14px;
    margin-bottom: 0;
  }
  .breaking-archive__hero::after {
    display: none;
  }
  .breaking-archive__eyebrow {
    font-size: 12px;
    margin-bottom: 12px;
    gap: 6px;
  }
  .breaking-archive__pulse {
    width: 6px;
    height: 6px;
  }
  .breaking-archive__title {
    font-size: clamp(28px, 6vw, 32px);
    margin: 0 0 12px;
    line-height: 1.2;
  }
  .breaking-archive__subtitle {
    font-size: clamp(14px, 2.2vw, 15px);
    line-height: 1.55;
    margin: 0 0 16px;
  }
  .breaking-archive__meta-bar {
    font-size: 13px;
    gap: 8px;
  }
  /* Simplify timeline on mobile */
  .breaking-archive__list {
    border-left: none;
    margin-left: 0;
  }
  .breaking-card::before {
    display: none;
  }
  .breaking-card {
    padding: 10px 0;
  }
  .breaking-archive__lead .breaking-card {
    padding: 14px 12px;
    border-left: 3px solid var(--breaking-blue);
  }
  .breaking-card__title {
    font-size: clamp(18px, 4.5vw, 22px) !important;
    line-height: 1.3 !important;
    margin: 4px 0 !important;
    font-weight: 700 !important;
  }
  .breaking-archive__lead .breaking-card__title {
    font-size: clamp(22px, 5.5vw, 26px) !important;
  }
  .breaking-card__meta {
    font-size: 12px;
    gap: 6px;
  }
  .breaking-card__excerpt {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.55;
  }
  .breaking-card__footer {
    font-size: 13px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .breaking-card__tags {
    width: 100%;
    gap: 6px;
  }
  .breaking-card__tag {
    font-size: 12px;
    padding: 3px 8px;
  }
  .breaking-card__expand {
    font-size: 14px !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(15px, 2.6vw, 16px);
    line-height: 1.65;
  }
  .breaking-card__content-inner p {
    margin-bottom: 14px;
  }
}

