/* merriweather-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/merriweather-v33-latin-regular.woff2') format('woff2');
}

body {
  font-family: 'Arial', sans-serif;
  color: #212121;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;

  h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
  }
}

.container-fluid {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.main-container {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.main-content-container {
  @media(max-width: 1200px) {
    width: 100%;
    flex: 0 0 auto;
  }
}

.lazy-image-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.image-skeleton {
  width: 100%;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 400% 100%;
  animation: shimmer 1.2s infinite linear;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.lazy-image {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: block;
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.news-category {
  &.category-badge{
    border-radius: 999px;
    /* background-color: #0fa14c4d; */
    width: fit-content;
    padding: 3px 12px;
    /* color: #0FA14C; */
    font-size: 14px;
    font-weight: 400;
  }

  &.Markets {
    color: #ff5733;

    &.category-badge {
      background-color: #ff57334d;
    }
  }

  &.Sports {
    color: #33ff57;
    &.category-badge {
      background-color: #33ff574d;
    }
  }

  &.Weather {
    color: #3357ff;

    &.category-badge {
      background-color: #3357ff4d;
    }
  }

  &.Business {
    color: #ff33a8;
    &.category-badge {
      background-color: #ff33a84d;
    }
  }

  &.Technology {
    color: #a833ff;

    &.category-badge {
      background-color: #a833ff4d;
    }
  }
}