.bigNewsBlock {
  width: 95%;
  max-width: 1280px;
  margin: 20px auto 0px;
  padding: 0;
}

.big-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

.big-news-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 40px;
  background: var(--Hittarp-vit);
  min-height: 327px;
  border-radius: 8px;
  max-height: 327px;
  box-sizing: border-box;
  overflow: hidden;
}

.big-news-item_image {
  width: 275px;
  height: 100%;
  min-height: 327px;
  flex-shrink: 0;
}

.big-news-item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-news-item_content {
  flex: 1;
  padding: 10px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.big-news-item_meta {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 0px;
}

.big-news-item_date {
  display: flex;
  align-items: center;
  color: var(--Hittarp-svart);
  font-family: Oswald;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  width: min(110%, 65px);
  border-bottom: 1px solid var(--Hittarp-red1);
}

.big-news-item_category {
  color: var(--Hittarp-vit);
  text-align: center;
  font-family: Oswald;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  background-color: var(--Hittarp-red1);
  padding: 5px 15px;
  min-width: 60px;
  border-radius: 2px;
  margin-right: 35px;
}

.big-news-item_title {
  font-family: Anton;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  color: var(--Hittarp-svart);
  margin: 16px 0px 10px;
}

.big-news-item_excerpt {
  font-family: "Glacial Indifference";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: var(--Hittarp-svart);
  margin-top: 0px;
  width: 100%;
  min-height: 100px;
}

.big-news-item_excerpt p {
  padding-right: 10px;
  margin: 0;
}

.big-news-item_link {
  color: var(--Hittarp-svart);
  font-family: Oswald;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
  text-decoration: none;
  position: absolute;
  bottom: 15px;
}

.big-news-item_link::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="10" viewBox="0 0 11 10" fill="none"><path d="M1 0.5L5 5L1 9.5" stroke="%23FF1500"/><path d="M6 0.5L10 5L6 9.5" stroke="%23FF1500"/></svg>');
  margin-left: 5px;
}

.big-news-pagination {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 150px;
}

.page-numbers {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  align-items: center;
}

.big-news-pagination .page-numbers {
  margin: 0 5px;
  text-decoration: none;
  color: var(--Hittarp-vit);
  text-align: center;
  font-family: "Glacial Indifference";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border: none;
  background-color: var(--Hittarp-gra);
}

.big-news-pagination .current {
  background-color: var(--Hittarp-red1);
  color: white;
  border-color: var(--Hittarp-red1);
}
/* Add these styles to your existing CSS */
.big-news-categories {
  display: flex;
  gap: 33px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.category-button {
  padding: 8px 20px 2px 0px;
  color: var(--Hittarp-svart);
  font-family: Oswald;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.08px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
}

.category-button.active {
  font-weight: 600;
}
.category-button:after {
  display: block;
  content: "";
  border-bottom: solid 3px var(--Hittarp-red1);
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 0% 100%;
}
.category-button.active:after,
.category-button:hover:after {
  transform: scaleX(1);
}


.big-news-category-title {
  font-family: Anton;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  margin: 0 0 30px 0;
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .big-news-grid {
    gap: 20px;
  }
  .big-news-item {
    gap: 20px;
  }
  .big-news-item_category{
    margin-right: 15px;
    min-width: unset;
  }
}

@media (max-width: 1024px) {
  .big-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .bigNewsBlock {
    padding: 0;
  }

  .big-news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: unset;
  }

  .big-news-item_image {
    width: 100%;
    height: 200px;
  }

  .big-news-item_content {
    padding: unset;
  }


  .big-news-category-title {
    margin-bottom: 15px;
  }
  .big-news-item_category{
    margin-right: unset;
  }

  .big-news-item_excerpt  {
    padding-bottom: 25px;
  }

  .big-news-categories {
    gap: 8px;
  }

  .category-button {
    padding: 6px 15px;
    font-size: 12px;
  }
}

.big-news-no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: var(--Hittarp-vit);
  border-radius: 8px;
}

.big-news-no-posts p {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  color: var(--Skog);
  margin: 0;
}
