/* ==================================
   APEX BLACK NEWS - CSS EXTENSIONS
   Premium news styling for national & local coverage
   ================================== */

/* Breaking News Banner */
.breaking-news-banner {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  padding: 1rem 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.breaking-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.breaking-label {
  background: white;
  color: #ff4444;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.breaking-text {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
}

.breaking-link {
  color: white;
  text-decoration: underline;
  white-space: nowrap;
  font-weight: 600;
}

.breaking-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.breaking-close:hover {
  opacity: 1;
}

/* News Header */
.news-header {
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0 0;
}

.news-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.news-subtitle {
  color: #b8b8b8;
  font-size: 1.125rem;
  margin: 0 0 2rem;
}

/* City Selector */
.city-selector-wrapper {
  position: relative;
  margin: 2rem 0;
}

.city-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: auto;
  min-width: 300px;
}

.city-selector-btn:hover {
  background: #222222;
  border-color: #ff6b35;
}

.location-icon {
  font-size: 1.25rem;
}

.selected-city {
  flex: 1;
  text-align: left;
}

.dropdown-arrow {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: transform 0.2s;
}

.city-selector-btn.open .dropdown-arrow {
  transform: rotate(180deg);
}

.city-selector-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-width: 350px;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.city-search {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.city-search input {
  width: 100%;
  padding: 0.75rem;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  font-size: 1rem;
}

.popular-cities {
  padding: 1rem;
}

.popular-cities h4 {
  color: #b8b8b8;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.75rem;
}

.city-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}

.city-option:hover {
  background: #222222;
}

.all-cities-link {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.all-cities-link a {
  color: #ff6b35;
  font-weight: 600;
  text-decoration: none;
}

/* News Navigation */
.news-nav {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.news-nav::-webkit-scrollbar {
  display: none;
}

.news-nav-link {
  padding: 0.75rem 1.5rem;
  color: #b8b8b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.news-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 107, 53, 0.1);
}

.news-nav-link.active {
  color: #ffffff;
  border-bottom-color: #ff6b35;
}

/* News Layout */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  margin: 3rem 0;
}

.news-primary {
  min-width: 0;
}

.news-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* News Sections */
.news-section {
  margin: 4rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.section-subtitle {
  color: #b8b8b8;
  font-size: 0.9375rem;
  margin: 0.5rem 0 0;
}

.section-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: opacity 0.2s;
}

.section-link:hover {
  opacity: 0.8;
}

/* Hero Story */
.hero-story {
  position: relative;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-story-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
}

.hero-story-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-badge {
  padding: 0.375rem 0.875rem;
  background: #ff6b35;
  color: white;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge.breaking {
  background: #ff4444;
}

.hero-story-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.hero-story-excerpt {
  color: #b8b8b8;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 800px;
}

.hero-story-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b8b8b8;
  font-size: 0.9375rem;
}

.hero-story-byline strong {
  color: #ffffff;
  font-weight: 600;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* News Story Card */
.news-story-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.news-story-card:hover {
  transform: translateY(-4px);
  border-color: #ff6b35;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.news-story-card.breaking {
  border-left: 4px solid #ff4444;
}

.news-story-card.editors-pick {
  border-left: 4px solid #00d4ff;
}

.news-story-card.community-impact {
  border-left: 4px solid #00ff9f;
}

.story-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #1a1a1a;
}

.story-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.story-badge {
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-badge.breaking {
  background: #ff4444;
  color: white;
}

.story-badge.developing {
  background: #ffd23f;
  color: #0a0a0a;
}

.story-badge.updated {
  background: #00d4ff;
  color: #0a0a0a;
}

.story-badge.local {
  background: #00ff9f;
  color: #0a0a0a;
}

.story-badge.national {
  background: #b537ff;
  color: white;
}

.story-category {
  color: #ff6b35;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.story-excerpt {
  color: #b8b8b8;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #8a8a8a;
}

.story-reporter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #b8b8b8;
}

.story-time {
  font-size: 0.8125rem;
}

/* Topics Grid */
.topics-grid-section {
  margin: 4rem 0;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.topic-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.topic-card:hover {
  transform: translateY(-4px);
  border-color: #ff6b35;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.topic-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.topic-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.topic-card p {
  color: #b8b8b8;
  font-size: 0.9375rem;
  margin: 0;
}

/* Sidebar Modules */
.sidebar-module {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.module-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
}

.module-description {
  color: #b8b8b8;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.module-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  margin-top: 1rem;
}

.module-link:hover {
  text-decoration: underline;
}

/* Editor's Picks List */
.editors-picks-list,
.city-trending-list,
.trending-discussions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pick-item,
.trending-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: opacity 0.2s;
}

.pick-item:last-child,
.trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pick-item:hover,
.trending-item:hover {
  opacity: 0.8;
}

.pick-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background: #1a1a1a;
}

.pick-content {
  flex: 1;
  min-width: 0;
}

.pick-title {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.pick-meta {
  color: #8a8a8a;
  font-size: 0.8125rem;
}

/* Reporters List */
.reporters-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reporter-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #1a1a1a;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.reporter-item:hover {
  background: #222222;
}

.reporter-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #2a2a2a;
}

.reporter-info {
  flex: 1;
  min-width: 0;
}

.reporter-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9375rem;
  margin: 0 0 0.25rem;
}

.reporter-beat {
  color: #8a8a8a;
  font-size: 0.8125rem;
}

.follow-reporter-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid #ff6b35;
  color: #ff6b35;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.follow-reporter-btn:hover {
  background: #ff6b35;
  color: white;
}

.follow-reporter-btn.following {
  background: #ff6b35;
  color: white;
}

/* Newsletter Module */
.newsletter-module {
  background: linear-gradient(135deg, #ff6b35 0%, #cc5528 100%);
  border: none;
}

.newsletter-module .module-title,
.newsletter-module .module-description {
  color: white;
}

.newsletter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.newsletter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  cursor: pointer;
}

.newsletter-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.newsletter-input {
  width: 100%;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-divider {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0;
  font-size: 0.875rem;
}

/* About Module */
.about-module {
  background: #1a1a1a;
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.about-links a {
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.about-links a:hover {
  opacity: 0.8;
}

/* Topic Page Styles */
.topic-header,
.city-header {
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.breadcrumb {
  color: #8a8a8a;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: #8a8a8a;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ff6b35;
}

.topic-title,
.city-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.topic-description,
.city-description {
  color: #b8b8b8;
  font-size: 1.125rem;
  margin: 0 0 1.5rem;
  max-width: 800px;
}

.topic-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-group label {
  color: #b8b8b8;
  font-size: 0.875rem;
  font-weight: 600;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #b8b8b8;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: #ff6b35;
  color: #ffffff;
}

.filter-btn.active {
  background: #ff6b35;
  border-color: #ff6b35;
  color: white;
}

.sort-select {
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
}

/* Stories List */
.stories-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-list-item {
  display: flex;
  gap: 2rem;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.story-list-item:hover {
  transform: translateX(8px);
  border-color: #ff6b35;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
}

.story-list-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  background: #1a1a1a;
}

.story-list-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.story-count {
  color: #8a8a8a;
  font-size: 0.875rem;
}

/* City Page Styles */
.city-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.city-info {
  flex: 1;
}

.location-pin {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.city-meta {
  color: #8a8a8a;
  font-size: 1rem;
  margin: 0.5rem 0 0;
}

.city-stats {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b35;
}

.stat-label {
  color: #8a8a8a;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

.city-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.city-nav::-webkit-scrollbar {
  display: none;
}

.city-nav-link {
  padding: 0.75rem 1.5rem;
  color: #b8b8b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.city-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 107, 53, 0.1);
}

.city-nav-link.active {
  color: #ffffff;
  border-bottom-color: #ff6b35;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-item {
  display: flex;
  gap: 1.5rem;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.event-item:hover {
  border-color: #ff6b35;
  transform: translateX(4px);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #ff6b35;
  color: white;
  border-radius: 8px;
  text-align: center;
}

.event-date-day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-month {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-info {
  flex: 1;
}

.event-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.event-details {
  color: #b8b8b8;
  font-size: 0.9375rem;
  margin: 0;
}

/* Neighborhood Grid */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.neighborhood-item {
  padding: 1.5rem;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.neighborhood-item:hover {
  border-color: #ff6b35;
  transform: translateY(-2px);
}

.neighborhood-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.neighborhood-count {
  color: #8a8a8a;
  font-size: 0.875rem;
}

/* Cities Page */
.cities-header {
  background: #141414;
  padding: 3rem 0;
  text-align: center;
}

.cities-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1rem;
}

.cities-subtitle {
  color: #b8b8b8;
  font-size: 1.125rem;
  margin: 0 0 2rem;
}

.cities-search-bar {
  display: flex;
  max-width: 600px;
  margin: 0 auto 2rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.cities-search-bar input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
}

.search-btn {
  padding: 1rem 1.5rem;
  background: #ff6b35;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s;
}

.search-btn:hover {
  background: #e55a2a;
}

.region-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.region-filter {
  padding: 0.75rem 1.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #b8b8b8;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.region-filter:hover {
  border-color: #ff6b35;
  color: #ffffff;
}

.region-filter.active {
  background: #ff6b35;
  border-color: #ff6b35;
  color: white;
}

.cities-section,
.your-cities-section {
  margin: 4rem 0;
}

.region-group {
  margin: 3rem 0;
}

.region-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.city-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.city-card:hover {
  transform: translateY(-4px);
  border-color: #ff6b35;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.city-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.city-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.city-card-region {
  padding: 0.25rem 0.75rem;
  background: #1a1a1a;
  border-radius: 4px;
  color: #b8b8b8;
  font-size: 0.75rem;
  font-weight: 600;
}

.city-card-stats {
  display: flex;
  gap: 2rem;
  margin: 1rem 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cities-cta-section {
  margin: 4rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #ff6b35 0%, #cc5528 100%);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.cta-card p {
  font-size: 1.125rem;
  margin: 0 0 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Reporter Profile Styles */
.reporter-header {
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
}

.reporter-profile-top {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.reporter-avatar-large {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  background: #1a1a1a;
}

.reporter-info {
  flex: 1;
}

.reporter-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.reporter-title {
  color: #ff6b35;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.reporter-meta {
  display: flex;
  gap: 2rem;
  color: #b8b8b8;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.reporter-location,
.reporter-beat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reporter-stats {
  display: flex;
  gap: 3rem;
  margin: 1.5rem 0;
}

.reporter-bio {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 2rem 0;
}

.reporter-contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coverage-tag {
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #b8b8b8;
  font-size: 0.875rem;
  font-weight: 600;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.award-item {
  padding: 1rem;
  background: #1a1a1a;
  border-radius: 8px;
}

.award-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9375rem;
  margin: 0 0 0.25rem;
}

.award-year {
  color: #8a8a8a;
  font-size: 0.8125rem;
}

/* View Toggle */
.view-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #b8b8b8;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.view-btn:hover {
  border-color: #ff6b35;
  color: #ffffff;
}

.view-btn.active {
  background: #ff6b35;
  border-color: #ff6b35;
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .news-sidebar {
    position: static;
  }
  
  .hero-story {
    height: 500px;
  }
  
  .hero-story-content {
    padding: 2rem;
  }
  
  .hero-story-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .news-title {
    font-size: 2.5rem;
  }
  
  .news-nav {
    padding: 0.5rem 0 0;
  }
  
  .news-nav-link {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-story {
    height: 400px;
  }
  
  .hero-story-content {
    padding: 1.5rem;
  }
  
  .hero-story-title {
    font-size: 1.75rem;
  }
  
  .hero-story-excerpt {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .story-list-item {
    flex-direction: column;
  }
  
  .story-list-image {
    width: 100%;
    height: 200px;
  }
  
  .filter-bar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .reporter-profile-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .reporter-avatar-large {
    width: 120px;
    height: 120px;
  }
  
  .reporter-name {
    font-size: 2rem;
  }
  
  .reporter-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cities-grid {
    grid-template-columns: 1fr;
  }
  
  .city-title-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .city-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .breaking-news-banner {
    padding: 0.75rem 0;
  }
  
  .breaking-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .breaking-text {
    font-size: 0.875rem;
  }
  
  .news-title {
    font-size: 2rem;
  }
  
  .city-selector-btn {
    min-width: 100%;
  }
  
  .city-selector-dropdown {
    min-width: 100%;
  }
  
  .hero-story {
    height: 350px;
  }
  
  .hero-story-title {
    font-size: 1.5rem;
  }
  
  .story-title {
    font-size: 1.125rem;
  }
  
  .topic-card {
    padding: 1.5rem;
  }
  
  .topic-icon {
    font-size: 2.5rem;
  }
  
  .city-stats {
    gap: 1rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
}
