/* ============================================================
   Newsroom Page
   ============================================================ */

.newsroom-page {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 4rem 4rem;
  box-sizing: border-box;
}

/* ---- Section Header (reuse hero-brand from explore, hidden globally in base.css) ---- */

.newsroom-header {
  text-align: center;
  padding-top: 3rem;
  margin-bottom: 1.5rem;
}

.newsroom-page .hero-brand-title {
  display: flex !important;
  justify-content: center;
  margin: 0;
}

.newsroom-page .hero-brand-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.newsroom-page .hero-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 168, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsroom-page .hero-brand-link:hover .hero-brand-logo {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(0, 168, 255, 0.6);
}

.newsroom-page .brand-dash {
  display: inline !important;
  font-size: 2.5rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.newsroom-page .hero-brand-link:hover .brand-dash {
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.4);
}

.newsroom-header-accent {
  font-size: 2.5rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-primary, #00a8ff);
}

.newsroom-header-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.4rem auto 0;
  max-width: 600px;
}

/* ---- Topic Group Selector ---- */

.newsroom-group-selector {
  position: relative;
  margin: 0 0 1.25rem;
}

.newsroom-group-active {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.newsroom-group-active:hover {
  background: transparent;
}

.newsroom-group-active.open {
  background: transparent;
}

.newsroom-group-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  padding: 2px;
}

.newsroom-group-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.newsroom-group-chevron {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: transform 0.15s;
}

.newsroom-group-active.open .newsroom-group-chevron {
  transform: rotate(180deg);
}

.newsroom-group-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: rgba(20, 22, 28, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.newsroom-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.1s;
}

.newsroom-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.newsroom-dropdown-thumb {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
}

.newsroom-dropdown-thumb-empty {
  background: rgba(255, 255, 255, 0.06);
}

.newsroom-dropdown-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.newsroom-dropdown-empty {
  padding: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* ---- Tab Bar ---- */

.newsroom-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.newsroom-tabs::-webkit-scrollbar {
  display: none;
}

.newsroom-tab {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0.9rem;
  height: 40px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s;
  user-select: none;
}

.newsroom-tab:first-child {
  padding-left: 0;
}

.newsroom-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.newsroom-tab.active {
  color: #fff;
  font-weight: 600;
}

.newsroom-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: transparent;
  border-radius: 2px 2px 0 0;
  transition: background 0.15s;
}

.newsroom-tab:first-child::after {
  left: 0;
}

.newsroom-tab.active::after {
  background: #fff;
}

/* Tab panels */
.newsroom-tab-panel {
  display: none;
}

.newsroom-tab-panel.active {
  display: block;
}

/* ---- Headlines 3-Panel Layout ---- */

.newsroom-headlines {
  min-height: 500px;
}

.newsroom-headlines-body {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  min-height: 450px;
}

/* Left: story list */
.newsroom-headlines-list {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  overflow-y: auto;
  scrollbar-width: none;
}

.newsroom-headlines-list::-webkit-scrollbar { display: none; }

.newsroom-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.1s;
}

.newsroom-hl-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.newsroom-hl-item.active {
  background: rgba(255, 255, 255, 0.05);
}

.newsroom-hl-score {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  min-width: 28px;
  text-align: center;
  padding-top: 2px;
}

.newsroom-hl-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsroom-hl-item.active .newsroom-hl-title {
  color: #fff;
}

.newsroom-hl-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
}

/* Center: detail panel */
.newsroom-headlines-detail {
  padding: 20px 24px;
  overflow-y: auto;
  scrollbar-width: none;
}

.newsroom-headlines-detail::-webkit-scrollbar { display: none; }

.newsroom-headlines-detail-empty {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  padding: 2rem 0;
}

.newsroom-hd-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 12px;
}

.newsroom-hd-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsroom-hd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.newsroom-hd-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
}

.newsroom-hd-summary {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Right: sources */
.newsroom-headlines-sources {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  overflow-y: auto;
  scrollbar-width: none;
  padding: 12px 0;
}

.newsroom-headlines-sources::-webkit-scrollbar { display: none; }

.newsroom-hs-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 16px 8px;
}

.newsroom-hs-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 16px;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}

.newsroom-hs-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.newsroom-hs-source-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsroom-hs-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.newsroom-hs-article-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsroom-hs-link {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
}

.newsroom-hs-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Shared Card Style (about_section pattern) ---- */

.newsroom-card {
  background: rgba(255, 255, 255, 0.007);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.newsroom-card-header {
  position: relative;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.024);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsroom-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.newsroom-card-header-title {
  font-size: 0.7rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.newsroom-card-header-subtitle {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* ---- AI Summary ---- */

.newsroom-summary {
  margin-bottom: 1.5rem;
}

.newsroom-summary-block {
  background: rgba(255, 255, 255, 0.007);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.newsroom-summary-content {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff !important;
}

.newsroom-summary-content p {
  margin: 0 0 10px;
  color: #fff;
}

.newsroom-summary-content ul,
.newsroom-summary-content ol {
  margin: 0;
  padding-left: 18px;
  list-style-type: disc !important;
  color: #fff;
}

.newsroom-summary-content li {
  margin-bottom: 8px;
  list-style-type: disc !important;
  color: #fff;
}

.newsroom-summary-content li::marker {
  color: #fff;
}

.newsroom-summary-content strong {
  color: #fff;
}

.newsroom-summary-content a:not(.ce-ai-source) {
  color: var(--color-primary, #00a8ff);
  text-decoration: none;
}

.newsroom-summary-content a:not(.ce-ai-source):hover {
  text-decoration: underline;
}

.newsroom-summary-content .ce-ai-source,
.newsroom-summary-content a.ce-ai-source {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  vertical-align: super;
}

.newsroom-summary-loading {
  background: rgba(255, 255, 255, 0.007);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.newsroom-summary-empty {
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

.newsroom-summary-placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* ---- Recent News Section ---- */

.newsroom-news-section-heading {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.newsroom-news-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.newsroom-news-section {
}

.newsroom-news-body {
  padding: 16px 20px;
}

.newsroom-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  min-height: 340px;
  align-content: start;
}

.newsroom-news-grid .news-card {
  text-decoration: none;
  color: inherit;
}

.newsroom-news-grid .news-card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-card-favicon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
  object-fit: contain;
}

.news-card-favicon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
}

/* ---- News Pager ---- */

.newsroom-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 1rem;
}

.newsroom-pager-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.newsroom-pager-num:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.newsroom-pager-num.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.newsroom-pager-ellipsis {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  padding: 0 2px;
}

/* ---- Topic Pills (sub-filters) ---- */

.newsroom-pills-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 1rem;
  scrollbar-width: none;
}

.newsroom-pills-row::-webkit-scrollbar {
  display: none;
}

.newsroom-pill {
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.newsroom-pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.newsroom-pill.active {
  background: rgba(0, 168, 255, 0.15);
  border-color: rgba(0, 168, 255, 0.4);
  color: #fff;
}

/* ---- Feed Items Grid ---- */

.newsroom-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.newsroom-items .news-card {
  text-decoration: none;
  color: inherit;
}

.newsroom-items-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.3);
  grid-column: 1 / -1;
}

.newsroom-empty {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  padding: 2rem;
  text-align: center;
  grid-column: 1 / -1;
}

/* ---- Load More ---- */

.newsroom-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.newsroom-load-more-btn {
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.15s;
}

.newsroom-load-more-btn:hover {
  color: #fff;
  border-color: rgba(0, 168, 255, 0.4);
  background: rgba(0, 168, 255, 0.08);
}

/* ---- Loading Spinner ---- */

.newsroom-summary-loading .loading-spinner,
.newsroom-items-loading .loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 168, 255, 0.2);
  border-top-color: rgba(0, 168, 255, 0.8);
  border-radius: 50%;
  animation: newsroom-spin 0.8s linear infinite;
}

@keyframes newsroom-spin {
  to { transform: rotate(360deg); }
}

/* ---- Discussion ---- */

.newsroom-discussion {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.newsroom-discussion-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.newsroom-discussion-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  min-height: 200px;
}

.newsroom-discussion-messages::-webkit-scrollbar {
  width: 4px;
}

.newsroom-discussion-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.newsroom-discussion-empty {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  text-align: center;
  padding: 2rem 0;
}

/* Message bubble */
.newsroom-discussion-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.newsroom-discussion-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}

.newsroom-discussion-msg-content {
  flex: 1;
  min-width: 0;
}

.newsroom-discussion-msg-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.newsroom-discussion-msg-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.newsroom-discussion-msg-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

.newsroom-discussion-msg-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  word-break: break-word;
}

/* Compose area */
.newsroom-discussion-compose {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
}

.newsroom-discussion-login-prompt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  padding: 4px 0;
}

.newsroom-discussion-login-prompt a {
  color: var(--color-primary, #00a8ff);
  text-decoration: none;
}

.newsroom-discussion-login-prompt a:hover {
  text-decoration: underline;
}

.newsroom-discussion-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsroom-discussion-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}

.newsroom-discussion-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  color: #fff !important;
  font-size: 13px !important;
  outline: none !important;
  box-shadow: none !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.3 !important;
}

.newsroom-discussion-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.newsroom-discussion-input:focus {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.newsroom-discussion-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
  padding: 0;
  margin: 0;
}

.newsroom-discussion-send:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* ---- Feed Tab (centered timeline, page-level scroll) ---- */

.newsroom-feed-centered {
  max-width: 500px;
  margin: 0 auto;
}

/* ---- Discussion Tab (centered card) ---- */

.newsroom-discussion-centered {
  height: 875px;
}

.newsroom-discussion-centered .newsroom-discussion {
  height: 100%;
}

.newsroom-discussion-centered .newsroom-discussion-messages {
  min-height: 0;
}

.newsroom-timeline-wrapper {
  position: relative;
}

.newsroom-timeline-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Override timeline-viewer styles for newsroom context */
.newsroom-timeline-wrapper > .timeline-items-container {
  margin-left: 0;
}

.newsroom-timeline-wrapper .timeline-items-list {
  max-width: none;
  padding-left: 0;
}

.newsroom-timeline-wrapper .timeline-slot-wrapper::before,
.newsroom-timeline-wrapper .timeline-date-indicator {
  display: none;
}

.newsroom-timeline-wrapper .timeline-slot-wrapper {
  padding-top: 0;
}

.newsroom-timeline-wrapper .timeline-slot {
  max-width: 430px;
}

.newsroom-timeline-wrapper .timeline-slot-content .instagram-container,
.newsroom-timeline-wrapper .timeline-slot-content .instagram-embed-container {
  max-width: 100% !important;
  width: 100% !important;
}

.newsroom-timeline-wrapper .instagram-embed-container iframe,
.newsroom-timeline-wrapper .instagram-embed-container .instagram-media,
.newsroom-timeline-wrapper .instagram-embed-container .instagram-media-rendered {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.newsroom-feed-sentinel {
  height: 1px;
}

/* ---- Responsive ---- */

@media (max-width: 1000px) {
  .newsroom-headlines-body {
    grid-template-columns: 1fr;
  }

  .newsroom-headlines-list {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 200px;
  }

  .newsroom-headlines-sources {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 640px) {
  .newsroom-page {
    padding: 0 1rem 3rem;
  }

  .newsroom-items {
    grid-template-columns: 1fr;
  }
}
