@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-2deg) rotateX(-2deg);
    transform: rotateY(-2deg) rotateX(-2deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg) rotateX(0deg);
    transform: rotateY(0deg) rotateX(0deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-2deg) rotateX(-2deg);
    transform: rotateY(-2deg) rotateX(-2deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg) rotateX(0deg);
    transform: rotateY(0deg) rotateX(0deg);
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  width: 50.4rem;
  -webkit-animation: fadeIn 1s ease forwards;
  animation: fadeIn 1s ease forwards;
}
.card:nth-of-type(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.card:nth-of-type(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.card:nth-of-type(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.card:nth-of-type(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.card:nth-of-type(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.card:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.card:nth-of-type(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.card:nth-of-type(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.card:nth-of-type(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.card:nth-of-type(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.card:nth-of-type(11) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.card:nth-of-type(12) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.card:nth-of-type(13) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.card:nth-of-type(14) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.card:nth-of-type(15) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.card:nth-of-type(16) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.card:nth-of-type(17) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.card:nth-of-type(18) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.card:nth-of-type(19) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.card:nth-of-type(20) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.card--with-grid {
  width: auto;
  grid-column: span 4;
  margin-right: 0;
}
.card__cta {
  font-family: "Altissimo";
  font-weight: 500;
  color: #9e9e9e;
  font-size: 1.4rem;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.card__cta span {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(0deg, currentColor 0%, currentColor 100%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 1px;
  -webkit-transition: background-size 0.2s linear var(--background-delay, 0.15s);
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.card__cta svg {
  vertical-align: top;
  display: inline;
  line-height: 1;
  width: 2rem;
  height: 3.3rem;
  position: relative;
  left: -2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  stroke: currentColor;
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  -webkit-transition: stroke-dashoffset var(--stroke-duration, 0.15s)
    var(--stroke-easing, linear) var(--stroke-delay, 0s);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s)
    var(--stroke-easing, linear) var(--stroke-delay, 0s);
}
.card__cta:hover {
  color: #ba2229;
  --background-size: 0%;
  --background-delay: 0s;
  --stroke-dashoffset: 26;
  --stroke-duration: 0.3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: 0.195s;
}
.card__divider {
  width: 1px;
  height: 2rem;
  background: currentColor;
  margin: 0 0.4rem;
}
.card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.card__title {
  font-family: "Altissimo";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 2.4rem;
}
.card__description {
  line-height: 3.2rem;
  margin-bottom: 3.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  max-height: 10rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3.2rem;
}
.card__img {
  max-width: 370px;
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
  margin-bottom: 1.6rem;
  object-fit: contain;
}
.card__tag {
  color: #ffffff;
  background-color: #ba2229;
  padding: 0.2rem 2.6rem;
  margin-right: 1.6rem;
  text-transform: capitalize;
}
.card__tag--hidden {
  visibility: hidden;
  width: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.card__date {
  white-space: nowrap;
}
.card__date,
.card__location {
  font-family: "Altissimo";
}
.card__link-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.enoturism-card {
  display: block;
  grid-column: span 1;
  text-decoration: none;
}
.enoturism-card__title {
  font-family: "Altissimo";
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #ba2229;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 6.4rem;
}
.enoturism-card__location {
  font-size: 1.4rem;
  color: #2d2c2c;
}
.enoturism-card__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 58rem;
  margin-bottom: 3.2rem;
}

.accordion {
  color: #2d2c2c;
  font-family: "hero-new";
  font-size: 1.6rem;
}
.accordion__toggle {
  cursor: pointer;
  color: #2d2c2c;
  font-size: 1.6rem;
  padding-bottom: 2rem;
  margin: 2rem 0 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  border-bottom: 0.1rem solid transparent;
}
.accordion__toggle__icon {
  color: #2d2c2c;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion__content-wrapper {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion__content-wrapper__content {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.accordion--active .accordion__content-wrapper__content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.accordion--active .accordion__toggle {
  border-bottom-color: #eaeaea;
}
.accordion--active .accordion__toggle__icon {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.link {
  font-family: "Altissimo";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #1a1919;
  webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.link--no-href {
  display: none;
}
.link__text {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(0deg, currentColor 0%, currentColor 100%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 1px;
  -webkit-transition: background-size 0.2s linear var(--background-delay, 0.15s);
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.link__svg {
  vertical-align: top;
  display: inline;
  line-height: 1;
  width: 2rem;
  height: 3.3rem;
  position: relative;
  left: -2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  stroke: currentColor;
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  -webkit-transition: stroke-dashoffset var(--stroke-duration, 0.15s)
    var(--stroke-easing, linear) var(--stroke-delay, 0s);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s)
    var(--stroke-easing, linear) var(--stroke-delay, 0s);
}
.link--active-from-parent:hover .link,
.link:hover {
  color: #ba2229;
  --background-size: 0%;
  --background-delay: 0s;
  --stroke-dashoffset: 26;
  --stroke-duration: 0.3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: 0.195s;
}

.link--active-from-parent {
  cursor: pointer;
}

.skeleton {
  width: 100%;
}
.skeleton--hidden {
  display: none !important;
}
.skeleton__image {
  height: 25rem;
  width: 75%;
  max-width: 37rem;
}
.skeleton__text {
  height: 2.8rem;
  width: 100%;
}
.skeleton__title {
  height: 3.7rem;
  width: 100%;
}
.skeleton__description {
  height: 11.8rem;
  width: 100%;
}
.skeleton__text,
.skeleton__title,
.skeleton__description {
  max-width: 100%;
}
.skeleton__image,
.skeleton__text,
.skeleton__title,
.skeleton__description {
  background-color: #eaeaea;
  margin-bottom: 2.4rem;
  position: relative;
  overflow: hidden;
}
.skeleton__image:after,
.skeleton__text:after,
.skeleton__title:after,
.skeleton__description:after {
  content: "";
  -webkit-animation: loading 1.3s infinite;
  animation: loading 1.3s infinite;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(-120%);
  transform: translateX(-120%);
  z-index: 1;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(rgba(255, 255, 255, 0.3)),
    to(transparent)
  );
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}
.skeleton__parent {
  width: 100%;
  margin-bottom: 2.4rem;
}
.skeleton__parent > * {
  margin-bottom: 0;
}

@-webkit-keyframes loading {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes loading {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.calendar {
  max-width: 37rem;
  position: relative;
}
.calendar__popup-layer {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 10;
  display: none;
}
.calendar--popup-active .calendar__popup-layer {
  display: block;
}
.calendar__heading {
  position: relative;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: transparent;
  color: #1a1919;
  padding: 2.8rem 3.2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.calendar__heading__label {
  font-size: 1.6rem;
}
.calendar__heading__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.calendar__heading__remove {
  display: none;
  margin-left: 1.6rem;
  position: relative;
  width: 3rem;
  height: 2.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.calendar__heading__remove:after {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background-color: #1a1919;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.calendar__heading__remove:before {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background-color: #1a1919;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.calendar__heading__button {
  background: transparent;
  border: none;
  cursor: pointer;
}
.calendar__heading__button__icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 2rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  fill: currentColor;
  color: #1a1919;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.calendar__content {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}
.calendar--hover-mode .calendar__heading,
.calendar--inline .calendar__heading,
.calendar--active .calendar__heading,
.calendar__heading:hover {
  background-color: #ba2229 !important;
  color: #ffffff !important;
}
.calendar--hover-mode .calendar__heading .calendar__heading__button__icon,
.calendar--inline .calendar__heading .calendar__heading__button__icon,
.calendar--active .calendar__heading .calendar__heading__button__icon,
.calendar__heading:hover .calendar__heading__button__icon {
  color: #ffffff;
}
.calendar--active .calendar__heading__button__icon,
.calendar--inline .calendar__heading__button__icon {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.calendar--active .calendar__content,
.calendar--inline .calendar__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.calendar--active .calendar__heading__remove:after,
.calendar--active .calendar__heading__remove:before,
.calendar--hover-mode .calendar__heading__remove:after,
.calendar--hover-mode .calendar__heading__remove:before,
.calendar__heading:hover .calendar__heading__remove:after,
.calendar__heading:hover .calendar__heading__remove:before {
  background-color: #ffffff;
}
.calendar--inline .calendar__heading {
  cursor: default;
}
.calendar__pagination {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.6rem 2.3rem;
  border-bottom: 1px solid rgba(234, 234, 234, 0.3);
}
.calendar__pagination__button {
  cursor: pointer;
  background: transparent;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.calendar__pagination__button__icon {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
}
.calendar__pagination__button--previous .calendar__pagination__button__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.calendar__pagination__button:active:not(.calendar__pagination__button--disabled) {
  -webkit-transform: translateX(0.3rem);
  transform: translateX(0.3rem);
}
.calendar__pagination__button--previous:active:not(.calendar__pagination__button--disabled) {
  -webkit-transform: translateX(-0.3rem);
  transform: translateX(-0.3rem);
}
.calendar__pagination__button--disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.calendar__pagination__label {
  color: #2d2c2c;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
.calendar__months-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.calendar__months-slider__months {
  position: relative;
  width: 300%;
  height: 34.7rem;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.calendar__months-slider__months__list {
  background-color: rgba(234, 234, 234, 0.3);
  display: grid;
  position: absolute;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1px;
  width: 100%;
}
.calendar__months-slider__months__item {
  cursor: pointer;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background-color: #fdfdfd;
  padding: 1.6rem 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.calendar__months-slider__months__item:hover:not(.calendar__months-slider__months__item--disabled),
.calendar__months-slider__months__item--active:not(.calendar__months-slider__months__item--disabled) {
  color: #ffffff;
  background-color: #ba2229;
}
.calendar__months-slider__months__item--disabled {
  opacity: 0.3;
  cursor: default;
}

.load-more {
  width: 100%;
  grid-column: 1 / -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Altissimo";
  margin-top: 12rem;
}
.load-more--hidden {
  display: none;
}
.load-more__text {
  color: #000;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.load-more__text__bold {
  font-weight: 700;
}
.load-more__bar-wrapper {
  margin-top: 2.4rem;
  width: 50rem;
  height: 1.2rem;
  position: relative;
  overflow: hidden;
}
.load-more__bar-wrapper__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8rem;
  background-color: #eaeaea;
}
.load-more__bar-wrapper__progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1a1919;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
}
.load-more__button {
  margin-top: 5.6rem;
  background-color: #ba2229;
  padding: 1.7rem 2.7rem;
  min-width: 37rem;
  color: #ffffff;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.load-more__button:hover {
  background-color: #1a1919;
}
.load-more__button--disabled {
  opacity: 0.3;
  background-color: #9e9e9e;
  cursor: default;
}

.news-list__cards__no-results__info__subtitle {
  position: relative;
}
.news-list__cards__no-results__info__subtitle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -3.2rem;
  width: 0.5px;
  height: 20rem;
  background-color: #c4c4c4;
}
.news-list__cards__no-results__info__subtitle::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -3.2rem;
  width: 2px;
  height: 8rem;
  background-color: #ba2229;
  z-index: 10;
}

.news-list__cards__no-results__info__subtitle::before {
  height: 10rem;
}

.news-list__cards__no-results__info__subtitle::after {
  height: 4rem;
}

body {
  background-color: #f9f9f9;
}

.news {
  margin-top: 296px;
  position: relative;
  font-family: "Altissimo";
}
.news__title {
  color: #1a1919;
  font-weight: 700;
  font-size: 7.2rem;
  grid-column: 3 / span 7;
}
.news__subtitle {
  color: #1a1919;
  font-size: 5.6rem;
  grid-column: 2 / span 7;
  margin-top: 12rem;
  line-height: 7.2rem;
}
.news__know-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #2d2c2c;
  font-family: "Altissimo";
  font-size: 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  grid-column: 10 / span 3;
  align-self: end;
  justify-self: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-row: 2;
}
.news__know-more__icon {
  color: #ffffff;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.8rem;
}
.news__date {
  color: #2d2c2c;
  font-size: 1.8rem;
  grid-column: 2 / span 4;
  margin-top: 4rem;
}
.news__image {
  grid-column: 2 / -1;
  width: 100%;
  height: 48rem;
  margin-top: 7.2rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-list {
  grid-template-columns: repeat(14, minmax(0, 1fr));
  max-width: 1579px;
  margin: 7.4rem auto 280px;
  min-height: 70rem;
}
.news-list__filters {
  grid-column: 3 span;
  width: 100%;
}
.news-list__filters__title {
  color: #1a1919;
  font-family: "Altissimo";
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.news-list__filters__title__clear {
  color: #c1333a;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  display: none;
}
.news-list__filters__accordion {
  font-family: "hero-new";
}
.news-list__filters__accordion__content__checkbox-wrapper__label {
  display: block;
  margin-bottom: 1.2rem;
}
.news-list__filters__accordion__content__checkbox-wrapper__label__text {
  font-size: 1.4rem;
}
.news-list__filters__accordion__content__checkbox-wrapper--child {
  margin: 2rem 0 0 1.4rem;
}
.news-list__cards {
  grid-column: 4 / -1;
  display: grid;
  -webkit-column-gap: 3.2rem;
  -moz-column-gap: 3.2rem;
  column-gap: 3.2rem;
}
.news-list__cards__menu {
  grid-column: 1 / -1;
  margin-bottom: 6.4rem;
  align-self: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-list__cards__menu .calendar {
  margin-top: -3.1rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-left: 1.7rem;
}
.news-list__cards__menu .calendar__heading {
  padding: 1.6rem;
}
.news-list__cards__menu__wrapper {
  padding-bottom: 1.1rem;
  border-bottom: 0.1rem solid rgba(26, 25, 25, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-list__cards__menu__item {
  display: inline-block;
  font-size: 1.6rem;
  color: #1a1919;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 5.6rem;
  margin-bottom: 2rem;
}
.news-list__cards__menu__item:last-child {
  margin-right: 0;
}
.news-list__cards__menu__item--selected,
.news-list__cards__menu__item:hover {
  color: #ba2229;
}
.news-list__cards__no-results {
  display: none;
  grid-column: 1 / -1;
  font-family: "Altissimo";
  justify-self: center;
}
.news-list__cards__no-results__title {
  color: #ba2229;
  line-height: 8rem;
  font-size: 5.6rem;
  margin-bottom: 5.6rem;
}
.news-list__cards__no-results__info {
  margin-left: 3.2rem;
}
.news-list__cards__no-results__info__subtitle {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1919;
  font-style: italic;
  margin-bottom: 2.4rem;
  line-height: 2.4rem;
}
.news-list__cards__no-results__info__description {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-family: "hero-new";
}
.news-list__cards__list-wrapper {
  margin-bottom: 3rem;
  display: grid;
  -webkit-column-gap: 3.2rem;
  -moz-column-gap: 3.2rem;
  column-gap: 3.2rem;
  row-gap: 6.4rem;
  grid-column: 1 / -1;
}
.news-list__cards__list-wrapper__card {
  grid-column: span 4;
  width: auto;
}
.news-list__cards,
.news-list__cards__list-wrapper {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media only screen and (max-width: 112.5em) {
  .news-list__cards .card__img,
  .news-list__cards__list-wrapper .card__img {
    grid-column: 1 / -1;
  }
  .news-list__cards .skeleton__image,
  .news-list__cards__list-wrapper .skeleton__image {
    width: 100%;
  }
}

@media only screen and (max-width: 1550px) {
  .news-list__cards,
  .news-list__cards__list-wrapper {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .news-list__cards .card__img,
  .news-list__cards__list-wrapper .card__img {
    width: 75%;
  }
  .news-list__cards .skeleton__image,
  .news-list__cards__list-wrapper .skeleton__image {
    width: 75%;
  }
}

@media only screen and (max-width: 1350px) {
  .news-list__cards .card__img,
  .news-list__cards__list-wrapper .card__img {
    width: 100%;
  }
  .news-list__cards .skeleton__image,
  .news-list__cards__list-wrapper .skeleton__image {
    width: 100%;
  }
}

@media only screen and (max-width: 75em) {
  .news-list__cards__list-wrapper__card {
    grid-column: span 4;
  }

  .news.grid-wrapper {
    padding: 0;
    width: 90%;
    margin: 0 auto;
    padding-top: 120px;
    margin-top: 176px;
  }

  .card__img {
    max-width: initial;
  }
  .enoturism-card__img {
    height: 33.6rem;
  }
  .skeleton__image {
    max-width: initial;
  }
  .load-more {
    margin-top: 9.2rem;
  }
  .news {
    margin-top: 16.7rem;
  }
  .news__title {
    font-size: 4.8rem;
    line-height: 4.8rem;
    grid-column: 1 / -1;
  }
  .news__subtitle {
    font-size: 4rem;
    line-height: 5.6rem;
    margin-top: 8rem;
    grid-column: 1 / -1;
  }
  .news__know-more {
    grid-column: 7 / -1;
    grid-row: 3;
  }
  .news__date {
    grid-column: 1 / span 6;
    grid-row: 3;
  }
  .news__image {
    grid-column: 1 / -1;
    height: 36rem;
    margin-top: 6.6rem;
  }
  .news-list {
    margin: 5.6rem auto 12rem;
    width: 90%;
    padding: 0;
  }
  .news-list__filters {
    display: none;
  }
  .news-list__cards {
    grid-column: 1 / -1;
  }
  .news-list__cards__menu {
    margin-bottom: 5.6rem;
    flex-direction: column;
    align-items: initial;
  }

  .news-list__cards__menu .calendar {
    margin-top: 3.2rem;
    margin-left: 0;
  }

  .news-list__cards__menu__wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .news-list__cards__menu__item {
    margin-right: 3.1rem;
  }
  .news-list__cards__list-wrapper {
    row-gap: 4.8rem;
  }
  .news-list__cards__list-wrapper__card .card__details {
    margin-bottom: 2.4rem;
  }
  .news-list__cards__list-wrapper__card .card__tag {
    font-size: 1.2rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .news-list__cards__list-wrapper__card .card__date {
    font-size: 1.4rem;
  }
  .news-list__cards__list-wrapper__card .card__title {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 1.6rem;
  }
  .news-list__cards__list-wrapper__card .card__description {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .news-list__cards__list-wrapper__card .link {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .news-list__cards .card__img,
  .news-list__cards__list-wrapper .card__img {
    width: 75%;
  }
  .news-list__cards .skeleton__image,
  .news-list__cards__list-wrapper .skeleton__image {
    width: 75%;
  }
  .news-list__cards .card__img,
  .news-list__cards .skeleton__image,
  .news-list__cards__list-wrapper .card__img,
  .news-list__cards__list-wrapper .skeleton__image {
    height: 18.6rem;
  }
}

@media only screen and (max-width: 62.3em) {
  .enoturism-card__title {
    font-size: 1.6rem;
  }
  .load-more {
    margin-top: 8rem;
  }
  .news {
    margin-top: 14.7rem;
  }
  .news__subtitle {
    margin-top: 4.8rem;
  }
  .news__know-more {
    grid-column: 1 / -1;
    grid-row: unset;
    justify-self: start;
    margin-top: 5rem;
  }
  .news__date {
    grid-column: 1 / -1;
    margin-top: 3.3rem;
  }
  .news__image {
    margin-top: 4.2rem;
  }
  .news-list__cards__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    margin-bottom: 4.8rem;
  }
  .news-list__cards__menu .calendar {
    margin-top: 3.2rem;
    margin-left: 0;
  }
  .news-list__cards__menu__wrapper {
    padding-bottom: 0;
  }
  .news-list__cards,
  .news-list__cards__list-wrapper {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
  .news-list__cards .card__img,
  .news-list__cards__list-wrapper .card__img {
    width: 100%;
  }
  .news-list__cards .skeleton__image,
  .news-list__cards__list-wrapper .skeleton__image {
    width: 100%;
  }
}

@media only screen and (max-width: 37.5em) {
  .card__description {
    height: initial;
    max-height: 9.7rem;
  }
  .card__img {
    max-width: 100%;
    max-height: 25rem;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .enoturism-card__title {
    font-size: 1.4rem;
  }
  .enoturism-card__img {
    height: 24.8rem;
  }
  .skeleton__image {
    max-width: 100%;
  }
  .load-more {
    margin-top: 4rem;
  }
  .load-more__text {
    text-align: center;
  }
  .load-more__bar-wrapper {
    width: 100%;
  }
  .load-more__button {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    min-width: unset;
  }
  .news {
    margin-top: 12.7rem;
  }
  .news__title {
    font-size: 4rem;
    line-height: 5.6rem;
  }
  .news__subtitle {
    font-size: 2.4rem;
    line-height: 4rem;
    margin-top: 4rem;
  }
  .news__know-more {
    margin-top: 4.2rem;
  }
  .news__date {
    margin-top: 5rem;
    font-size: 1.6rem;
  }
  .news__image {
    grid-column: 1 / -1;
    height: 28rem;
  }
  .news-list__cards {
    display: block;
  }
  .news-list__cards__menu {
    margin-bottom: 4rem;
  }
  .news-list__cards__menu .calendar {
    margin-top: 2.4rem;
  }
  .news-list__cards__list-wrapper {
    row-gap: 4rem;
  }
  .news-list__cards__list-wrapper__card .card__description {
    margin-bottom: 0;
  }
  .news-list__cards,
  .news-list__cards__list-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media only screen and (min-width: 75.0625em) {
  .news-list__cards__menu .calendar {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .news.grid-wrapper {
    margin-top: 80px;
  }
}
