@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600;700&display=swap");

.news-header-banner {
  height: 227px;
  background: url(../images/bg-noticias.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  margin-left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-overlay {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.banner-overlay h1 {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(42px * var(--var-fontscale));
}

.news-container {
  display: flex;
  gap: 57px;
  margin: 27px auto;
  font-family: "Montserrat", sans-serif;
  align-items: flex-start;
  margin-bottom: 0px;
}

.single-news-breadcrumb {
  margin-bottom: 24px;
}

/* Sidebar Styling - Matching Services Section */
.news-sidebar {
  width: 350px;
  flex-shrink: 0;
}

.news-sidebar .search-box {
  background-color: white;
  padding: 24px 21px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.news-sidebar .search-box label {
  display: block;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: calc(20px * var(--var-fontscale));
  text-align: left;
  color: #293b49;
}

.news-sidebar .search-input-group {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  width: 100%;
  height: 38px;
  box-shadow: none;
}

.news-sidebar .search-input-group input {
  flex: 1;
  border: none;
  padding: 0 16px;
  outline: none;
  font-size: calc(14px * var(--var-fontscale));
  font-weight: 400;
  color: #6a7282dd;
  min-width: 0;
  height: 100%;
  border: 1px solid #d1d5dc;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
}

.news-sidebar .search-input-group input::placeholder {
  color: #6a7282dd;
}

.news-sidebar .search-input-group button {
  background-color: #1a82c4;
  color: white;
  border: none;
  padding: 0 15px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
  font-size: calc(14px * var(--var-fontscale));
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border-radius: 0;
  height: 100%;
}

.news-sidebar .search-input-group button:hover {
  background-color: #156da5;
}

.filter-group {
  background-color: white;
  padding: 24px 15px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #293b49;
  font-size: calc(20px * var(--var-fontscale));
  cursor: pointer;
  border-top: 1px solid #e5e7eb;
  margin-top: 24px;
  padding-top: 12px;
  padding-bottom: 20px;
}

.filter-header.active > span {
  transform: rotate(180deg);
}

.filter-header span {
  font-size: calc(10px * var(--var-fontscale));
  color: #999;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 15px;
}

.filter-list label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: calc(16px * var(--var-fontscale));
  color: #293b49;
  font-weight: 400;
  text-align: left;
}

.filter-list label span:first-of-type {
  flex: 1;
  margin-left: 12px;
}

.filter-list .count {
  font-size: calc(12px * var(--var-fontscale));
  color: #6a7282;
  font-weight: 400;
}

/* Checkbox Style from Mockup */
.filter-list input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><rect width="16" height="16" rx="2" fill="%23E5E7EB"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.filter-list input[type="radio"]:checked {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><rect width="16" height="16" rx="2" transform="matrix(1 0 -4.37114e-08 -1 6.99381e-07 16)" fill="%23016CB0"/><path d="M4 6.36364L7.55556 10L12 5" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.date-filters {
  display: flex;
  gap: 16px;
}

.date-input-group {
  flex: 1;
}

.date-input-group label {
  display: block;
  font-size: calc(16px * var(--var-fontscale));
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #293b49;
  margin-bottom: 8px;
  text-align: left;
}

.date-input-group input {
  width: 100%;
  padding: 11px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: calc(16px * var(--var-fontscale));
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #6a7282c2;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  max-width: 152px;
}

.date-input-group input[type="date"]::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M5.33301 1.33331V3.99998" stroke="%23979DA8" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.667 1.33331V3.99998" stroke="%23979DA8" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.6667 2.66669H3.33333C2.59695 2.66669 2 3.26364 2 4.00002V13.3334C2 14.0697 2.59695 14.6667 3.33333 14.6667H12.6667C13.403 14.6667 14 14.0697 14 13.3334V4.00002C14 3.26364 13.403 2.66669 12.6667 2.66669Z" stroke="%23979DA8" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 6.66669H14" stroke="%23979DA8" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  cursor: pointer;
}

.tags-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-item {
  padding: 8px 16px;
  color: #016cb0;
  border-radius: 20px;
  font-size: calc(12px * var(--var-fontscale));
  text-decoration: none;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s;
  background: #016cb017;
  border: none;
  box-shadow: 0px 2px 5px 0px #0000001c;
}

/* Main Content Styling */
.news-content {
  flex: 1;
  padding-bottom: 105px;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: left;
}

.breadcrumb-wrapper a {
  color: #1a82c4;
  text-decoration: none;
}

.main-page-title {
  font-size: calc(32px * var(--var-fontscale));
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: rgb(41, 59, 73);
  margin-bottom: 24px;
  position: relative;
  text-align: left;
}

.main-page-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background:
    linear-gradient(to right, #016cb0, #016cb0),
    linear-gradient(to right, #e1edf6, #e1edf6);
  background-size:
    188px 100%,
    100% 100%;
  background-repeat: no-repeat;
  margin-top: 8px;
}

.title-underline {
  height: 4px;
  background: #f0f0f0;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}

.title-underline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 284px;
  height: 4px;
  background: linear-gradient(to right, #016cb0, #d85057);
}

/* Featured Card Refinement */
.featured-news-card {
  display: flex;
  background: linear-gradient(to right, #016cb0, #016cb0) border-box;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  padding: 2px;
  height: 261px;
  text-decoration: none;
}

.featured-img-wrapper {
  width: max-content;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 24px;
  background: white;
  border-top-left-radius: 19px;
  border-bottom-left-radius: 19px;
}

.featured-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.featured-info {
  padding: 40px 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
  padding-right: 24px;
}

.category-badge {
  color: #1a82c4;
  font-weight: 500;
  font-size: calc(14px * var(--var-fontscale));
  text-transform: uppercase;
  margin-bottom: 9px;
  display: block;
  text-align: left;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  padding-top: 6px;
  padding-bottom: 7px;
  border-bottom: 1px solid #eef2f5;
}

.featured-title {
  font-size: calc(20px * var(--var-fontscale));
  font-weight: 500;
  margin-bottom: 18px;
  color: #293b49;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  line-height: 26px;
}

.featured-excerpt {
  color: #6a7282;
  font-size: calc(16px * var(--var-fontscale));
  font-weight: 400;
  margin-bottom: 33px;
  line-height: 20px;
  text-align: left;
}

.news-meta,
.news-meta span {
  font-size: calc(14px * var(--var-fontscale));
  color: #6a7282;
  display: flex;
  gap: 15px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 20px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
}

.news-meta .read-more {
  color: #1a82c4;
}

/* News Cards Refinement */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.news-card {
  display: flex;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
  border: 1px solid #d1d5dc;
}

.news-card .card-img {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: max-content;
  padding: 24px;
}

.news-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.card-info {
  padding: 24px 24px 0px 0px;
  flex: 1;
}

.news-card .category-badge {
  padding-top: 0px;
}

.card-title {
  font-size: calc(18px * var(--var-fontscale));
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 24px;
  color: #293b49;
  text-align: left;
  font-family: "Montserrat", sans-serif;
}

.card-excerpt {
  font-size: calc(14px * var(--var-fontscale));
  color: #6a7282;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 20px;
}

.read-more {
  color: #1a82c4;
  font-size: calc(12px * var(--var-fontscale));
  font-weight: 700;
  text-decoration: underline;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 20px;
}

/* Pagination Refinement */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.page-link,
.page-num {
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: calc(14px * var(--var-fontscale));
  font-weight: 600;
  color: #666;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.2s;
}

.page-num.active {
  background: #ffd21e;
  border-color: #ffd21e;
  color: #333;
}

.page-link:hover,
.page-num:hover:not(.active) {
  background: #eee;
}

.results-count {
  font-size: calc(14px * var(--var-fontscale));
  color: #293b49;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 20px;
}

.sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: calc(14px * var(--var-fontscale));
  color: #293b49;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 20px;
}

.sort-group select {
  margin-left: 10px;
  padding: 9px 33px 9px 17px;
  border: 1px solid #d1d5dc;
  border-radius: 60px;
  font-weight: 400;
  color: #293b49;
  line-height: 20px;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M9 4.5L6 7.5L3 4.5" stroke="%236A7282" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-size: 12px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.related-news-section {
  padding-bottom: 67px;
}

.related-news-section .carousel-controls {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.carousel-btn {
  padding: 10px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 25px;
  font-size: calc(16px * var(--var-fontscale));
  color: #293b49;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.carousel-btn:hover {
  border-color: var(--primary-action);
  color: var(--primary-action);
}

/* Single News Page Styles */
.single-news {
  margin-top: 40px;
}

.article-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
  margin-bottom: 44px;
}

.pub-date {
  font-size: calc(13px * var(--var-fontscale));
  color: #999;
}

.meta-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.action-btn {
  background: none;
  border: none;
  color: #666;
  font-size: calc(13px * var(--var-fontscale));
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.share-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: calc(13px * var(--var-fontscale));
  color: #666;
}

.share-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

.article-meta-header * {
  font-family: "Montserrat", sans-serif;
  font-size: calc(12px * var(--var-fontscale));
  font-weight: 400;
  line-height: 25px;
  color: #4a5565;
}

.article-title {
  font-size: calc(36px * var(--var-fontscale));
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #293b49;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: calc(42px * var(--var-fontscale));
  font-weight: 700;
  line-height: 44px;
}

.article-summary {
  color: #293b49;
  margin-bottom: 53px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: calc(22px * var(--var-fontscale));
  font-weight: 400;
  line-height: 30px;
}

.article-main-image {
  margin-bottom: 40px;
}

.article-main-image img {
  width: 100%;
  border-radius: 12px;
}

.image-caption {
  display: block;
  font-size: calc(13px * var(--var-fontscale));
  color: #999;
  margin-top: 10px;
  font-style: italic;
  text-align: left;
}

.article-content {
  font-family: "Open Sans", sans-serif;
  font-size: calc(16px * var(--var-fontscale));
  line-height: 1.8;
  color: #444;
  margin-bottom: 60px;
  text-align: left;
}

.article-content p {
  margin-bottom: 20px;
  text-align: left;
  color: #293b49;
  font-family: "Montserrat", sans-serif;
  font-size: calc(18px * var(--var-fontscale));
  font-weight: 400;
  line-height: 32px;
}
.article-content li {
  text-align: left;
  color: #293b49;
  font-family: "Montserrat", sans-serif;
  font-size: calc(18px * var(--var-fontscale));
  font-weight: 400;
  line-height: 32px;
}
.article-inline-image {
  margin: 24px 0;
  text-align: center;
}

.article-inline-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.article-inline-image figcaption {
  margin-top: 8px;
  color: #6a7282;
  font-size: calc(14px * var(--var-fontscale));
  line-height: 1.4;
}

.internal-galeria-title {
  font-size: calc(32px * var(--var-fontscale));
  color: #293b49;
  font-weight: 600;
  margin-bottom: 16px;
  width: 100%;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  line-height: 47px;
}

.gallery-nav-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #293b49;
  font-weight: 500;
  cursor: pointer;
  font-size: calc(16px * var(--var-fontscale));
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
}

.article-gallery {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.article-gallery h2 {
  font-size: calc(24px * var(--var-fontscale));
  font-weight: 700;
  margin-bottom: 25px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-thumb img:hover {
  transform: scale(1.02);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.btn-gallery {
  padding: 8px 25px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: calc(13px * var(--var-fontscale));
  font-weight: 600;
  color: #666;
  cursor: pointer;
}

.article-footer-meta {
  border-top: 1px solid #e5e7eb;
  padding-top: 33px;
  margin-top: 46px;
}

.meta-item {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-label {
  display: block;
  font-size: calc(20px * var(--var-fontscale));
  font-weight: 500;
  margin-bottom: 12px;
  text-align: left;
  width: 100%;
  color: #293b49;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
}

.meta-badge {
  display: inline-block;
  padding: 11px 19px;
  border-radius: 50px;
  font-size: calc(14px * var(--var-fontscale));
  font-weight: 500;
  line-height: 16px;
  color: #016cb0;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  background: #f8f9fa;
  border: 1px solid #016cb0;
}

.meta-badges-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery-nav-btn svg {
  transform: translateY(2px);
}

.single-section-title {
  font-size: calc(32px * var(--var-fontscale));
  color: #293b49;
  font-weight: 600;
  line-height: 57px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 36px;
  border-bottom: 4px solid #e1edf6;
  text-align: left;
}

/* Related News Styles */
.related-news-section {
  background: #f1f5f9;
}

.related-news-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-news-section .section-title {
  font-size: calc(28px * var(--var-fontscale));
  font-weight: 800;
  margin-bottom: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.related-card {
  overflow: hidden;
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px 16px;
  border: 1px solid #d1d5dc;
  text-decoration: none;
}

.related-assunto {
  font-size: calc(12px * var(--var-fontscale));
  font-weight: 500;
  line-height: 18px;
  color: #016cb0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 3px;
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 12px;
}

.related-card .card-thumb {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 50%;
  margin-right: 11px;
  border-radius: 10px;
}

.card-category {
  background: white;
  color: #1a82c4;
  font-size: calc(11px * var(--var-fontscale));
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 15px;
  text-transform: uppercase;
}

.related-card .card-body {
  width: calc(50% - 12px);
}

.related-card .card-body * {
  text-align: left;
}

.related-card .card-meta {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: calc(10px * var(--var-fontscale));
  font-weight: 400;
  line-height: 15px;
  color: #6a7282;
  margin-top: 12px;
  text-align: left;
}

.card-date {
  font-size: calc(11px * var(--var-fontscale));
  color: #999;
  margin-bottom: 10px;
  display: block;
}

.related-card h3 {
  font-size: calc(15px * var(--var-fontscale));
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 20px;
  color: #293b49;
  font-family: "Montserrat", sans-serif;
}

.related-card p {
  font-size: calc(12px * var(--var-fontscale));
  font-weight: 400;
  line-height: 15px;
  color: #6a7282;
  font-family: "Montserrat", sans-serif;
}

.single-article-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #eee;
  color: #1a82c4;
  font-size: calc(14px * var(--var-fontscale));
  font-weight: 600;
}

.single-article-footer a {
  color: #1a82c4;
  text-decoration: underline;
}

.ctrl-btn {
  padding: 8px 25px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: calc(13px * var(--var-fontscale));
  font-weight: 600;
  color: #666;
  cursor: pointer;
  margin: 0 5px;
}

.related-news-section .ctrl-btn {
  padding: 11px 32px;
  border: none;
  border-radius: 9999px;
  background-color: #fff;
  color: #293b49;
  font-weight: 500;
  cursor: pointer;
  font-size: calc(16px * var(--var-fontscale));
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.news-article-body {
  background: #fff;
  border-radius: 20px;
  padding: 31px 48px;
  max-width: 996px;
  margin: 0 auto;
}

.single-noticia-img {
  width: 900px;
  max-height: 561px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 64px;
  aspect-ratio: 950 / 593;
  height: max-content;
}

.footer-report a {
  display: block;
  margin-top: 96px;
  padding-top: 34px;
  text-align: left;
  font-size: calc(18px * var(--var-fontscale));
  color: #1a82c4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 24px;
  border-top: 1px solid #d1d5dc;
  text-decoration: none;
}

.footer-report a:hover {
  text-decoration: underline;
}

.single-news .gallery-carousel-track .gallery-card img {
  aspect-ratio: 950 / 593;
  height: max-content !important;
}
