.ax-section-news {
  width: 100%;
  display: block;
  box-sizing: border-box;
  background: linear-gradient(to bottom,
      rgba(31, 32, 30, 0.08) 0%,
      rgba(31, 32, 30, 0.08) 72.5%,
      #ffffff 72.5%,
      #ffffff 100%) !important;
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.ax-news-wrapper {
  width: 100%;
  margin: 0 auto !important;
  padding: 0 30px;
  box-sizing: border-box;
}

@keyframes axSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes axFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes axFadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes axFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.ax-news-main-title {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 50px 0;
  letter-spacing: 0.8px;
  will-change: transform, opacity;
}

.ax-section-news.ax-revealed .ax-news-main-title {
  animation: axSlideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ax-news-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25px;
  flex-shrink: 0;
}

.ax-date-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
}

.ax-date-line {
  width: 1px;
  height: 90px;
  background-color: #000000;
  margin-top: 14px;
}

.ax-news-featured {
  display: flex;
  gap: 16px;
  margin-bottom: 75px;
  align-items: start;
  will-change: transform, opacity;
}

.ax-section-news.ax-revealed .ax-news-featured {
  animation: axFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.ax-news-featured .ax-news-meta {
  height: 313.5px;
  justify-content: flex-start;
}

.ax-news-featured .ax-news-content {
  flex: 0 0 35%;
  max-width: 35%;
  gap: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 6rem;
  box-sizing: border-box;
}

.ax-news-featured .ax-news-title {
  font-size: 25px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.4px;
}

.ax-news-featured .ax-news-excerpt {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.7;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.2px;
}

.ax-news-featured .ax-readmore {
  margin: 0;
}

.ax-news-featured .ax-news-image {
  flex: 1;
  width: 100%;
  aspect-ratio: 100 / 55;
  height: auto;
  overflow: hidden;
}

.ax-news-featured .ax-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ax-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 40px;
}

.ax-news-item {
  display: flex;
  gap: 24px;
  align-items: stretch;
  will-change: transform, opacity;
}

.ax-section-news.ax-revealed .ax-news-item:nth-child(1) {
  animation: axFadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.ax-section-news.ax-revealed .ax-news-item:nth-child(2) {
  animation: axFadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.ax-news-item-inner {
  display: flex;
  gap: 28px;
  flex: 1;
  align-items: stretch;
}

.ax-news-item .ax-news-image {
  flex: 0 0 215px;
  width: 215px;
  aspect-ratio: 4 / 5;
  height: auto;
  overflow: hidden;
  align-self: flex-start;
}

.ax-news-item .ax-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ax-news-item .ax-news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 268px;
  gap: 30px;
}

.ax-news-item .ax-news-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 14px 0;
  letter-spacing: 0.3px;
  color: #000;
  text-transform: uppercase;
}

.ax-news-item .ax-news-excerpt {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.ax-readmore {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  letter-spacing: 0.5px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.ax-readmore:hover {
  color: #000;
  opacity: 0.65;
  transform: translateX(2px);
}

.ax-readmore::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 9px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.220226 7.69488C-0.0086232 7.84943 -0.0688625 8.16022 0.0856777 8.38907C0.240218 8.61792 0.551016 8.67816 0.779866 8.52362L0.500046 8.10925L0.220226 7.69488ZM10.9909 1.45146C11.0435 1.18037 10.8663 0.918002 10.5952 0.865458L6.1774 0.0091986C5.9063 -0.0433459 5.64394 0.133826 5.5914 0.404923C5.53885 0.676021 5.71602 0.938384 5.98712 0.990928L9.91404 1.75205L9.15292 5.67897C9.10038 5.95006 9.27755 6.21243 9.54865 6.26497C9.81974 6.31752 10.0821 6.14034 10.1347 5.86925L10.9909 1.45146ZM0.500046 8.10925L0.779866 8.52362L10.7799 1.77069L10.5 1.35632L10.2202 0.941955L0.220226 7.69488L0.500046 8.10925Z' fill='black'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.ax-readmore:hover::after {
  transform: translate(2px, -2px);
}

.ax-news-item .ax-readmore {
  font-size: 14px;
  margin-top: auto;
}

@media (min-width: 1500px) {
  .ax-section-news {
    background: linear-gradient(to bottom,
        rgba(31, 32, 30, 0.08) 0%,
        rgba(31, 32, 30, 0.08) 75%,
        #ffffff 75%,
        #ffffff 100%) !important;
  }
}

@media (max-width: 1024px) {

  /* .ax-section-news {
    background: linear-gradient(to bottom,
        rgba(31, 32, 30, 0.08) 0%,
        rgba(31, 32, 30, 0.08) 75%,
        #ffffff 75%,
        #ffffff 100%) !important;
  } */

  .ax-news-grid {
    column-gap: 30px;
  }

  .ax-news-featured .ax-news-content {
    flex: 0 0 310px;
    max-width: 310px;
  }

  .ax-news-featured .ax-news-image {
    aspect-ratio: auto;
    height: 330px;
  }

  .ax-news-item-inner {
    gap: 20px;
  }

  .ax-news-item .ax-news-image {
    flex: 0 0 170px;
    width: 170px;
    aspect-ratio: auto;
    height: 250px;
  }

  .ax-news-item .ax-news-content {
    height: 250px;
  }
}

@media (max-width: 849px) {
  .ax-section-news {
    padding-top: 55px !important;
    padding-bottom: 50px !important;
  }

  .ax-news-wrapper {
    padding: 0 20px;
  }

  .ax-news-main-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .ax-news-featured {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 45px;
    align-items: flex-start;
  }

  .ax-news-featured .ax-news-meta {
    height: auto;
    flex-direction: row;
    width: 100%;
    align-items: center;
  }

  .ax-news-featured .ax-news-content {
    flex: auto;
    max-width: 100%;
    height: auto;
    gap: 16px;
    justify-content: flex-start;
  }

  .ax-news-featured .ax-news-image {
    aspect-ratio: auto;
    height: 240px;
    width: 100%;
  }

  .ax-date-text {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 0;
    margin-right: 12px;
  }

  .ax-date-line {
    height: 1px;
    width: 50px;
    flex: 1;
    min-height: auto;
    margin-top: 0;
  }

  .ax-news-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ax-news-item {
    flex-direction: column;
    gap: 14px;
  }

  .ax-news-item-inner {
    flex-direction: column;
    gap: 16px;
  }

  .ax-news-item .ax-news-image {
    flex: auto;
    width: 100%;
    aspect-ratio: auto;
    height: 240px;
  }

  .ax-news-item .ax-news-meta {
    width: max-content;
  }

  .ax-news-item .ax-news-content {
    height: auto;
    min-height: auto !important;
    gap: 0;
  }
}

@media (max-width: 559px) {
  .ax-news-featured .ax-news-content {
    padding-right: 1rem;
  }
}