.views-element-container {
  padding: 21vw clamp(30px, 5vw, 75px) 70px clamp(30px, 5vw, 75px);
  width: 100vw;
  overflow-x: hidden;
}

.wrapper-top {
  width: 100vw;
  height: 40vh;
background: linear-gradient(135deg, rgba(87,195,197,1) 0%, rgba(101,158,196,1) 50%, rgba(111,138,195,1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20vh;
  color: #ffffff;
}

.region-footer {
background: linear-gradient(135deg, rgba(87,195,197,1) 0%, rgba(101,158,196,1) 50%, rgba(111,138,195,1) 100%);
}

.footer-col a {
    display: block!important;
}


.contact-image {
 width: 100vw;
}

.view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 4vw;
  column-gap: 4vw;
}

.node--type-news {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
background: linear-gradient(135deg, rgba(87,195,197,1) 0%, rgba(101,158,196,1) 50%, rgba(111,138,195,1) 100%);
  border-radius: 25px;
  padding: 35px;
  color: var(--color-text-alternative);
}

.date {
  align-self: flex-end;
  font-size: 14px;
  margin-bottom: 25px;
}

.field--name-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: clamp(30px, 2.5vw, 40px);
  margin-bottom: 5px;
}

.node__submitted {
    display: none!important;
  /*font-size: 12px;*/
  /*opacity: 0.7;*/
  /*margin-bottom: 30px;*/
}

.node__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  height: 100%;
}

.node__links {
  order: 2;
  align-self: flex-end;
  font-size: 14px;
  border: 1px solid #ffffff;
  padding: 17px;
  border-radius: 24px;
}

.node__links:hover {
  transform: scale(1.05);
  transition-duration: 150ms;
}

.field--name-body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  order: 1;
  margin-bottom: 20px;
}

.field--name-body a {
    display: inline;
}

.field--name-field__news-type {
    display: none;
}

.filters-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4vw;
    margin-bottom: 30px;
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 3;
}

.filter-heading {
    position: relative;
    font-size: 20px;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    padding: 0px 20px 5px 20px;
    color: rgba(0, 0, 0, 0.6);
    /* border-bottom: 1px solid linear-gradient(135deg, rgba(87,195,197,1) 0%, rgba(101,158,196,1) 50%, rgba(111,138,195,1) 100%); */
}

.filter-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px; /* Border thickness */
    background: linear-gradient(135deg, rgba(87,195,197,1) 0%, rgba(101,158,196,1) 50%, rgba(111,138,195,1) 100%);
    border-bottom-left-radius: 10px; /* Match parent's border-radius */
    border-bottom-right-radius: 10px;
}

.filter-choices-wrapper {
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 15px;
    display: none;
    flex-direction: column;
    padding: 0px;
    overflow: hidden;
}

.filter-choices-wrapper.is-open {
    display: flex;
}

.filter-choice {
    cursor: pointer;
    padding: 25px 20px 15px 20px;
    color: white;
}

.filter-choice:last-of-type {
   padding-bottom: 25px;
}

.filter-choice:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-text-highlight);
}

.filter-choice.selected {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-text-highlight);
}


@media only screen and (max-width: 1250px) {
  .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .filters-wrapper {
    grid-template-columns: repeat(2, 1fr);
    }

}

@media only screen and (max-width: 769px) {
  .view-content {
    grid-template-columns: repeat(1, 1fr);
  }
    .filters-wrapper {
    grid-template-columns: repeat(1, 1fr);
    }
}

main {
  padding: 0!important;
}

@media only screen and (max-width: 750px) {
  .contact-image {
    width: 120vw;
  }
}

@media only screen and (max-width: 480px) {
  .h1 {
    margin-bottom: 4vh;
  }
  .contact-image {
    width: 140vw;
  }
  .node--type-news {
  border-radius: 20px;
  padding: 25px;
}
}
