@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root{
	--primary-font: 'DM Sans', sans-serif;
	--primary-color: #043D5B;
	--secondary-color: #f7931e;
}
*,*:before,*:after{
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: var(--primary-font);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	color: var(--primary-color);
}
.section-gaps{
	padding: 80px 0;
}
a{
	text-decoration: none;
}
p,ul,ol,blockquote{
	margin-top: 0;
}
h1,h2,h3,h4,h5,h6{
	font-family: var(--primary-font);
	line-height: 1.3;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 16px;
}
img,iframe,video,embed{
	max-width: 100%;
	height: auto;
	width: 100%;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
/* Site Header CSS */
.site-header{
	padding: 20px 0;
}
/* Logo */
.logo {
  font-size: 28px;
  font-weight: bold;
}

.logo-blue {
  color: var(--primary-color);
}

.logo-orange {
  color: var(--secondary-color);
}

.header-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-wrapper .logo {
    margin-right: auto;
}

ul.primary-menu {
    display: flex;
    align-items: center;
    margin: 0;
    list-style: none;
    padding: 0;
    gap: 40px;
}

ul.primary-menu li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}
ul.primary-menu li a:hover{
    color: var(--secondary-color);
}
.default-btn {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    background-color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 4px;
    transition: 0.3s;
}

.default-btn:hover {
    background-color: var(--primary-color);
}


/* Hero Wrapper CSS */
.hero-section{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #ffffff;
	position: relative;
	z-index: 0;
}
.hero-section:before{
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: #00000080;
}
.hero-wrapper{
	min-height: 80vh;
	display: flex;
	align-items: flex-end;
	padding: 80px 0;
}
.hero-content{
	font-size: 32px;
	font-weight: 700;
}
.hero-content *:last-child{
	margin: 0;
}
.hero-wrapper h1{
	font-size: 64px;
	line-height: 1.2;
}


/* article CSS */
.articles-section .articles-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.articles-section .articles-wrapper h2 {
    font-size: 32px;
    font-weight: 600;
}

.articles-section .featured-card img {
    width: 100%;
    border-radius: 8px;
    height: auto;
    aspect-ratio: 10/6.5;
    object-fit: cover;
    display: block;
}

.articles-section .featured-card .featured-content {
    margin-top: 20px;
}

.articles-section .featured-card .featured-content h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
}

.articles-section .featured-card .featured-content .meta {
    font-size: 18px;
    font-weight: 600;
}
.other-articles .article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.articles-section .other-articles .article-item a{
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 20px;
    font-size: 20px;
    font-weight: 600;
    align-items: center;
}

.articles-section .other-articles .article-item img {
    width: 100%;
    aspect-ratio: 11/7.5;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f6f7f0;
    font-size: 0;
}

.articles-section .other-articles .article-item p {padding: 10px 0;margin: 0;}

/* Footer Section */

.footer {
  background: #000;
  color: #bfbfbf;
  font-size: 16px;
  padding-block: 64px 32px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-col h4 {
  color: #9c9c9c;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
	margin-bottom: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
	align-items: flex-start;
  gap: 10px;
}

.footer-col li {
  margin: 0;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #ff9900;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer .copyright {
  font-size: 14px;
  color: #8a8a8a;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.footer-links a {
  color: #bfbfbf;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #ff9900;
}

.footer-links span {
  opacity: .4;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.footer-logo span {
  color: #ff9900;
}

@media (max-width: 900px) {
  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-block: 48px 28px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
}


/* Bento News Section */
.home-featured-news .featured-news-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}

.home-featured-news .featured-news-grid .featured {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding: 0 20px;
  position: relative;
}

.home-featured-news .featured-news-grid .featured:before,
.home-featured-news .featured-news-grid .featured:after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 0;
  width: 1px;
  background-color: #c8c8c8;
}

.home-featured-news .featured-news-grid .featured:before {
  left: 0;
}

.home-featured-news .featured-news-grid .featured:after {
  right: 0;
}

.home-featured-news .featured-news-grid .top-stories {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding-right: 20px;
  width: 288px;
}

.home-featured-news .featured-news-grid .our-rankings {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  padding-left: 20px;
  width: 288px;
}

.home-featured-news .featured-news-grid .headline {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 0;
}

.home-featured-news .our-rankings .item-wrapper + .item-wrapper {
  border-top: 0.5px solid #c8c8c8;
  margin-top: 15px;
  padding-top: 15px;
}

.home-featured-news .our-rankings a.item {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
	color: inherit;
}

.home-featured-news .our-rankings a.item img {
  width: 80px;
  height: 60px;
  margin-right: 15px;
  border-radius: 6px;
  object-fit: cover;
}

.home-featured-news .our-rankings a.item .title {
  font-size: 17px;
}

.home-featured-news .article-item {
  position: relative;
  max-width: 100%;
}

.home-featured-news .article-item .cover-article-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-featured-news .article-item figure {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-radius: 6px;
}

.home-featured-news .article-item figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.home-featured-news .featured-news-grid .trending{
	grid-column: 1 / -1;
	width: 100%;
}
.home-featured-news .featured-news-grid .trending .list{
    display: flex;
	width: 100%;
	gap: 20px;
}
.home-featured-news .featured-news-grid .trending .list .article-item{
    flex: 1 1 auto;
}
/* Tablet */
@media (max-width: 1279px) {
  .home-featured-news .featured-news-grid .headline {
    padding: 1.56vw 0;
  }

  .home-featured-news .featured-news-grid .featured {
    padding: 0 1.56vw;
  }

  .home-featured-news .featured-news-grid .top-stories,
  .home-featured-news .featured-news-grid .our-rankings {
    width: 22.51vw;
  }

  .home-featured-news .article-item {
    width: 22.51vw;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .home-featured-news .featured-news-grid {
    display: block;
  }

  .home-featured-news .featured-news-grid .headline {
    font-size: 17px;
    padding: 28px 0;
  }

  .home-featured-news .featured-news-grid .featured {
    padding: 0;
  }

  .home-featured-news .featured-news-grid .featured:before,
  .home-featured-news .featured-news-grid .featured:after {
    content: none;
  }

  .home-featured-news .featured-news-grid .top-stories,
  .home-featured-news .featured-news-grid .our-rankings {
    width: 100%;
    padding: 0;
  }

  .home-featured-news .featured-news-grid .top-stories .headline,
  .home-featured-news .featured-news-grid .our-rankings .headline {
    border-top: 4px solid #000;
    margin-top: 28px;
  }

  .home-featured-news .our-rankings .item-wrapper + .item-wrapper {
    margin-top: 10px;
    padding-top: 10px;
  }

  .home-featured-news .article-item {
    width: 100%;
  }

  .home-featured-news .article-item figure,
  .home-featured-news .article-item figure img {
    border-radius: 6px;
  }
}



/* Related Section */
.recent-section {}

.recent-section .section-title {
    font-size: 32px;
}

.recent-section  .recent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.recent-section .recent-grid .recent-card img {
    border-radius: 8px;
    display: block;
    margin-bottom: 20px;
}