/* Danuvo Dados — data-light-newsroom | deep-navy palette */

/* 1. Design tokens */
:root {
  --primary: #102A43;
  --accent: #38BDF8;
  --bg: #F1F7FC;
  --text: #0B1F33;
  --muted: #7B98B3;
  --white: #FFFFFF;
  --border: #C8DAE8;
  --border-strong: #102A43;
  --shadow: 0 1px 4px rgba(16, 42, 67, 0.06);
  --shadow-md: 0 4px 14px rgba(16, 42, 67, 0.09);
  --space-xs: 6px;
  --space-sm: 14px;
  --space-md: 22px;
  --space-lg: 36px;
  --space-xl: 52px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --container: 960px;
  --font-serif: "Georgia", "Times New Roman", "Noto Serif", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --line-height: 1.68;
  --transition: 0.22s ease;
}

/* 2. Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* 3. Typography — headline-serif-body-sans */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.22;
  color: var(--primary);
}

h1 { font-size: clamp(1.8rem, 4.2vw, 2.55rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.35rem); }
h4 { font-size: 1.05rem; }

p {
  margin-bottom: var(--space-sm);
}

.lead {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--muted);
}

.text-muted {
  color: var(--muted);
}

.text-small {
  font-size: 0.8125rem;
}

/* 4. Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  padding: var(--space-lg) 0;
}

.section-title {
  font-family: var(--font-serif);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-strong);
}

.page-header {
  padding: var(--space-lg) 0 var(--space-md);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
}

.page-header h1 {
  margin-bottom: var(--space-xs);
}

/* 5. Header — split-nav */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.logo:hover,
.logo:focus-visible {
  color: var(--primary);
  outline: none;
}

.logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}

.main-nav {
  display: none;
  gap: 2px;
}

.main-nav a {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary);
  outline: none;
}

.main-nav a.active {
  color: var(--accent);
  font-weight: 600;
}

.header-email {
  display: none;
  font-size: 0.8125rem;
  color: var(--muted);
}

.header-email a {
  color: var(--accent);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-sm);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

.mobile-nav a.active {
  color: var(--primary);
  font-weight: 700;
}

/* Category tags row — nav=category-tags-row */
.category-tags-row {
  background: var(--primary);
  padding: var(--space-xs) 0;
}

.category-tags-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  align-items: center;
}

.category-tags-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-right: var(--space-xs);
  flex-shrink: 0;
}

.category-tags-row a {
  display: inline-block;
  padding: 3px var(--space-sm);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
}

.category-tags-row a:hover,
.category-tags-row a:focus-visible {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--accent);
  color: var(--white);
  outline: none;
}

/* 6. Hero carousel — carousel-single, no autoplay */
.hero-section {
  padding: var(--space-lg) 0 var(--space-md);
}

.hero-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.hero-carousel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-column: 1 / -1;
}

.carousel-track {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
}

.carousel-slide.is-active {
  display: grid;
}

.carousel-slide-content {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-slide-content .masthead-date {
  margin-bottom: var(--space-xs);
}

.carousel-slide-content h1 {
  margin-bottom: var(--space-sm);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.carousel-slide-content .lead {
  margin-bottom: var(--space-md);
}

.carousel-slide-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.carousel-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.carousel-arrows {
  display: flex;
  gap: var(--space-xs);
}

.carousel-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1.1rem;
  background: var(--white);
  transition: background var(--transition), border-color var(--transition);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  outline: none;
}

/* Bento grid — homepage=hero-grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.bento-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.bento-cell.span-wide {
  grid-column: 1 / -1;
}

.bento-stat {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
}

.bento-stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.bento-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
}

/* Masthead date — Jun 12, 2026 format */
.masthead-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* 7. Tags — bracket-label */
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.tag::before {
  content: "[";
  color: var(--muted);
  margin-right: 2px;
}

.tag::after {
  content: "]";
  color: var(--muted);
  margin-left: 2px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

/* 8. Buttons — subtle-ghost */
.btn {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  background: rgba(16, 42, 67, 0.06);
  border-color: var(--border);
  color: var(--primary);
  outline: none;
}

.btn-accent {
  color: var(--accent);
  border-color: rgba(56, 189, 248, 0.4);
}

.btn-accent:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--accent);
  color: var(--primary);
}

/* 9. Cards — editorial-lines */
.card-editorial {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  overflow: hidden;
  transition: border-left-color var(--transition), box-shadow var(--transition);
}

.card-editorial:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.card-editorial .card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-editorial .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--radius-md) 0 0;
}

.card-editorial .card-body {
  padding: var(--space-sm) var(--space-md);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
  line-height: 1.35;
}

.card-title a {
  color: var(--primary);
}

.card-title a:hover {
  color: var(--accent);
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: var(--space-xs);
}

/* Compact dense list — article_list=compact-dense-list */
.dense-list {
  display: flex;
  flex-direction: column;
}

.dense-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.dense-item:last-child {
  border-bottom: none;
}

.dense-thumb {
  width: 72px;
  height: 54px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--border);
  flex-shrink: 0;
}

.dense-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dense-body .card-title {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.dense-body .byline {
  font-size: 0.75rem;
}

.dense-body--full {
  grid-column: 1 / -1;
  padding-left: 0;
}

/* Byline */
.byline {
  font-size: 0.8125rem;
  color: var(--muted);
  font-family: var(--font-sans);
}

.byline a {
  color: var(--accent);
  font-weight: 500;
}

/* 10. Author card-with-avatar */
.author-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.author-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.author-card-info h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-card-role {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.author-card-bio {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Sidebar — author-widget-only */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.article-main {
  min-width: 0;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sidebar-author-widget {
  position: sticky;
  top: 120px;
}

/* Article page */
.article-header {
  margin-bottom: var(--space-md);
}

.article-header h1 {
  margin-bottom: var(--space-sm);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  color: var(--muted);
}

.article-featured-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 1px solid var(--border);
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.article-content {
  font-size: 1.05rem;
}

.article-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.article-content h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: var(--space-xs);
}

.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  background: rgba(56, 189, 248, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-serif);
}

.updated-note {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.related-articles {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--border-strong);
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* Articles listing */
.articles-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.filter-tags a {
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text);
  background: var(--white);
}

.filter-tags a:hover,
.filter-tags a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Content pages */
.content-page {
  max-width: 680px;
}

.content-page.wide {
  max-width: none;
}

.content-page h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-page h2:first-of-type {
  margin-top: var(--space-md);
}

.content-page ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.content-page li {
  margin-bottom: var(--space-xs);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-info {
  background: var(--white);
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-info h2 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.contact-form {
  background: var(--white);
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* About team grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

/* Footer — stacked-links */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xl);
}

.footer-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}

.footer-links-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.footer-links-row a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links-row a:hover,
.footer-links-row a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

/* Cookie — inline-footer-note */
.cookie-inline {
  display: none;
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-inline.is-visible {
  display: block;
}

.cookie-inline p {
  margin-bottom: var(--space-xs);
}

.cookie-inline a {
  color: var(--accent);
}

.cookie-inline a:hover {
  color: var(--white);
}

.cookie-inline-actions {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.cookie-inline .btn {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
  padding: 4px var(--space-sm);
}

.cookie-inline .btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--accent);
}

/* Data highlight box */
.data-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.data-highlight strong {
  color: var(--primary);
  font-family: var(--font-serif);
}

/* Editorial panorama block */
.editorial-panorama {
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.editorial-panorama h2 {
  margin-bottom: var(--space-sm);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* 11. Media queries — mixed-asymmetric spacing */
@media (min-width: 520px) {
  .carousel-slide.is-active {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-slide-image {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    aspect-ratio: auto;
    min-height: 260px;
  }

  .dense-item {
    grid-template-columns: 96px 1fr;
  }

  .dense-thumb {
    width: 96px;
    height: 68px;
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .header-email {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }

  .hero-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
  }

  .hero-carousel {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-cell.stat-1 {
    grid-column: 5 / 7;
  }

  .bento-cell.stat-2 {
    grid-column: 5 / 7;
  }

  .article-layout {
    grid-template-columns: 1fr 280px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .articles-page-layout {
    grid-template-columns: 1fr 260px;
  }
}

@media (min-width: 960px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-grid.asymmetric {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
