html.template-nyt {
  --nyt-bg: #f8f8f8;
  --nyt-paper: #ffffff;
  --nyt-paper-soft: #fbfbfb;
  --nyt-ink: #121212;
  --nyt-ink-soft: #414141;
  --nyt-muted: #6b6b6b;
  --nyt-line: #e3e3e3;
  --nyt-line-strong: #cfcfcf;
  --nyt-accent: #121212;
  --nyt-link: #1a1a1a;
  --nyt-link-hover: #4d4d4d;
  --nyt-container: 1360px;
}

html.template-nyt body {
  background: var(--nyt-bg);
  color: var(--nyt-ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.template-nyt a {
  color: var(--nyt-link);
  text-decoration: none;
}

html.template-nyt a:hover,
html.template-nyt a:focus {
  color: var(--nyt-link-hover);
}

html.template-nyt h1,
html.template-nyt h2,
html.template-nyt h3,
html.template-nyt h4,
html.template-nyt h5,
html.template-nyt h6,
html.template-nyt .h1,
html.template-nyt .h2,
html.template-nyt .h3,
html.template-nyt .h4,
html.template-nyt .h5,
html.template-nyt .h6 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
  color: #111;
}

html.template-nyt p,
html.template-nyt li,
html.template-nyt .nav-link,
html.template-nyt .btn,
html.template-nyt input,
html.template-nyt textarea,
html.template-nyt select,
html.template-nyt .text-xs,
html.template-nyt .text-sm,
html.template-nyt .text-xxs {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html.template-nyt .container,
html.template-nyt .container-lg {
  max-width: var(--nyt-container);
}

html.template-nyt #loading {
  background: rgba(12, 12, 12, 0.45);
}

html.template-nyt .alert {
  border-radius: 0;
  border: 1px solid var(--nyt-line-strong);
  background: #fff;
  color: var(--nyt-ink);
}

html.template-nyt .nyt-shell {
  background: var(--nyt-paper);
  border: 1px solid var(--nyt-line);
  margin-top: 10px;
  margin-bottom: 16px;
}

html.template-nyt .nyt-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--nyt-line);
  padding: 8px 14px;
  font-size: 12px;
}

html.template-nyt .nyt-toolbar__left,
html.template-nyt .nyt-toolbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

html.template-nyt .nyt-toolbar__right {
  justify-content: flex-end;
}

html.template-nyt .nyt-toolbar__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3a3a3a;
  font-weight: 600;
}

html.template-nyt .nyt-toolbar__action span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

html.template-nyt .nyt-toolbar__date {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
}

html.template-nyt .nyt-toolbar__right a {
  color: #555;
  width: 28px;
  height: 28px;
  border: 1px solid var(--nyt-line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html.template-nyt .nyt-brandline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--nyt-line);
}

html.template-nyt .nyt-brandline__logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html.template-nyt .nyt-brandline__logo img {
  max-height: 64px;
  max-width: 340px;
  object-fit: contain;
}

html.template-nyt .nyt-brandline__wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

html.template-nyt .nyt-search {
  justify-self: end;
  display: flex;
  align-items: center;
  width: min(320px, 100%);
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--nyt-line-strong);
  background: #fff;
  box-sizing: border-box;
}

html.template-nyt .nyt-search .form-control {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  padding: 8px 10px;
}

html.template-nyt .nyt-search .btn {
  flex: 0 0 auto;
  border: 0;
  border-left: 1px solid var(--nyt-line-strong);
  border-radius: 0;
  background: #fff;
  color: #444;
  padding: 8px 12px;
}

html.template-nyt .nyt-nav {
  border-bottom: 2px solid var(--nyt-accent);
  padding: 0 14px;
  background: #fff;
}

html.template-nyt .nyt-nav .nav-link {
  color: #1a1a1a !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700 !important;
  padding: 11px 8px !important;
  margin-right: 8px;
  border-bottom: 2px solid transparent;
}

html.template-nyt .nyt-nav .nav-link:hover,
html.template-nyt .nyt-nav .nav-link.is-current {
  border-bottom-color: #111;
}

html.template-nyt .nyt-home-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--nyt-line);
  border-bottom: 0;
  padding: 10px 14px;
}

html.template-nyt .nyt-home-top__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

html.template-nyt .nyt-home-top__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #444;
}

html.template-nyt .nyt-home-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 2fr) minmax(240px, 1fr);
  gap: 18px;
  border: 1px solid var(--nyt-line);
  background: #fff;
  padding: 14px;
}

html.template-nyt .nyt-home-grid__left,
html.template-nyt .nyt-home-grid__center,
html.template-nyt .nyt-home-grid__right {
  min-width: 0;
}

html.template-nyt .nyt-home-grid__left {
  border-right: 1px solid var(--nyt-line);
  padding-right: 12px;
}

html.template-nyt .nyt-home-grid__right {
  border-left: 1px solid var(--nyt-line);
  padding-left: 12px;
}

html.template-nyt .nyt-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

html.template-nyt .nyt-section-title__line {
  width: 34px;
  height: 1px;
  background: #111;
}

html.template-nyt .nyt-section-title__text {
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

html.template-nyt .nyt-rank-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--nyt-line);
}

html.template-nyt .nyt-rank-card:last-child {
  border-bottom: 0;
}

html.template-nyt .nyt-rank-card__number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b1b1b;
}

html.template-nyt .nyt-rank-card__body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
}

html.template-nyt .nyt-rank-card__meta {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nyt-muted);
}

html.template-nyt .nyt-hero-story {
  border-bottom: 1px solid var(--nyt-line);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

html.template-nyt .nyt-hero-story__media {
  display: block;
  width: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--nyt-line);
}

html.template-nyt .nyt-hero-story__body h1 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

html.template-nyt .nyt-hero-story__body p {
  margin: 0 0 9px;
  font-size: 1.02rem;
  line-height: 1.64;
  color: #2e2e2e;
}

html.template-nyt .nyt-hero-story__meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

html.template-nyt .nyt-hero-story__meta span + span::before {
  content: "•";
  margin-right: 8px;
}

html.template-nyt .nyt-center-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

html.template-nyt .nyt-secondary-card {
  border-top: 1px solid var(--nyt-line);
  padding-top: 10px;
}

html.template-nyt .nyt-secondary-card__media {
  display: block;
  min-height: 150px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--nyt-line);
  margin-bottom: 8px;
}

html.template-nyt .nyt-secondary-card__body h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

html.template-nyt .nyt-briefing,
html.template-nyt .nyt-opinion-shell,
html.template-nyt .nyt-right-list {
  border-bottom: 1px solid var(--nyt-line);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

html.template-nyt .nyt-right-list {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

html.template-nyt .nyt-briefing__ticker {
  display: grid;
  gap: 8px;
}

html.template-nyt .nyt-briefing__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.4;
}

html.template-nyt .nyt-briefing__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111;
  margin-top: 6px;
  flex: 0 0 auto;
}

html.template-nyt .nyt-opinion-inline {
  padding: 8px 0;
  border-bottom: 1px solid var(--nyt-line);
}

html.template-nyt .nyt-opinion-inline:last-child {
  border-bottom: 0;
}

html.template-nyt .nyt-opinion-inline h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

html.template-nyt .nyt-opinion-inline span {
  font-size: 12px;
  color: var(--nyt-muted);
}

html.template-nyt .nyt-right-list__item {
  border-bottom: 1px solid var(--nyt-line);
  padding: 8px 0;
}

html.template-nyt .nyt-right-list__item:last-child {
  border-bottom: 0;
}

html.template-nyt .nyt-right-list__item h5 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

html.template-nyt .nyt-home-modules {
  background: #fff;
  border: 1px solid var(--nyt-line);
  border-top: 0;
  padding: 14px;
}

html.template-nyt .nyt-home-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

html.template-nyt .nyt-load-shell {
  min-height: 120px;
  border: 1px solid var(--nyt-line);
  padding: 10px;
  background: #fff;
}

html.template-nyt .nyt-load-shell.is-loading::before {
  content: "Cargando";
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  color: #8a8a8a;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

html.template-nyt .nyt-feature,
html.template-nyt .nyt-card,
html.template-nyt .nyt-list-card,
html.template-nyt .nyt-mini-card,
html.template-nyt .nyt-row-card,
html.template-nyt .nyt-opinion-card,
html.template-nyt .nyt-opinion-list,
html.template-nyt .nyt-network-card {
  border-bottom: 1px solid var(--nyt-line);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

html.template-nyt .nyt-feature__media,
html.template-nyt .nyt-card__media,
html.template-nyt .nyt-list-card__media,
html.template-nyt .nyt-mini-card__media,
html.template-nyt .nyt-row-card__media,
html.template-nyt .nyt-opinion-card__avatar,
html.template-nyt .nyt-opinion-list__media,
html.template-nyt .nyt-network-card__media {
  display: block;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--nyt-line);
}

html.template-nyt .nyt-feature__media {
  min-height: 320px;
}

html.template-nyt .nyt-feature__content h2 {
  margin: 10px 0 6px;
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  line-height: 1.06;
}

html.template-nyt .nyt-feature__content p {
  margin: 0;
  font-size: 0.98rem;
  color: #333;
  line-height: 1.6;
}

html.template-nyt .nyt-feature__meta,
html.template-nyt .nyt-card__meta {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}

html.template-nyt .nyt-dot {
  margin: 0 6px;
}

html.template-nyt .nyt-card--xl .nyt-card__media,
html.template-nyt .nyt-card--lg .nyt-card__media {
  min-height: 200px;
  margin-bottom: 8px;
}

html.template-nyt .nyt-card__body h3,
html.template-nyt .nyt-card__body h4 {
  margin: 0 0 5px;
  line-height: 1.2;
}

html.template-nyt .nyt-card__body h3 {
  font-size: 1.45rem;
}

html.template-nyt .nyt-card__body h4 {
  font-size: 1.05rem;
}

html.template-nyt .nyt-card__body p {
  margin: 0;
  color: #373737;
  font-size: 0.93rem;
  line-height: 1.5;
}

html.template-nyt .nyt-card__eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 4px;
}

html.template-nyt .nyt-list-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}

html.template-nyt .nyt-list-card__media {
  min-height: 100%;
}

html.template-nyt .nyt-list-card__body h5 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.25;
}

html.template-nyt .nyt-list-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: #3c3c3c;
}

html.template-nyt .nyt-mini-card__media {
  min-height: 110px;
  margin-bottom: 8px;
}

html.template-nyt .nyt-mini-card h6 {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.3;
}

html.template-nyt .nyt-row-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}

html.template-nyt .nyt-row-card__media {
  min-height: 100%;
}

html.template-nyt .nyt-row-card__body h6 {
  margin: 0 0 5px;
  font-size: 0.95rem;
  line-height: 1.25;
}

html.template-nyt .nyt-row-card__body p {
  margin: 0;
  font-size: 0.89rem;
  color: #454545;
}

html.template-nyt .nyt-opinion-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
}

html.template-nyt .nyt-opinion-card__avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin-top: 2px;
}

html.template-nyt .nyt-opinion-card__body h6 {
  margin: 0 0 3px;
  font-size: 0.95rem;
  line-height: 1.25;
}

html.template-nyt .nyt-opinion-card__body span {
  font-size: 12px;
  color: #666;
}

html.template-nyt .nyt-opinion-list {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}

html.template-nyt .nyt-opinion-list__media {
  min-height: 100%;
}

html.template-nyt .nyt-opinion-list__body h5 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.25;
}

html.template-nyt .nyt-opinion-list__body p {
  margin: 0 0 6px;
  color: #3f3f3f;
  font-size: 0.9rem;
}

html.template-nyt .nyt-opinion-list__author {
  font-size: 12px;
  color: #666;
}

html.template-nyt .nyt-network-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}

html.template-nyt .nyt-network-card__media {
  min-height: 100%;
}

html.template-nyt .nyt-network-card__source {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 3px;
}

html.template-nyt .nyt-network-card__body h6 {
  margin: 0 0 5px;
  font-size: 0.95rem;
  line-height: 1.27;
}

html.template-nyt .nyt-network-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: #414141;
}

html.template-nyt .nyt-ticker-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--nyt-line);
}

html.template-nyt .nyt-ticker-item:last-child {
  border-bottom: 0;
}

html.template-nyt .nyt-ticker-item__time {
  font-size: 12px;
  color: #777;
  min-width: 52px;
}

html.template-nyt .nyt-ticker-item__title {
  font-size: 13px;
  color: #232323;
  line-height: 1.35;
}

html.template-nyt .nyt-list-page {
  background: #fff;
  border: 1px solid var(--nyt-line);
  padding: 14px;
}

html.template-nyt .nyt-list-page__header {
  border-bottom: 1px solid var(--nyt-line);
  margin-bottom: 12px;
  padding-bottom: 10px;
}

html.template-nyt .nyt-list-page__header p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

html.template-nyt .nyt-list-page__lead {
  margin-bottom: 12px;
}

html.template-nyt .nyt-list-page__aside {
  border: 1px solid var(--nyt-line);
  background: var(--nyt-paper-soft);
  padding: 10px;
}

html.template-nyt .nyt-opinion-grid {
  display: grid;
  gap: 12px;
}

html.template-nyt .nyt-pager {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

html.template-nyt .nyt-pager__btn,
html.template-nyt .nyt-pager__num {
  border: 1px solid var(--nyt-line-strong);
  background: #fff;
  color: #222;
  padding: 8px 12px;
  font-size: 13px;
}

html.template-nyt .nyt-pager__num.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

html.template-nyt .nyt-pager__nums {
  display: flex;
  gap: 8px;
}

html.template-nyt .nyt-article-page {
  background: #fff;
  border: 1px solid var(--nyt-line);
  padding: 14px;
}

html.template-nyt .nyt-reading-progress {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 0;
  height: 3px;
  background: #111;
}

html.template-nyt .nyt-article-shell {
  border-bottom: 1px solid var(--nyt-line);
  padding-bottom: 14px;
}

html.template-nyt .nyt-article-header {
  border-bottom: 1px solid var(--nyt-line);
  margin-bottom: 12px;
  padding-bottom: 10px;
}

html.template-nyt .nyt-article-header__top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

html.template-nyt .nyt-article-badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--nyt-line-strong);
  padding: 3px 8px;
}

html.template-nyt .nyt-article-section {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

html.template-nyt .nyt-article-header h1 {
  margin: 10px 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

html.template-nyt .nyt-article-header__intro {
  margin: 0 0 8px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.64;
}

html.template-nyt .nyt-article-header__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #666;
  font-size: 12px;
}

html.template-nyt .nyt-article-header__meta span + span::before {
  content: "•";
  margin-right: 8px;
}

html.template-nyt .nyt-article-layout {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(0, 2.2fr) minmax(250px, 1fr);
  gap: 16px;
}

html.template-nyt .nyt-article-layout__left {
  border-right: 1px solid var(--nyt-line);
  padding-right: 10px;
}

html.template-nyt .nyt-article-layout__right {
  border-left: 1px solid var(--nyt-line);
  padding-left: 10px;
}

html.template-nyt .nyt-article-tools {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

html.template-nyt .nyt-article-tools .btn {
  border-radius: 0;
  border: 1px solid var(--nyt-line-strong);
  background: #fff;
  font-size: 12px;
  text-align: left;
}

html.template-nyt .nyt-article-media {
  margin-bottom: 10px;
  border: 1px solid var(--nyt-line);
}

html.template-nyt .nyt-article-media img,
html.template-nyt .nyt-article-media video {
  width: 100%;
  display: block;
  max-height: 74vh;
  object-fit: cover;
}

html.template-nyt .nyt-article-media--audio {
  padding: 10px;
}

html.template-nyt .nyt-article-text {
  color: #1f1f1f;
}

html.template-nyt .nyt-article-text p,
html.template-nyt .nyt-article-text h2,
html.template-nyt .nyt-article-text h3,
html.template-nyt .nyt-article-text h4 {
  color: inherit;
}

html.template-nyt .nyt-article-text a {
  text-decoration: underline;
}

html.template-nyt .nyt-article-box {
  border: 1px solid var(--nyt-line);
  padding: 10px;
  margin-bottom: 10px;
  background: #fff;
}

html.template-nyt .nyt-article-box h5 {
  margin: 0 0 6px;
  font-size: 1rem;
}

html.template-nyt .nyt-article-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #505050;
}

html.template-nyt .nyt-article-related {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

html.template-nyt .nyt-empty-card {
  border: 1px solid var(--nyt-line);
  padding: 14px;
  background: #fff;
  color: #444;
}

html.template-nyt .nyt-footer {
  margin-top: 20px;
  background: #fff;
  border-top: 2px solid #111;
  border-bottom: 1px solid var(--nyt-line);
}

html.template-nyt .nyt-footer .container-lg {
  padding-top: 14px;
  padding-bottom: 18px;
}

html.template-nyt .nyt-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

html.template-nyt .nyt-footer__brand img {
  max-height: 36px;
  max-width: 160px;
  object-fit: contain;
}

html.template-nyt .nyt-footer__brand p {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: #555;
}

html.template-nyt .nyt-footer__links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

html.template-nyt .nyt-footer__meta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--nyt-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #666;
}

html.template-nyt .nyt-footer__social {
  display: inline-flex;
  gap: 8px;
}

html.template-nyt .nyt-footer__social a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--nyt-line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

html.template-nyt #ads {
  background: transparent;
  border: 0;
  padding: 0;
}

html.template-nyt .bgcolor,
html.template-nyt .bgsecundario {
  background: #111 !important;
}

html.template-nyt .sharethis-inline-share-buttons,
html.template-nyt .sharethis-inline-reaction-buttons {
  border-top: 1px solid var(--nyt-line);
  border-bottom: 1px solid var(--nyt-line);
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (max-width: 1199px) {
  html.template-nyt .nyt-home-grid {
    grid-template-columns: 1fr;
  }

  html.template-nyt .nyt-home-grid__center {
    order: 1;
  }

  html.template-nyt .nyt-home-grid__left {
    order: 2;
  }

  html.template-nyt .nyt-home-grid__right {
    order: 3;
  }

  html.template-nyt .nyt-home-grid__left,
  html.template-nyt .nyt-home-grid__right {
    border: 0;
    padding: 0;
  }

  html.template-nyt .nyt-home-modules__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.template-nyt .nyt-article-layout {
    grid-template-columns: 1fr;
  }

  html.template-nyt .nyt-article-layout__center {
    order: 1;
  }

  html.template-nyt .nyt-article-layout__left {
    order: 2;
  }

  html.template-nyt .nyt-article-layout__right {
    order: 3;
  }

  html.template-nyt .nyt-article-layout__left,
  html.template-nyt .nyt-article-layout__right {
    border: 0;
    padding: 0;
  }
}

@media (max-width: 991px) {
  html.template-nyt .nyt-toolbar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  html.template-nyt .nyt-toolbar__left,
  html.template-nyt .nyt-toolbar__right {
    justify-content: center;
    flex-wrap: wrap;
  }

  html.template-nyt .nyt-brandline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  html.template-nyt .nyt-brandline__left,
  html.template-nyt .nyt-search {
    justify-self: center;
    width: 100%;
  }

  html.template-nyt .nyt-brandline__logo,
  html.template-nyt .nyt-brandline__logo img {
    max-width: 100%;
  }

  html.template-nyt .nyt-home-modules__grid {
    grid-template-columns: 1fr;
  }

  html.template-nyt .nyt-list-card,
  html.template-nyt .nyt-row-card,
  html.template-nyt .nyt-opinion-list,
  html.template-nyt .nyt-network-card {
    grid-template-columns: 1fr;
  }

  html.template-nyt .nyt-list-card__media,
  html.template-nyt .nyt-row-card__media,
  html.template-nyt .nyt-opinion-list__media,
  html.template-nyt .nyt-network-card__media {
    min-height: 180px;
  }
}

@media (max-width: 767px) {
  html.template-nyt .container,
  html.template-nyt .container-lg {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  html.template-nyt .nyt-shell {
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    overflow: hidden;
  }

  html.template-nyt .nyt-toolbar {
    gap: 8px;
    padding: 9px 12px;
  }

  html.template-nyt .nyt-toolbar__action span {
    font-size: 10px;
  }

  html.template-nyt .nyt-brandline {
    padding: 16px 14px 12px;
  }

  html.template-nyt .nyt-brandline__logo img {
    max-height: 54px;
  }

  html.template-nyt .nyt-search {
    width: 100%;
  }

  html.template-nyt .nyt-nav {
    padding: 0 12px;
  }

  html.template-nyt .nyt-nav .navbar-toggler {
    width: 100%;
    text-align: left;
    padding: 9px 0;
  }

  html.template-nyt .nyt-nav .navbar-collapse {
    border-top: 1px solid var(--nyt-line);
  }

  html.template-nyt .nyt-nav .nav-link {
    margin-right: 0;
    padding: 10px 0 !important;
  }

  html.template-nyt .nyt-home-top,
  html.template-nyt .nyt-home-grid,
  html.template-nyt .nyt-home-modules,
  html.template-nyt .nyt-list-page,
  html.template-nyt .nyt-article-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  html.template-nyt .nyt-home-top {
    align-items: flex-start;
    flex-direction: column;
  }

  html.template-nyt .nyt-home-top__stats {
    gap: 8px 14px;
  }

  html.template-nyt .nyt-hero-story__body h1,
  html.template-nyt .nyt-article-header h1 {
    font-size: clamp(2rem, 11vw, 2.9rem);
    line-height: 1.02;
  }

  html.template-nyt .nyt-center-secondary {
    grid-template-columns: 1fr;
  }

  html.template-nyt .nyt-hero-story__media {
    min-height: 260px;
  }

  html.template-nyt .nyt-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
