/* [project]/components/section-header/style.css [app-client] (css) */
* {
  margin: 0;
  padding: 0;
  font-family: UbuntuSans, Bornomala, sans-serif;
}

*, :before, :after {
  box-sizing: inherit;
}

.section-header {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

@media (min-width: 0) {
  .section-header {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}

.section-header__title {
  overflow-wrap: break-word;
  text-align: left;
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 0) {
  .section-header__title {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .section-header__title {
    font-size: 1.0625rem;
  }
}

@media (min-width: 0) {
  .section-header__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
  }
}

@media (min-width: 1024px) {
  .section-header__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.41667;
  }
}

.section-header__comma {
  font-family: Bornomala, sans-serif;
}

/* [project]/components/section-footer/style.css [app-client] (css) */
* {
  margin: 0;
  padding: 0;
  font-family: UbuntuSans, Bornomala, sans-serif;
}

a {
  color: #000;
  text-decoration: none;
}

*, :before, :after {
  box-sizing: inherit;
}

.section-footer__link {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  border-radius: var(--shape-borderRadius);
  color: #fff;
  min-width: 64px;
  box-shadow: none;
  text-transform: capitalize;
  background-color: #b71c1c;
  border: 0;
  outline: 0;
  justify-content: center;
  align-items: center;
  height: 3.125rem;
  margin: 0;
  padding: 8px 24px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none;
  transition: background-color .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s cubic-bezier(.4, 0, .2, 1), border-color .25s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  position: relative;
}

.section-footer__link:hover {
  background-color: #8b0000;
}

.section-footer__icon {
  display: inherit;
  margin-left: 8px;
  margin-right: -4px;
}

.section-footer__icon > :first-of-type {
  font-size: 22px;
}

.section-footer__svg {
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  font-size: 1.5rem;
  display: inline-block;
}

/* [project]/components/gallery-modal.css [app-client] (css) */
body.lightbox-open {
  width: 100%;
  position: fixed;
  overflow: hidden;
}

.lightbox-overlay {
  z-index: 2147483647;
  background-color: #000000d9;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.lightbox-title {
  color: #fff;
  z-index: 10;
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  top: 16px;
  left: 24px;
}

.lightbox-close-btn {
  cursor: pointer;
  color: #fff;
  z-index: 10;
  background: #ffffff26;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: background-color .2s;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.lightbox-close-btn:hover {
  background: #ffffff4d;
}

.lightbox-nav-btn {
  cursor: pointer;
  color: #fff;
  z-index: 10;
  background: #ffffff26;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: background-color .2s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav-btn:hover {
  background: #ffffff4d;
}

.lightbox-nav-btn--prev {
  left: 16px;
}

.lightbox-nav-btn--next {
  right: 16px;
}

.lightbox-image-wrap {
  border-radius: 8px;
  width: 95vw;
  height: 95vh;
  position: relative;
  overflow: hidden;
}

.video-modal-overlay {
  z-index: 2147483647;
  background-color: #000000d9;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.video-modal-close-btn {
  cursor: pointer;
  color: #fff;
  z-index: 10;
  background: #ffffff26;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: background-color .2s;
  display: flex;
  position: absolute;
  top: 16px;
  right: 16px;
}

.video-modal-close-btn:hover {
  background: #ffffff4d;
}

.video-modal-iframe-wrap {
  line-height: 0;
}

.video-modal-iframe {
  border: none;
  border-radius: 8px;
  width: 90vw;
  max-width: 900px;
  height: 500px;
}

/* [project]/components/home/gallery-section/style.css [app-client] (css) */
* {
  margin: 0;
  padding: 0;
  font-family: UbuntuSans, Bornomala, sans-serif;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

*, :before, :after {
  box-sizing: inherit;
}

.gallery-section {
  text-align: center;
  width: 100%;
  max-width: 73.125rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 0) {
  .gallery-section {
    margin-top: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 800px) {
  .gallery-section {
    margin-top: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery-section {
    margin-top: 4rem;
  }
}

@media (min-width: 1390px) {
  .gallery-section {
    padding-left: 0;
    padding-right: 0;
  }
}

.gallery-section__grid {
  --Grid-columns: 12;
  --Grid-columnSpacing: 1.25rem;
  --Grid-rowSpacing: 1.25rem;
  box-sizing: border-box;
  gap: var(--Grid-rowSpacing) var(--Grid-columnSpacing);
  flex-flow: wrap;
  min-width: 0;
  display: flex;
}

@media (min-width: 0) {
  .gallery-section__grid {
    margin-bottom: 1.5625rem;
  }
}

@media (min-width: 1024px) {
  .gallery-section__grid {
    margin-bottom: 3.75rem;
  }
}

.gallery-section__grid-item {
  width: calc(100% * 12 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 12) *
      (var(--Grid-parent-columnSpacing, 1.25rem) / var(--Grid-parent-columns, 12)));
  box-sizing: border-box;
  flex-direction: column;
  flex-grow: 0;
  flex-basis: auto;
  min-width: 0;
  display: flex;
}

@media (min-width: 600px) {
  .gallery-section__grid-item {
    width: calc(100% * 6 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 6) *
        (var(--Grid-parent-columnSpacing, 1.25rem) / var(--Grid-parent-columns, 12)));
  }
}

@media (min-width: 1024px) {
  .gallery-section__grid-item {
    width: calc(100% * 4 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 4) *
        (var(--Grid-parent-columnSpacing, 1.25rem) / var(--Grid-parent-columns, 12)));
  }
}

.gallery-card {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px #0000000d;
}

.gallery-card__image-wrap {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-card__image-wrap .gallery-card__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  display: block;
}

.gallery-card__image-wrap:hover .gallery-card__img {
  transform: scale(1.03);
}

.gallery-card__hover-overlay {
  opacity: 0;
  border-radius: inherit;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: 0;
}

.gallery-card__image-wrap:hover .gallery-card__hover-overlay {
  opacity: 1;
}

.gallery-card__title-wrapper {
  padding: 1.1875rem 2rem;
}

.gallery-card__title {
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.video-card {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px #0000000d;
}

.video-card__thumbnail-wrap {
  width: 100%;
  height: 14.6875rem;
  position: relative;
  overflow: hidden;
}

.video-card__thumbnail-img {
  object-fit: cover;
  width: 100%;
  height: 14.6875rem;
  display: block;
}

.video-card__overlay {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-card__pulse-container {
  width: 3.79375rem;
  height: 3.79375rem;
  position: relative;
}

@keyframes video-pulse {
  0% {
    opacity: .4;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(3);
  }
}

.video-card__pulse-ring {
  opacity: 0;
  background-color: #fff;
  border-radius: 50%;
  animation: 2s ease-out infinite video-pulse;
  position: absolute;
  inset: 0;
}

.video-card__pulse-ring--delayed {
  animation-delay: .5s;
}

.video-card__play-btn {
  background-color: #e85d65;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.79375rem;
  height: 3.79375rem;
  margin: 0 auto;
  display: flex;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-section__footer {
  justify-content: center;
  margin-bottom: 2.5rem;
  display: flex;
}

/* [project]/components/home/blog-section/style.css [app-client] (css) */
* {
  margin: 0;
  padding: 0;
  font-family: UbuntuSans, Bornomala, sans-serif;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

*, :before, :after {
  box-sizing: inherit;
}

.blog-section {
  text-align: center;
  width: 100%;
  max-width: 73.125rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 0) {
  .blog-section {
    margin-top: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 800px) {
  .blog-section {
    margin-top: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-section {
    margin-top: 4rem;
  }
}

@media (min-width: 1390px) {
  .blog-section {
    padding-left: 0;
    padding-right: 0;
  }
}

.blog-section__grid {
  --Grid-columns: 12;
  --Grid-columnSpacing: 1rem;
  --Grid-rowSpacing: 1rem;
  box-sizing: border-box;
  gap: var(--Grid-rowSpacing) var(--Grid-columnSpacing);
  flex-flow: wrap;
  min-width: 0;
  display: flex;
}

@media (min-width: 0) {
  .blog-section__grid {
    margin-bottom: 1.5625rem;
  }
}

@media (min-width: 1024px) {
  .blog-section__grid {
    margin-bottom: 3.75rem;
  }
}

.blog-section__grid-item {
  width: calc(100% * 12 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 12) *
      (var(--Grid-parent-columnSpacing, 1rem) / var(--Grid-parent-columns, 12)));
  box-sizing: border-box;
  flex-direction: column;
  flex-grow: 0;
  flex-basis: auto;
  min-width: 0;
  display: flex;
}

@media (min-width: 600px) {
  .blog-section__grid-item {
    width: calc(100% * 6 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 6) *
        (var(--Grid-parent-columnSpacing, 1rem) / var(--Grid-parent-columns, 12)));
  }
}

@media (min-width: 1024px) {
  .blog-section__grid-item {
    width: calc(100% * 4 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 4) *
        (var(--Grid-parent-columnSpacing, 1rem) / var(--Grid-parent-columns, 12)));
  }
}

.blog-card-link {
  height: 100%;
  display: block;
}

.blog-card__inner {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #919eab1f;
  border-radius: 1.25rem;
  flex-direction: column;
  align-items: start;
  height: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 6px 2px #00000008;
}

.blog-card__image-wrap {
  vertical-align: bottom;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.blog-card__image-wrap:after {
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, #0009 0%, #0000 100%);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.blog-card__date {
  color: #fff;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
  background: none;
  padding: 0;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  bottom: .825rem;
  left: .75rem;
}

.blog-card__content {
  min-height: unset;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  overflow: hidden;
}

.blog-card__body {
  min-height: unset;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.blog-card__text {
  min-height: unset;
  flex-direction: column;
  flex: 1;
  gap: .25rem;
  display: flex;
  overflow: hidden;
}

.blog-card__title {
  overflow-wrap: break-word;
  color: #111827;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  overflow: hidden;
}

.blog-card__excerpt {
  overflow-wrap: break-word;
  color: #6b7280;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: none;
  margin: .5rem 0 0;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.625;
  display: -webkit-box;
  overflow: hidden;
}

.blog-section__footer {
  justify-content: center;
  margin-bottom: 2.5rem;
  display: flex;
}

/* [project]/components/home-hero/style.css [app-client] (css) */
.hero-slider {
  color: #fff;
  background-position: 74%;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  background-position: 74%;
  background-size: cover;
  transition: opacity .8s ease-in-out;
  position: absolute;
  inset: 0;
}

@media (min-width: 0) {
  .hero-slider {
    height: 22rem;
  }
}

@media (min-width: 1024px) {
  .hero-slider {
    height: 34rem;
  }
}

.hero-overlay {
  z-index: 0;
  background-image: url("/assets/background/background-overlay-2.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media (min-width: 0) {
  .hero-overlay {
    background-position: 0 790%;
    padding: 1.25rem;
  }
}

@media (min-width: 800px) {
  .hero-overlay {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-overlay {
    background-position: 0 60%;
  }
}

.hero-content {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

@media (min-width: 600px) {
  .hero-content {
    flex-direction: row;
  }
}

@media (min-width: 0) {
  .hero-content {
    justify-content: center;
  }
}

@media (min-width: 600px) {
  .hero-content {
    max-width: 37.5rem;
  }
}

@media (min-width: 800px) {
  .hero-content {
    max-width: 45.875rem;
    margin: auto;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    justify-content: space-between;
    max-width: 60.125rem;
  }
}

.hero-text-wrapper {
  width: 100%;
}

.hero-title-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (min-width: 0) {
  .hero-title-row {
    max-width: 27.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 800px) {
  .hero-title-row {
    max-width: 37.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title-row {
    max-width: 50rem;
    margin-bottom: 2rem;
  }
}

.hero-title {
  overflow-wrap: break-word;
  margin: 0;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 0) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (min-width: 800px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.375rem;
  }
}

.hero-description {
  overflow-wrap: break-word;
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.77778;
}

@media (min-width: 0) {
  .hero-description {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .hero-description {
    font-size: 1.0625rem;
  }
}

@media (min-width: 0) {
  .hero-description {
    max-width: 19.1875rem;
  }
}

@media (min-width: 800px) {
  .hero-description {
    max-width: 25rem;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    max-width: 32.3125rem;
  }
}

.hero-actions {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 0) {
  .hero-actions {
    gap: .5rem;
    margin-top: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    gap: 1rem;
    margin-top: 2.25rem;
  }
}

.hero-btn-primary {
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  color: #fff;
  min-width: 64px;
  box-shadow: none;
  text-transform: capitalize;
  background-color: #b82027;
  border: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding: 6px 20px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none;
  transition: background-color .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s cubic-bezier(.4, 0, .2, 1), border-color .25s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  position: relative;
}

@media (min-width: 0) {
  .hero-btn-primary {
    min-width: 10rem;
  }
}

@media (min-width: 600px) {
  .hero-btn-primary {
    min-width: 11.25rem;
  }
}

.hero-btn-secondary {
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  min-width: 64px;
  color: inherit;
  box-shadow: none;
  text-transform: capitalize;
  background-color: #0000;
  border: 1px solid #919eab52;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding: 5px 20px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none;
  transition: background-color .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s cubic-bezier(.4, 0, .2, 1), border-color .25s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  position: relative;
}

@media (min-width: 0) {
  .hero-btn-secondary {
    min-width: 11.25rem;
  }
}

@media (min-width: 600px) {
  .hero-btn-secondary {
    min-width: 12.5rem;
  }
}

.hero-dots {
  z-index: 2;
  gap: .75rem;
  display: flex;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-dot {
  cursor: pointer;
  background: none;
  border: 2px solid #fff9;
  border-radius: 50%;
  width: .75rem;
  height: .75rem;
  padding: 0;
  transition: background-color .3s, border-color .3s;
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
}

/* [project]/styles/wrapper.module.css [app-client] (css) */
.wrapper-module__VbawyW__wrapper {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1rem;
}

@media (min-width: 0) {
  .wrapper-module__VbawyW__wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 800px) {
  .wrapper-module__VbawyW__wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1390px) {
  .wrapper-module__VbawyW__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

/* [project]/components/ad-banner/style.css [app-client] (css) */
.home-ad-banner {
  z-index: 1;
  border-radius: 0;
  width: 100%;
  max-width: 73.125rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.home-ad-banner a {
  width: 100%;
  height: 100%;
  display: block;
}

.home-ad-banner img {
  object-fit: cover;
  width: 100%;
}

@media (min-width: 0) {
  .home-ad-banner {
    margin-top: 1.5rem;
    padding-inline: 1.25rem;
  }
}

@media (min-width: 800px) {
  .home-ad-banner {
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .home-ad-banner {
    max-height: 9rem;
    padding-inline: 1.5rem;
  }

  .home-ad-banner img {
    object-fit: cover;
    height: 9rem;
  }
}

@media (min-width: 1390px) {
  .home-ad-banner {
    max-height: 10rem;
    padding-inline: 0 !important;
  }
}

/* [project]/components/breaking-news/style.css [app-client] (css) */
.breaking-news-section {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 0) {
  .breaking-news-section {
    margin-top: 1.5rem;
  }
}

@media (min-width: 800px) {
  .breaking-news-section {
    margin-top: 2.5rem;
  }
}

.breaking-news-header {
  align-items: center;
  margin-bottom: .25rem;
  display: flex;
}

.breaking-news-label {
  color: #b82027;
  white-space: nowrap;
  background-color: #0000;
  align-items: center;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
}

@media (min-width: 1024px) {
  .breaking-news-label {
    padding: .625rem 1.5rem;
    font-size: 1.125rem;
  }
}

.breaking-news-scroll {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.breaking-news-track {
  gap: 1rem;
  width: max-content;
  animation: 40s linear infinite scroll-left;
  display: flex;
}

.breaking-news-scroll:hover .breaking-news-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.breaking-news-card {
  background-color: #f0f0f0;
  border: none;
  border-radius: .5rem;
  flex-shrink: 0;
  align-items: stretch;
  width: 22rem;
  padding: .5rem;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.breaking-news-card:hover {
  background-color: #f0f0f0;
}

.breaking-news-card-img {
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  width: 4.7rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 25rem) {
  .breaking-news-card-img {
    width: 6.8rem;
  }
}

@media (min-width: 37.5rem) {
  .breaking-news-card-img {
    width: 7.5rem;
  }
}

.breaking-news-card-text {
  align-items: center;
  width: calc(100% - 7.5rem);
  padding: .25rem .5rem;
  display: flex;
}

@media (max-width: 24.9375rem) {
  .breaking-news-card-text {
    width: calc(100% - 5rem);
  }
}

@media (min-width: 37.5rem) {
  .breaking-news-card-text {
    padding: 0 1rem;
  }
}

.breaking-news-card-title {
  color: #141414;
  overflow-wrap: break-word;
  text-align: left;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.4375rem;
  display: -webkit-box;
  overflow: hidden;
}

@media (min-width: 37.5rem) {
  .breaking-news-card-title {
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

.breaking-news-ad {
  margin-top: 1rem;
}

/* [project]/components/home/news-section/style.css [app-client] (css) */
.home-news-section {
  width: 100%;
}

@media (min-width: 0) {
  .home-news-section {
    margin-top: 2.5rem;
  }
}

@media (min-width: 800px) {
  .home-news-section {
    margin-top: 5rem;
  }
}

@media (min-width: 1024px) {
  .home-news-section {
    margin-top: 4rem;
  }
}

.home-news-featured-row {
  grid-template-columns: 65.9% 1fr;
  align-items: stretch;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
}

.home-news-featured-main, .home-news-featured-side {
  display: flex;
}

.home-news-featured-side .home-news-card-second {
  height: 100%;
}

.home-news-card-link {
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  display: block;
}

.home-news-featured-horizontal {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #919eab1f;
  border-radius: 1.25rem;
  flex-direction: column;
  height: 100%;
  transition: border-color .3s, box-shadow .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 6px 2px #00000008;
}

.home-news-featured-horizontal:hover {
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
}

.home-news-featured-horizontal:hover .home-news-img-wide img {
  transform: scale(1.05);
}

.home-news-featured-horizontal:hover .home-news-title {
  color: #b82027;
}

.home-news-card {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #919eab1f;
  border-radius: 1.25rem;
  flex-direction: column;
  height: 100%;
  transition: border-color .3s, box-shadow .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 6px 2px #00000008;
}

.home-news-card:hover {
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
}

.home-news-card:hover .home-news-img-square img {
  transform: scale(1.05);
}

.home-news-card:hover .home-news-title {
  color: #b82027;
}

.home-news-img {
  vertical-align: bottom;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.home-news-img img {
  transition: opacity .15s, filter .3s, transform .7s ease-out;
}

.home-news-img:after {
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, #0009 0%, #0000 100%);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.home-news-date {
  color: #fff;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
  background: none;
  padding: 0;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  bottom: .825rem;
  left: .75rem;
}

.home-news-featured-text {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 6.5rem;
  padding: 1.875rem 1rem 1rem;
  display: flex;
}

.home-news-featured-text-inner {
  min-height: unset;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.home-news-card-text {
  min-height: unset;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  overflow: hidden;
}

.home-news-card-text-inner {
  min-height: unset;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.home-news-text-wrap {
  min-height: unset;
  flex-direction: column;
  flex: 1;
  gap: .25rem;
  display: flex;
  overflow: hidden;
}

.home-news-title {
  overflow-wrap: break-word;
  color: #111827;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color .15s cubic-bezier(.4, 0, .2, 1);
  display: -webkit-box;
  overflow: hidden;
}

.home-news-excerpt {
  overflow-wrap: break-word;
  color: #6b7280;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: none;
  margin: .5rem 0 0;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.625;
  display: -webkit-box;
  overflow: hidden;
}

.home-news-grid {
  --Grid-columns: 12;
  --Grid-columnSpacing: 1.5rem;
  --Grid-rowSpacing: 1.5rem;
  box-sizing: border-box;
  gap: var(--Grid-rowSpacing) var(--Grid-columnSpacing);
  flex-flow: wrap;
  min-width: 0;
  display: flex;
}

@media (min-width: 0) {
  .home-news-grid {
    margin-bottom: 1.5625rem;
  }
}

@media (min-width: 1024px) {
  .home-news-grid {
    margin-bottom: 3.75rem;
  }
}

.home-news-grid-item {
  width: calc(100% * 12 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 12) *
      (var(--Grid-parent-columnSpacing, 1.5rem) / var(--Grid-parent-columns, 12)));
  box-sizing: border-box;
  flex-direction: column;
  flex-grow: 0;
  flex-basis: auto;
  min-width: 0;
  display: flex;
}

@media (min-width: 600px) {
  .home-news-grid-item {
    width: calc(100% * 6 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 6) *
        (var(--Grid-parent-columnSpacing, 1.5rem) / var(--Grid-parent-columns, 12)));
  }
}

@media (min-width: 1024px) {
  .home-news-grid-item {
    width: calc(100% * 4 / var(--Grid-parent-columns, 12) - (var(--Grid-parent-columns, 12) - 4) *
        (var(--Grid-parent-columnSpacing, 1.5rem) / var(--Grid-parent-columns, 12)));
  }
}

.home-news-footer {
  justify-content: center;
  margin-bottom: 0;
  display: flex;
}

@media (min-width: 1024px) {
  .home-news-featured-horizontal {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }

  .home-news-featured-horizontal .home-news-img-wide {
    width: 55%;
    height: 100%;
    min-height: unset;
    flex-shrink: 1;
    align-self: stretch;
    position: relative;
  }

  .home-news-featured-horizontal .home-news-img-wide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .home-news-featured-horizontal .home-news-featured-text {
    justify-content: flex-start;
    align-self: flex-start;
    width: 45%;
    padding: 1.25rem 1rem;
  }

  .home-news-featured-horizontal .home-news-featured-text-inner {
    max-width: 20.8125rem;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .home-news-featured-row {
    grid-template-columns: 1fr;
  }

  .home-news-card-second .home-news-img-square {
    height: 10.5rem;
  }
}

@media (max-width: 599px) {
  .home-news-featured-row {
    flex-direction: column;
    gap: 1rem;
    display: flex;
  }

  .home-news-featured-horizontal {
    flex-direction: column;
  }

  .home-news-featured-horizontal .home-news-img-wide, .home-news-card-second .home-news-img-square {
    height: 10.5rem;
  }
}

/* [project]/components/home/crisis-stats/style.css [app-client] (css) */
.crisis-section {
  background-color: #fff1f1;
  width: 100%;
  margin-top: 2.5rem;
  padding: 2.5rem 0;
}

@media (min-width: 800px) {
  .crisis-section {
    margin-top: 5rem;
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .crisis-section {
    margin-top: 4rem;
    padding: 4rem 0;
  }
}

.crisis-header {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.75rem;
  display: flex;
}

@media (min-width: 1024px) {
  .crisis-header {
    margin-bottom: 2.75rem;
  }
}

.crisis-heading {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (min-width: 1024px) {
  .crisis-heading {
    font-size: 3rem;
    line-height: 1.3;
  }
}

.crisis-subheading {
  color: #b82027;
  max-width: 42rem;
  margin: 0;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .crisis-subheading {
    font-size: 1.125rem;
  }
}

.crisis-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  display: grid;
}

@media (min-width: 37.5rem) {
  .crisis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.crisis-card {
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border-radius: 16px;
  transition: transform .32s cubic-bezier(.22, .68, 0, 1.2), box-shadow .32s;
  position: relative;
  overflow: hidden;
}

.crisis-card:hover {
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
}

.crisis-card:hover img {
  transform: scale(1.05);
}

.crisis-card img {
  transition: transform .5s;
}

.crisis-overlay {
  z-index: 1;
  border-radius: 16px;
  position: absolute;
  inset: 0;
}

.crisis-card--dark .crisis-overlay {
  background: linear-gradient(145deg, #050308ed 0%, #320a19d4 45%, #080312f7 100%);
}

.crisis-card--bronze .crisis-overlay {
  background: linear-gradient(145deg, #1e1005e8 0%, #4b280ac9 45%, #190c03f2 100%);
}

.crisis-card--wood .crisis-overlay {
  background: linear-gradient(145deg, #3c1c05de 0%, #733e0cbd 45%, #321604ed 100%);
}

.crisis-shimmer {
  z-index: 2;
  opacity: 0;
  background: linear-gradient(108deg, #0000 38%, #ffffff0b 50%, #0000 62%);
  transition: opacity .35s;
  position: absolute;
  inset: 0;
}

.crisis-card:hover .crisis-shimmer {
  opacity: 1;
}

.crisis-top-accent {
  z-index: 3;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.crisis-card--dark .crisis-top-accent {
  background: linear-gradient(90deg, #8a1018, #e8614a, #8a1018);
}

.crisis-card--bronze .crisis-top-accent {
  background: linear-gradient(90deg, #6a3a08, #d4902a, #6a3a08);
}

.crisis-card--wood .crisis-top-accent {
  background: linear-gradient(90deg, #7a4008, #e0a830, #7a4008);
}

.crisis-inner-frame {
  z-index: 3;
  pointer-events: none;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  position: absolute;
  inset: 12px;
}

.crisis-inner-frame:before, .crisis-inner-frame:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
}

.crisis-inner-frame:before {
  border-top: 2px solid #ffffff47;
  border-left: 2px solid #ffffff47;
  border-radius: 4px 0 0;
  top: -1px;
  left: -1px;
}

.crisis-inner-frame:after {
  border-bottom: 2px solid #ffffff47;
  border-right: 2px solid #ffffff47;
  border-radius: 0 0 4px;
  bottom: -1px;
  right: -1px;
}

.crisis-content {
  z-index: 4;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.125rem 1.375rem 1.375rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.crisis-top-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.crisis-badge {
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: .625rem;
  font-weight: 700;
}

.crisis-badge--danger {
  color: #fff;
  background: #b82027;
  box-shadow: 0 2px 10px #b820278c;
}

.crisis-badge--neutral {
  color: #ffffffe0;
  background: #ffffff1c;
  border: 1px solid #fff3;
}

.crisis-icon-circle {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  display: flex;
}

.crisis-card--dark .crisis-icon-circle {
  color: #e8a090;
  background: #e8614a24;
  border: 1px solid #e8614a59;
}

.crisis-card--bronze .crisis-icon-circle {
  color: #d4902a;
  background: #d4902a24;
  border: 1px solid #d4902a59;
}

.crisis-card--wood .crisis-icon-circle {
  color: #e0a830;
  background: #e0a83024;
  border: 1px solid #e0a83059;
}

.crisis-body {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.crisis-card-title {
  color: #fff;
  letter-spacing: -.02em;
  text-shadow: 0 2px 20px #0009;
  margin: 0;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .crisis-card-title {
    font-size: 2.125rem;
  }
}

.crisis-card-subtitle {
  color: #ffffff94;
  margin: 0;
  font-size: .8rem;
  line-height: 1.45;
}

.crisis-divider {
  background: linear-gradient(90deg, #0000, #ffffff24, #0000);
  height: 1px;
  margin-bottom: 10px;
}

.crisis-stat {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.crisis-number {
  letter-spacing: -.02em;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 1024px) {
  .crisis-number {
    font-size: 2.5rem;
  }
}

.crisis-card--dark .crisis-number {
  color: #e8614a;
  text-shadow: 0 0 28px #e8614a73;
}

.crisis-card--bronze .crisis-number, .crisis-card--wood .crisis-number {
  color: #f0c060;
  text-shadow: 0 0 28px #f0c06066;
}

.crisis-cause {
  color: #ffffff73;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .6875rem;
  font-weight: 600;
}

.crisis-disclaimer {
  color: #9ca3af;
  text-align: center;
  margin: 3rem 0 0;
  font-size: .8125rem;
}

/*# sourceMappingURL=_0zwdt8y._.css.map*/