/* NEWS PAGE */

.news-page{
  background:#f4f4f4;
  overflow:hidden;
}

/* HERO */

.news-hero{
  position:relative;
  min-height:650px;
  color:#fff;
  overflow:hidden;
  background:#111;
}

.news-hero-bg{
  position:absolute;
  inset:0;
  background-image:url("https://www.malossi.com/wp-content/uploads/2026/05/HEADER.jpg-800x450.jpeg");
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  transition:background-image .35s ease, transform .6s ease;
  z-index:0;
}

.news-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.82) 0%,
      rgba(0,0,0,.58) 45%,
      rgba(0,0,0,.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.12) 0%,
      rgba(0,0,0,.82) 100%
    );
  z-index:1;
}

.news-hero::after{
  content:"";
  position:absolute;
  left:-4%;
  right:-4%;
  bottom:-115px;
  height:150px;
  background:#f4f4f4;
  transform:rotate(-3deg);
  transform-origin:left bottom;
  z-index:2;
}

.news-hero-content{
  position:relative;
  z-index:3;
  width:min(1180px, calc(100% - 88px));
  margin:0 auto;
  padding-top:86px;
}

.news-hero-content h1{
  max-width:820px;
  margin:0 0 22px;
  color:#fff;
  font-size:70px;
  line-height:.88;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:-2px;
}

.news-hero-content p{
  max-width:880px;
  margin:0 0 34px;
  color:#fff;
  font-size:28px;
  line-height:1.35;
  font-weight:500;
}

.news-hero-btn{
  min-width:150px;
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 28px;
  border-radius:4px;
  background:var(--red);
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.news-hero-btn span:last-child{
  font-size:22px;
  line-height:1;
}

/* PAGINATION */

.news-hero-pagination{
  position:absolute;
  left:50%;
  bottom:94px;
  z-index:4;
  width:min(1180px, calc(100% - 88px));
  transform:translateX(-50%);
  display:flex;
  align-items:flex-start;
  gap:34px;
}

.news-hero-bullet{
  width:270px;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  text-align:left;
  cursor:pointer;
}

.news-hero-bullet span{
  display:block;
  width:100%;
  height:4px;
  margin-bottom:14px;
  background:rgba(255,255,255,.85);
  border-radius:999px;
}

.news-hero-bullet.active span{
  background:var(--yellow);
}

.news-hero-bullet strong{
  display:block;
  color:#fff;
  font-size:14px;
  line-height:1.25;
  font-weight:900;
  text-transform:uppercase;
}

/* TABLET */

@media(max-width:1200px){
  .news-hero{
    min-height:610px;
  }

  .news-hero-content{
    width:calc(100% - 64px);
    padding-top:76px;
  }

  .news-hero-content h1{
    max-width:760px;
    font-size:58px;
  }

  .news-hero-content p{
    font-size:24px;
  }

  .news-hero-pagination{
    width:calc(100% - 64px);
    bottom:86px;
    gap:26px;
  }

  .news-hero-bullet{
    width:240px;
  }
}

/* MOBILE */

@media(max-width:700px){
  .news-hero{
    min-height:560px;
  }

  .news-hero-bg{
    background-position:center;
  }

  .news-hero-overlay{
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.58) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0,0,0,.10) 0%,
        rgba(0,0,0,.84) 100%
      );
  }

  .news-hero::after{
    bottom:-58px;
    height:92px;
    transform:rotate(-4deg);
  }

  .news-hero-content{
    width:calc(100% - 32px);
    padding-top:62px;
  }

  .news-hero-content h1{
    max-width:100%;
    font-size:40px;
    line-height:.9;
    letter-spacing:-1.2px;
  }

  .news-hero-content p{
    max-width:320px;
    margin-bottom:26px;
    font-size:19px;
    line-height:1.4;
  }

  .news-hero-btn{
    min-width:138px;
    min-height:46px;
    padding:0 20px;
    font-size:12px;
  }

  .news-hero-pagination{
    width:calc(100% - 32px);
    bottom:74px;
    gap:18px;
  }

  .news-hero-bullet{
    width:50%;
  }

  .news-hero-bullet strong{
    font-size:10px;
    line-height:1.25;
  }
}

/* FEATURED NEWS OVERLAP */

.news-container{
  width:min(1180px, calc(100% - 88px));
  margin:0 auto;
}

.news-featured-section{
  position:relative;
  z-index:5;
  margin-top:-78px;
  padding:0 0 78px;
  background:#f4f4f4;
}

.news-featured-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:30px;
}

.news-featured-card{
  min-width:0;
  background:transparent;
}

.news-featured-image{
  display:block;
  height:245px;
  border-radius:7px;
  overflow:hidden;
  background:#111;
  box-shadow:0 22px 52px rgba(0,0,0,.18);
}

.news-featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.news-featured-card:hover .news-featured-image img{
  transform:scale(1.06);
}

.news-featured-body{
  padding-top:18px;
}

.news-card-category{
  margin:0 0 10px;
  color:var(--red);
  font-size:12px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.news-featured-body h2{
  margin:0 0 14px;
  color:#101827;
  font-size:24px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.5px;
}

.news-card-date{
  margin:0;
  color:#101827;
  font-size:12px;
  line-height:1;
}

.news-featured-body h2 a:hover{
  color:var(--red);
}

/* FEATURED NEWS TABLET */

@media(max-width:1200px){
  .news-container{
    width:calc(100% - 64px);
  }

  .news-featured-section{
    margin-top:-70px;
    padding-bottom:70px;
  }

  .news-featured-grid{
    gap:24px;
  }

  .news-featured-image{
    height:210px;
  }

  .news-featured-body h2{
    font-size:21px;
  }
}

/* FEATURED NEWS MOBILE */

@media(max-width:700px){
  .news-container{
    width:calc(100% - 32px);
  }

  .news-featured-section{
    margin-top:-52px;
    padding-bottom:60px;
  }

  .news-featured-grid{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:0 16px 12px;
    margin:0 -16px;
  }

  .news-featured-grid::-webkit-scrollbar{
    height:4px;
  }

  .news-featured-grid::-webkit-scrollbar-thumb{
    background:var(--red);
    border-radius:999px;
  }

  .news-featured-card{
    flex:0 0 82%;
    scroll-snap-align:start;
  }

  .news-featured-image{
    height:205px;
  }

  .news-featured-body{
    padding-top:15px;
  }

  .news-featured-body h2{
    font-size:21px;
    line-height:1.08;
  }
}

/* RECENT NEWS */

.news-recent-section{
  padding:1px 0 86px;
  background:#f4f4f4;
}

.news-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:34px;
}

.news-section-title span{
  display:inline-flex;
  align-items:center;
  min-height:52px;
  padding:0 28px;
  background:#353b47;
  color:#fff;
  border-radius:4px;
  clip-path:polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-size:22px;
  line-height:1;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
}

.news-section-btn{
  min-width:145px;
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:1px solid var(--red);
  border-radius:4px;
  color:var(--red);
  background:#fff;
  font-size:12px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  transition:background .2s ease, color .2s ease;
}

.news-section-btn:hover{
  background:var(--red);
  color:#fff;
}

.news-recent-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:30px 34px;
}

.news-recent-card{
  min-width:0;
  display:grid;
  grid-template-columns:160px minmax(0, 1fr);
  gap:16px;
  align-items:start;
}

.news-recent-image{
  display:block;
  height:102px;
  border-radius:5px;
  overflow:hidden;
  background:#111;
}

.news-recent-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.news-recent-card:hover .news-recent-image img{
  transform:scale(1.06);
}

.news-recent-body{
  min-width:0;
}

.news-recent-body h3{
  margin:0 0 12px;
  color:#101827;
  font-size:18px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.3px;
}

.news-recent-body h3 a:hover{
  color:var(--red);
}

/* RECENT NEWS TABLET */

@media(max-width:1200px){
  .news-recent-section{
    padding-bottom:34px 0 78px;
  }

  .news-recent-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:28px 30px;
  }

  .news-recent-card{
    grid-template-columns:145px minmax(0, 1fr);
  }

  .news-recent-image{
    height:96px;
  }
}

/* RECENT NEWS MOBILE */

@media(max-width:700px){
  .news-recent-section{
    padding-bottom:30px 0 68px;
  }

  .news-section-head{
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
    margin-bottom:26px;
  }

  .news-section-title span{
    min-height:46px;
    padding:0 22px;
    font-size:18px;
  }

  .news-section-btn{
    min-width:138px;
    min-height:44px;
    padding:0 18px;
    font-size:11px;
  }

  .news-recent-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .news-recent-card{
    grid-template-columns:118px minmax(0, 1fr);
    gap:14px;
  }

  .news-recent-image{
    height:88px;
  }

  .news-recent-body h3{
    font-size:16px;
    line-height:1.1;
  }
}

/* CATEGORY SECTIONS */

.news-category-section{
  padding:0 0 90px;
  background:#f4f4f4;
}

.news-category-section + .news-category-section{
  padding-top:0;
}

.news-category-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:34px;
}

.news-category-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:32px;
}

.news-category-card{
  min-width:0;
}

.news-category-image{
  display:block;
  height:230px;
  border-radius:7px;
  overflow:hidden;
  background:#111;
}

.news-category-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.news-category-card:hover .news-category-image img{
  transform:scale(1.06);
}

.news-category-body{
  padding-top:16px;
}

.news-category-body h3{
  margin:0 0 14px;
  color:#101827;
  font-size:20px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.35px;
}

.news-category-body h3 a:hover{
  color:var(--red);
}

/* CATEGORY TABLET */

@media(max-width:1200px){
  .news-category-section{
    padding-bottom:78px;
  }

  .news-category-grid{
    gap:24px;
  }

  .news-category-image{
    height:200px;
  }

  .news-category-body h3{
    font-size:18px;
  }
}

/* CATEGORY MOBILE */

@media(max-width:700px){
  .news-category-section{
    padding-bottom:68px;
  }

  .news-category-section .news-container{
    display:flex;
    flex-direction:column;
  }

  .news-category-head{
    display:contents;
  }

  .news-category-head .news-section-title{
    order:1;
    margin-bottom:22px;
  }

  .news-category-grid{
    order:2;
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:0 16px 12px;
    margin:0 -16px;
  }

  .news-category-grid::-webkit-scrollbar{
    height:4px;
  }

  .news-category-grid::-webkit-scrollbar-thumb{
    background:var(--red);
    border-radius:999px;
  }

  .news-category-card{
    flex:0 0 82%;
    scroll-snap-align:start;
  }

  .news-category-image{
    height:190px;
    border-radius:6px;
  }

  .news-category-body{
    padding-top:14px;
  }

  .news-category-body h3{
    font-size:18px;
    line-height:1.12;
  }

  .news-category-head .news-section-btn{
    order:3;
    width:100%;
    margin-top:20px;
  }

  .news-category-section + .news-category-section{
    padding-top:0;
  }
}

/* NEWS DETAIL PAGE */

.news-detail-page{
  background:#f4f4f4;
  overflow:hidden;
}

.news-detail-container{
  width:min(1120px, calc(100% - 88px));
  margin:0 auto;
}

/* HERO */

.news-detail-hero{
  position:relative;
  min-height:390px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#101827;
}

.news-detail-hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.news-detail-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.38) 0%,
      rgba(0,0,0,.58) 52%,
      rgba(0,0,0,.86) 100%
    );
}

.news-detail-hero .news-detail-container{
  position:relative;
  z-index:2;
  padding:82px 0 92px;
}

.news-detail-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:#fff;
  font-size:12px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.news-detail-meta span:first-child{
  color:var(--red);
}

.news-detail-hero h1{
  max-width:1040px;
  margin:0;
  color:#fff;
  font-size:55px;
  line-height:.88;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:-2.4px;
}

.news-detail-hero p{
  max-width:720px;
  margin:22px 0 0;
  color:rgba(255,255,255,.86);
  font-size:22px;
  line-height:1.35;
  font-weight:500;
}

/* ARTICLE */

.news-detail-article-section{
  padding:0 0 96px;
}

.news-detail-article-wrap{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 820px) 58px;
  gap:42px;
  align-items:start;
}

.news-detail-article{
  min-width:0;
}

.news-detail-featured-image{
  position:relative;
  margin-top:-58px;
  border-radius:8px;
  overflow:hidden;
  background:#111;
  box-shadow:0 22px 55px rgba(0,0,0,.12);
}

.news-detail-featured-image img{
  width:100%;
  display:block;
  aspect-ratio:16 / 9;
  object-fit:cover;
}

.news-detail-content{
  max-width:680px;
  margin:42px auto 0;
}

.news-detail-content p{
  margin:0 0 22px;
  color:#394150;
  font-size:17px;
  line-height:1.75;
  font-weight:500;
}

.news-detail-content strong{
  color:#101827;
  font-weight:900;
}

.news-detail-content em{
  color:#222b38;
}

.news-detail-content a{
  color:var(--red);
  font-weight:800;
  text-decoration:none;
}

.news-detail-content a:hover{
  opacity:.75;
}

.news-detail-content h3{
  margin:34px 0 16px;
  color:#101827;
  font-size:23px;
  line-height:1.1;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:-.4px;
}

.news-detail-content ul{
  display:grid;
  gap:10px;
  margin:0 0 26px;
  padding-left:24px;
  color:#394150;
  font-size:16px;
  line-height:1.65;
}

.news-detail-content li::marker{
  color:var(--red);
}

.news-detail-content h2{
  margin:42px 0 18px;
  color:#101827;
  font-size:31px;
  line-height:1;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:-.8px;
}

.news-detail-content figure{
  margin:42px 0;
}

.news-detail-content figure img{
  width:100%;
  display:block;
  border-radius:7px;
  aspect-ratio:16 / 9;
  object-fit:cover;
}

/* NEWS ARTICLE SHORTCODE MEDIA */

.news-detail-content .event-article-media{
  margin:44px 0;
}

.news-detail-content .event-article-figure{
  min-width:0;
  margin:0;
}

.news-detail-content .event-article-figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius:8px;
  object-fit:cover;
  background:#e5e5e5;
}

.news-detail-content
.event-article-media-single img{
  aspect-ratio:16 / 9;
}

.news-detail-content
.event-article-figure figcaption{
  margin-top:10px;
  color:#69707c;
  font-size:12px;
  line-height:1.5;
  font-style:italic;
}

.news-detail-content .event-article-gallery{
  display:grid;
  gap:18px;
}

.news-detail-content
.event-article-gallery-standard{
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.news-detail-content
.event-article-gallery-landscape img{
  aspect-ratio:4 / 3;
}

.news-detail-content
.event-article-gallery-portrait img{
  aspect-ratio:3 / 4;
}

.news-detail-content .event-article-bento{
  grid-template-columns:
    repeat(6, minmax(0, 1fr));
}

.news-detail-content
.event-article-bento
.event-article-figure{
  grid-column:span 2;
}

.news-detail-content
.event-article-bento
.event-article-figure img{
  height:100%;
  min-height:220px;
  aspect-ratio:4 / 3;
}

.news-detail-content
.event-article-bento-3-2
.event-article-figure:nth-child(n+4){
  grid-column:span 3;
}

.news-detail-content
.event-article-bento-3-3-2
.event-article-figure:nth-child(n+7){
  grid-column:span 3;
}

/* SHARE BUTTONS */

.news-detail-share{
  position:sticky;
  top:130px;
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:64px;
}

.news-detail-share a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:5px;
  background:var(--red);
  color:#fff;
  font-size:16px;
  line-height:1;
  font-weight:900;
  text-decoration:none;
}

.news-detail-share a:hover{
  background:#101827;
}

.news-detail-share a svg{
  width:18px;
  height:18px;
  display:block;
}

/* NEWS DETAIL TABLET */

@media(max-width:1200px){
  .news-detail-container{
    width:calc(100% - 64px);
  }

  .news-detail-hero{
    min-height:350px;
  }

  .news-detail-hero .news-detail-container{
    padding:72px 0 92px;
  }

  .news-detail-hero h1{
    font-size:48px;
    letter-spacing:-1.8px;
  }

  .news-detail-hero p{
    max-width:640px;
    font-size:19px;
  }

  .news-detail-article-wrap{
    grid-template-columns:minmax(0, 1fr) 50px;
    gap:30px;
  }

  .news-detail-featured-image{
    margin-top:-48px;
  }

  .news-detail-content{
    max-width:660px;
    margin-top:38px;
  }

  .news-detail-content p{
    font-size:16px;
  }

  .news-detail-content h2{
    font-size:28px;
  }

  .news-detail-share{
    top:110px;
    padding-top:54px;
  }

  .news-detail-share a{
    width:36px;
    height:36px;
  }
}

/* NEWS DETAIL MOBILE */

@media(max-width:700px){
  .news-detail-container{
    width:calc(100% - 32px);
  }

  .news-detail-hero{
    min-height:310px;
  }

  .news-detail-hero .news-detail-container{
    padding:62px 0 82px;
  }

  .news-detail-meta{
    margin-bottom:10px;
    font-size:10px;
  }

  .news-detail-hero h1{
    font-size:38px;
    line-height:.9;
    letter-spacing:-1.1px;
  }

  .news-detail-hero p{
    margin-top:16px;
    font-size:15px;
    line-height:1.45;
  }

  .news-detail-article-section{
    padding-bottom:72px;
  }

  .news-detail-article-wrap{
    display:block;
  }

  .news-detail-featured-image{
    margin-top:-34px;
    border-radius:7px;
  }

  .news-detail-content{
    max-width:none;
    margin-top:30px;
  }

  .news-detail-content p{
    margin-bottom:18px;
    font-size:14px;
    line-height:1.7;
  }

  .news-detail-content h2{
    margin:34px 0 16px;
    font-size:23px;
    line-height:1.05;
    letter-spacing:-.4px;
  }

  .news-detail-content figure{
    margin:32px 0;
  }

  .news-detail-content figure img{
    border-radius:6px;
  }
  
  .news-detail-content
  .event-article-media{
    margin:32px 0;
  }

  .news-detail-content
  .event-article-gallery-standard{
    grid-template-columns:1fr;
  }

  .news-detail-content
  .event-article-bento{
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap:12px;
  }

  .news-detail-content
  .event-article-bento
  .event-article-figure,
  .news-detail-content
  .event-article-bento-3-2
  .event-article-figure:nth-child(n+4),
  .news-detail-content
  .event-article-bento-3-3-2
  .event-article-figure:nth-child(n+7){
    grid-column:span 1;
  }

  .news-detail-content
  .event-article-bento
  .event-article-figure:last-child:nth-child(odd){
    grid-column:1 / -1;
  }

  .news-detail-content
  .event-article-bento
  .event-article-figure img{
    min-height:150px;
  }

  .news-detail-content h3{
    margin:28px 0 14px;
    font-size:19px;
  }

  .news-detail-content ul{
    font-size:14px;
  }

  .news-detail-share{
    display:none;
  }
}

/* NEWS DETAIL SUGGESTED */

.news-detail-suggested{
  margin-top:88px;
  padding-top:54px;
  border-top:1px solid #d7dae0;
}

.news-detail-suggested-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:32px;
}

.news-detail-suggested-head h2{
  margin:0;
  color:#101827;
  font-size:34px;
  line-height:1;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:-.8px;
}

.news-detail-suggested-head a{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid #101827;
  border-radius:4px;
  color:#101827;
  font-size:12px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.news-detail-suggested-head a:hover{
  border-color:var(--red);
  background:var(--red);
  color:#fff;
}

.news-detail-suggested-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
}

.news-detail-suggested-card{
  min-width:0;
  background:#fff;
  border-radius:7px;
  overflow:hidden;
  box-shadow:0 16px 42px rgba(0,0,0,.08);
}

.news-detail-suggested-card a{
  display:block;
  color:inherit;
}

.news-detail-suggested-image{
  height:190px;
  overflow:hidden;
  background:#111;
}

.news-detail-suggested-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .3s ease;
}

.news-detail-suggested-card:hover .news-detail-suggested-image img{
  transform:scale(1.05);
}

.news-detail-suggested-body{
  padding:18px 18px 22px;
}

.news-detail-suggested-body p{
  margin:0 0 10px;
  color:var(--red);
  font-size:11px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.news-detail-suggested-body p span{
  margin:0 6px;
  color:#8b929c;
}

.news-detail-suggested-body h3{
  margin:0;
  color:#101827;
  font-size:20px;
  line-height:1.08;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:-.4px;
}

.news-detail-suggested-card:hover h3{
  color:var(--red);
}

/* NEWS DETAIL SUGGESTED TABLET */

@media(max-width:1200px){
  .news-detail-suggested{
    margin-top:76px;
    padding-top:46px;
  }

  .news-detail-suggested-head h2{
    font-size:30px;
  }

  .news-detail-suggested-grid{
    gap:22px;
  }

  .news-detail-suggested-image{
    height:150px;
  }

  .news-detail-suggested-body p{
    font-size:11px;
  }

  .news-detail-suggested-body h3{
    font-size:14px;
  }
}

/* NEWS DETAIL SUGGESTED MOBILE */

@media(max-width:700px){
  .news-detail-suggested-image{
    height:90px;
  }

  .news-detail-suggested-body p{
    font-size:9px;
  }

  .news-detail-suggested-body h3{
    font-size:11px;
  }
}

/* NEWS LIST PAGE */

.news-list-page{
  background:#f4f4f4;
  overflow:hidden;
}

.news-list-container{
  width:min(1180px, calc(100% - 88px));
  margin:0 auto;
}

/* NEWS LIST HERO */

.news-list-hero{
  position:relative;
  min-height:330px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#101827;
  color:#fff;
}

.news-list-hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.news-list-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.82) 0%,
      rgba(0,0,0,.55) 48%,
      rgba(0,0,0,.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.78) 100%
    );
}

.news-list-hero .news-list-container{
  position:relative;
  z-index:2;
  padding:78px 0;
}

.news-list-hero h1{
  max-width:900px;
  margin:0 0 16px;
  color:#fff;
  font-size:62px;
  line-height:.88;
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:-2px;
}

.news-list-hero p{
  max-width:720px;
  margin:0;
  color:#fff;
  font-size:22px;
  line-height:1.35;
  font-weight:500;
}

/* NEWS LIST GRID */

.news-list-section{
  padding:70px 0 96px;
  background:#f4f4f4;
}

.news-list-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:46px 32px;
}

.news-list-card{
  min-width:0;
}

.news-list-image{
  display:block;
  height:245px;
  border-radius:7px;
  overflow:hidden;
  background:#111;
}

.news-list-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .35s ease;
}

.news-list-card:hover .news-list-image img{
  transform:scale(1.06);
}

.news-list-body{
  padding-top:16px;
}

.news-list-body h2{
  margin:0 0 14px;
  color:#101827;
  font-size:21px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.35px;
}

.news-list-body h2 a:hover{
  color:var(--red);
}

/* NEWS LIST PAGINATION */

.news-list-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:64px;
}

.news-list-pagination button{
  min-width:42px;
  height:42px;
  padding:0 14px;
  border:1px solid #d4d7dd;
  border-radius:4px;
  background:#fff;
  color:#101827;
  font-size:12px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}

.news-list-pagination button:hover,
.news-list-pagination button.active{
  border-color:var(--red);
  background:var(--red);
  color:#fff;
}

.news-list-pagination button:disabled{
  opacity:.38;
  cursor:not-allowed;
}

.news-list-pagination button:disabled:hover{
  border-color:#d4d7dd;
  background:#fff;
  color:#101827;
}

/* NEWS LIST TABLET */

@media(max-width:1200px){
  .news-list-container{
    width:calc(100% - 64px);
  }

  .news-list-hero{
    min-height:310px;
  }

  .news-list-hero h1{
    font-size:54px;
    letter-spacing:-1.6px;
  }

  .news-list-hero p{
    font-size:20px;
  }

  .news-list-section{
    padding:62px 0 86px;
  }

  .news-list-grid{
    gap:40px 24px;
  }

  .news-list-image{
    height:210px;
  }

  .news-list-body h2{
    font-size:19px;
  }
}

/* NEWS LIST MOBILE */

@media(max-width:700px){
  .news-list-container{
    width:calc(100% - 32px);
  }

  .news-list-hero{
    min-height:270px;
  }

  .news-list-hero .news-list-container{
    padding:62px 0;
  }

  .news-list-hero h1{
    font-size:40px;
    line-height:.9;
    letter-spacing:-1.1px;
  }

  .news-list-hero p{
    max-width:320px;
    font-size:16px;
    line-height:1.45;
  }

  .news-list-section{
    padding:46px 0 72px;
  }

  .news-list-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .news-list-image{
    height:220px;
    border-radius:6px;
  }

  .news-list-body{
    padding-top:14px;
  }

  .news-list-body h2{
    font-size:19px;
    line-height:1.12;
  }

  .news-list-pagination{
    gap:8px;
    margin-top:48px;
  }

  .news-list-pagination button{
    min-width:38px;
    height:38px;
    padding:0 12px;
    font-size:11px;
  }
}