:root {
  --d73-red: #b40016;
  --d73-red-dark: #79000f;
  --d73-ink: #151515;
  --d73-muted: #656565;
  --d73-line: #e8e8e8;
  --d73-surface: #f6f6f6;
  --d73-radius: 8px;
  --d73-shadow: 0 12px 30px rgba(0, 0, 0, .10);
}

.d73dr-home,
.d73dr-home * {
  box-sizing: border-box;
}

.d73dr-home {
  background: #fff;
  color: var(--d73-ink);
  font-family: inherit;
  padding: 34px 0 64px;
}

.d73dr-container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 20px;
  width: 100%;
}

.d73dr-section-heading {
  margin-bottom: 20px;
}

.d73dr-section-heading h1,
.d73dr-section-heading h2 {
  color: var(--d73-ink);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0;
}

.d73dr-eyebrow {
  color: var(--d73-red);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.d73dr-featured {
  margin-bottom: 38px;
}

.d73dr-featured-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .85fr);
  grid-template-rows: repeat(2, minmax(205px, 1fr));
  min-height: 510px;
}

.d73dr-featured-card {
  background-color: #242424;
  background-position: center;
  background-size: cover;
  border-radius: var(--d73-radius);
  min-height: 205px;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

.d73dr-featured-card--main {
  grid-row: 1 / 3;
}

.d73dr-card-link {
  color: #fff !important;
  display: block;
  inset: 0;
  position: absolute;
  text-decoration: none !important;
}

.d73dr-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 18%, rgba(0, 0, 0, .86) 100%);
  inset: 0;
  position: absolute;
  transition: background .25s ease;
}

.d73dr-card-link:hover .d73dr-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, .10) 8%, rgba(91, 0, 11, .92) 100%);
}

.d73dr-card-content {
  bottom: 0;
  display: block;
  left: 0;
  padding: 20px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.d73dr-featured-title {
  color: #fff !important;
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 22px;
  margin-top: 9px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .95);
}

.d73dr-featured-card--main .d73dr-featured-title {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.2;
  max-width: 700px;
}

.d73dr-featured-meta {
  color: rgba(255, 255, 255, .78);
  display: block;
  font-size: .78rem;
  margin-top: 10px;
}

.d73dr-category {
  background: var(--d73-red);
  border-radius: 3px;
  color: #fff !important;
  display: inline-flex;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .065em;
  line-height: 1;
  padding: 7px 9px 6px;
  text-decoration: none !important;
  text-transform: uppercase;
}

.d73dr-card--no-image {
  background: linear-gradient(135deg, var(--d73-red-dark), var(--d73-red));
}

.d73dr-more {
  border-bottom: 1px solid var(--d73-line);
  margin-bottom: 44px;
  padding-bottom: 40px;
}

.d73dr-title-row {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.d73dr-title-row h2 {
  color: var(--d73-red);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}

.d73dr-title-row span {
  background: linear-gradient(90deg, var(--d73-red) 0 72px, var(--d73-line) 72px);
  height: 3px;
  width: 100%;
}

.d73dr-more-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.d73dr-more-card {
  background: #fff;
  border: 1px solid var(--d73-line);
  border-radius: var(--d73-radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.d73dr-more-card:hover {
  box-shadow: var(--d73-shadow);
  transform: translateY(-3px);
}

.d73dr-more-image {
  background: var(--d73-surface);
  display: block;
  height: 190px;
  overflow: hidden;
}

.d73dr-more-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: none;
  width: 100%;
}

.d73dr-more-card:hover .d73dr-more-image img {
  transform: none;
}

.d73dr-more-body {
  padding: 18px;
}

.d73dr-more-body h3 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin: 10px 0;
}

.d73dr-more-body h3 a,
.d73dr-feed-card h2 a {
  text-decoration: none !important;
}

.d73dr-more-body h3 a {
  color: var(--d73-red) !important;
}

.d73dr-feed-card h2 a {
  color: var(--d73-red) !important;
}

.d73dr-more-body h3 a:hover,
.d73dr-feed-card h2 a:hover {
  color: var(--d73-red-dark) !important;
}

.d73dr-more-body time {
  color: var(--d73-muted);
  font-size: .78rem;
}

.d73dr-category--text {
  background: none;
  color: var(--d73-red) !important;
  padding: 0;
}

.d73dr-layout {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
}

.d73dr-layout--wide {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.d73dr-feed-card {
  border-bottom: 1px solid var(--d73-line);
  margin-bottom: 35px;
  padding-bottom: 36px;
}

.d73dr-feed-card h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.13;
  margin: 9px 0 10px;
}

.d73dr-post-meta {
  align-items: center;
  color: var(--d73-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .79rem;
  gap: 7px;
  margin-bottom: 17px;
}

.d73dr-feed-image {
  background: var(--d73-surface);
  border-radius: var(--d73-radius);
  display: block;
  margin: 0 0 18px;
  overflow: hidden;
}

.d73dr-featured-caption {
  color: var(--d73-muted);
  font-size: .78rem;
  line-height: 1.4;
  margin: 4px 0 18px;
  padding: 0 6px;
  text-align: center;
}

.d73dr-feed-card--has-caption .d73dr-feed-image {
  margin-bottom: 0;
}

.d73dr-feed-image img {
  aspect-ratio: auto;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center center;
  width: 100%;
}

.d73dr-image-placeholder {
  align-items: center;
  background: linear-gradient(135deg, var(--d73-red-dark), var(--d73-red));
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: 900;
  height: 100%;
  justify-content: center;
  letter-spacing: -.05em;
  min-height: 160px;
}

.d73dr-image-placeholder--large {
  aspect-ratio: 16 / 9;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
}

.d73dr-full-content {
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.72;
  margin: 0 0 22px;
  overflow-wrap: anywhere;
}

.d73dr-full-content > :first-child {
  margin-top: 0;
}

.d73dr-full-content > :last-child {
  margin-bottom: 0;
}

.d73dr-full-content p,
.d73dr-full-content ul,
.d73dr-full-content ol,
.d73dr-full-content blockquote,
.d73dr-full-content figure {
  margin-bottom: 1.15em;
}

.d73dr-full-content video,
.d73dr-full-content iframe,
.d73dr-full-content embed,
.d73dr-full-content object {
  height: auto;
  max-width: 100%;
}

.d73dr-full-content img:not(.emoji):not(.wp-smiley) {
  aspect-ratio: 16 / 9;
  border-radius: var(--d73-radius);
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.d73dr-full-content figure,
.d73dr-full-content .wp-caption,
.d73dr-full-content .wp-block-image {
  max-width: 100% !important;
  width: 100% !important;
}

.d73dr-full-content .alignleft,
.d73dr-full-content .alignright,
.d73dr-full-content .aligncenter {
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.d73dr-full-content figcaption,
.d73dr-full-content .wp-caption-text {
  color: var(--d73-muted);
  font-size: .78rem;
  line-height: 1.4;
  margin-top: 5px;
  text-align: center;
}

.d73dr-full-content .wp-block-embed__wrapper {
  overflow: hidden;
  position: relative;
}

.d73dr-full-content .wp-block-embed__wrapper iframe,
.d73dr-full-content iframe[src*="youtube"],
.d73dr-full-content iframe[src*="youtu.be"] {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
}

.d73dr-read-more-wrap {
  margin: -4px 0 22px;
}

.d73dr-read-more {
  background: var(--d73-red);
  border: 1px solid var(--d73-red);
  border-radius: 5px;
  color: #fff !important;
  display: inline-flex;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1;
  padding: 11px 17px;
  text-decoration: none !important;
  transition: background .2s ease, border-color .2s ease;
}

.d73dr-read-more:hover,
.d73dr-read-more:focus {
  background: var(--d73-red-dark);
  border-color: var(--d73-red-dark);
}

.d73dr-full-content table {
  border-collapse: collapse;
  display: block;
  max-width: 100%;
  overflow-x: auto;
  width: 100%;
}

.d73dr-feed-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.d73dr-share {
  display: flex;
  gap: 8px;
}

.d73dr-share a {
  align-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff !important;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 700;
  gap: 6px;
  padding: 8px 13px;
  text-decoration: none !important;
  transition: filter .2s ease, transform .2s ease;
}

.d73dr-share a svg {
  fill: currentColor;
  flex: 0 0 15px;
  height: 15px;
  width: 15px;
}

.d73dr-share .d73dr-share-whatsapp {
  background: #25d366;
}

.d73dr-share .d73dr-share-facebook {
  background: #1877f2;
}

.d73dr-share a:hover,
.d73dr-share a:focus-visible {
  color: #fff !important;
  filter: brightness(.88);
  transform: translateY(-1px);
}

.d73dr-sidebar {
  align-self: start !important;
  height: fit-content;
  min-width: 0;
  position: static !important;
  z-index: 2;
}

.d73dr-sidebar aside,
.d73dr-sidebar .widget {
  max-width: 100%;
}

.d73dr-load-wrap {
  display: flex;
  justify-content: center;
  min-height: 48px;
  padding-top: 3px;
}

.d73dr-load-more {
  background: var(--d73-red);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: .88rem;
  font-weight: 800;
  min-width: 220px;
  padding: 14px 22px;
  transition: background .2s ease, opacity .2s ease;
}

.d73dr-load-more:hover,
.d73dr-load-more:focus-visible {
  background: var(--d73-red-dark);
}

.d73dr-load-more:disabled {
  cursor: wait;
  opacity: .7;
}

@media (max-width: 920px) {
  .d73dr-featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(330px, 1.35fr) minmax(210px, 1fr);
    min-height: 0;
  }

  .d73dr-featured-card--main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .d73dr-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .d73dr-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .d73dr-sidebar {
    height: auto;
    position: static !important;
  }
}

@media (max-width: 767px) {
  .d73dr-featured-title {
    font-size: 17px;
    line-height: 22px;
  }

  .d73dr-featured-card--main .d73dr-featured-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .d73dr-more-body h3 {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 620px) {
  .d73dr-home {
    padding-top: 24px;
  }

  .d73dr-container {
    padding: 0 14px;
  }

  .d73dr-featured-grid {
    display: flex;
    flex-direction: column;
  }

  .d73dr-featured-card,
  .d73dr-featured-card--main {
    min-height: 225px;
  }

  .d73dr-featured-card--main {
    min-height: 330px;
  }

  .d73dr-card-content {
    display: block !important;
    opacity: 1 !important;
    padding: 16px;
    visibility: visible !important;
  }

  .d73dr-featured-title {
    color: #fff !important;
    display: block !important;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 17px;
    line-height: 22px;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .d73dr-featured-card--main .d73dr-featured-title {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.2;
  }

  .d73dr-featured-card .d73dr-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .03) 10%, rgba(0, 0, 0, .9) 100%);
  }

  .d73dr-more-grid {
    grid-template-columns: 1fr;
  }

  .d73dr-more-card {
    display: block;
  }

  .d73dr-more-image {
    aspect-ratio: 2 / 1;
    height: auto;
    min-height: 0;
  }

  .d73dr-more-body {
    padding: 14px;
  }

  .d73dr-more-body h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 7px;
  }

  .d73dr-share {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .d73dr-home *,
  .d73dr-home *::before,
  .d73dr-home *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ===== V1.13.0: imagens, banners e legendas completos na rolagem ===== */
body #d73dr-home,
body #d73dr-home * {
  box-sizing: border-box;
}

body #d73dr-home .d73dr-feed,
body #d73dr-home .d73dr-feed-items,
body #d73dr-home .d73dr-feed-card,
body #d73dr-home .d73dr-full-content {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

body #d73dr-home .d73dr-feed-card {
  clear: both !important;
  float: none !important;
  overflow: visible !important;
}

body #d73dr-home .d73dr-pre-feature-media {
  clear: both !important;
  display: block !important;
  margin: 0 0 18px !important;
  max-width: 100% !important;
  overflow: hidden !important;
  width: 100% !important;
}

body #d73dr-home .d73dr-pre-feature-media > *,
body #d73dr-home .d73dr-pre-feature-media figure,
body #d73dr-home .d73dr-pre-feature-media .wp-block-image,
body #d73dr-home .d73dr-pre-feature-media .wp-caption,
body #d73dr-home .d73dr-pre-feature-media picture,
body #d73dr-home .d73dr-pre-feature-media p {
  clear: both !important;
  display: block !important;
  float: none !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}

body #d73dr-home .d73dr-pre-feature-media img,
body #d73dr-home .d73dr-full-content img:not(.emoji):not(.wp-smiley) {
  aspect-ratio: auto !important;
  border-radius: 8px !important;
  clear: both !important;
  display: block !important;
  float: none !important;
  height: auto !important;
  margin: 18px auto 5px !important;
  max-height: none !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  position: static !important;
  transform: none !important;
  width: auto !important;
}

body #d73dr-home .d73dr-pre-feature-media img {
  border-radius: 7px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body #d73dr-home img.d73dr-media-banner,
body #d73dr-home .d73dr-media-banner-wrap img {
  max-width: 100% !important;
  width: 100% !important;
}

body #d73dr-home img.d73dr-media-portrait {
  max-width: min(100%, 720px) !important;
  width: auto !important;
}

body #d73dr-home .d73dr-full-content figure,
body #d73dr-home .d73dr-full-content .wp-block-image,
body #d73dr-home .d73dr-full-content .wp-caption,
body #d73dr-home .d73dr-full-content picture,
body #d73dr-home .d73dr-full-content p:has(> img),
body #d73dr-home .d73dr-full-content p:has(> a > img) {
  clear: both !important;
  display: block !important;
  float: none !important;
  height: auto !important;
  margin: 22px auto !important;
  max-width: 100% !important;
  overflow: visible !important;
  padding: 0 !important;
  text-align: center !important;
  width: 100% !important;
}

body #d73dr-home .d73dr-full-content figure > a,
body #d73dr-home .d73dr-full-content .wp-block-image > a,
body #d73dr-home .d73dr-full-content p > a:has(> img) {
  display: block !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  width: 100% !important;
}

body #d73dr-home .d73dr-full-content figcaption,
body #d73dr-home .d73dr-full-content .wp-caption-text,
body #d73dr-home .d73dr-pre-feature-media figcaption,
body #d73dr-home .d73dr-pre-feature-media .wp-caption-text {
  background: transparent !important;
  clear: both !important;
  color: #62666b !important;
  display: block !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  margin: 6px auto 0 !important;
  max-width: 900px !important;
  padding: 0 8px !important;
  position: static !important;
  text-align: center !important;
  width: 100% !important;
}

body #d73dr-home .d73dr-full-content iframe,
body #d73dr-home .d73dr-full-content video,
body #d73dr-home .d73dr-full-content embed,
body #d73dr-home .d73dr-full-content object {
  clear: both !important;
  display: block !important;
  float: none !important;
  height: auto !important;
  margin: 22px auto !important;
  max-width: 100% !important;
  width: 100% !important;
}

@media (max-width: 767px) {
  body #d73dr-home .d73dr-feed-card {
    margin-bottom: 28px !important;
    padding-bottom: 28px !important;
  }

  body #d73dr-home .d73dr-pre-feature-media {
    margin-bottom: 14px !important;
  }

  body #d73dr-home .d73dr-pre-feature-media img,
  body #d73dr-home .d73dr-full-content img:not(.emoji):not(.wp-smiley) {
    border-radius: 6px !important;
  }

  body #d73dr-home .d73dr-full-content figcaption,
  body #d73dr-home .d73dr-full-content .wp-caption-text,
  body #d73dr-home .d73dr-pre-feature-media figcaption,
  body #d73dr-home .d73dr-pre-feature-media .wp-caption-text {
    font-size: 12px !important;
    padding: 0 5px !important;
  }
}


/* v1.13.1 — a imagem destacada não é repetida dentro da barra de rolagem. */
body #d73dr-home .d73dr-feed-card > .d73dr-full-content {
  margin-top: 18px;
}

body #d73dr-home .d73dr-feed-card > .d73dr-full-content > :first-child {
  margin-top: 0;
}


/* ===== V1.14.6: todos os cards de Mais notícias totalmente preenchidos ===== */
body #d73dr-home .d73dr-more-image {
  background: #eceff2 !important;
  overflow: hidden !important;
  position: relative !important;
}

body #d73dr-home .d73dr-more-image > img {
  display: block !important;
  height: 100% !important;
  max-height: none !important;
  max-width: none !important;
  min-height: 100% !important;
  min-width: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
}
