body,
header {
  background: #fff;
}
.deep-logo,
.deep-nav a,
.logo,
.moblogo,
.nav {
  font-weight: 700;
}
.account,
.deep-logo,
.deep-nav a,
.nav {
  text-transform: uppercase;
}
.article-center,
.tabs button {
  font-family: Coustard !important;
}
.excerpt,
.excerpt-center,
.excerpt-td {
  column-count: 1;
  column-gap: 48px;
}
.a-title:hover,
.article-center:hover {
  text-decoration-thickness: 1.2px;
  color: #e5764e !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Helvetica, Arial, sans-serif !important;
}
body {
  color: #111;
}
.full {
  margin: 10px 6rem 4rem;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.account,
.moblogo {
  display: flex;
  align-items: center;
}
.logo svg,
.moblogo svg {
  width: 35px;
  height: 35px;
  fill: #000;
}
.moblogo {
  gap: 0;
  font-size: 22px;
}
.deep-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 10px solid #000;
  padding: 15px 0;
  max-width: 100%;
  margin: auto;
}
.deep-logo {
  font-size: 28px;
}
.deep-nav {
  display: flex;
  gap: 25px;
}
.deep-nav a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  transition: color 0.3s;
}
.deep-nav a:hover {
  color: #d2691e;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 9rem 2%;
  padding: 10px 2rem;
  box-shadow: 0 2px 5px rgba(0.08, 0.05, 0.05, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 26px;
}
.nav-wrapper,
.s-page {
  flex-direction: column;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav {
  display: flex;
  gap: 25px;
  font-size: 13px;
}
.account,
.nav a {
  color: #000;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  position: relative;
  line-height: 1.4 !important;
  text-decoration: none;
}
.nav a {
  padding-bottom: 3px !important;
  text-transform: uppercase !important;
}
.nav a:hover {
  border-bottom: 1px dotted #000;
}
.account {
  gap: 10px;
  padding-bottom: 0 !important;
  text-transform: uppercase !important;
}
.mob-icons,
.search-form {
  align-items: center;
  display: flex;
}
.account i {
  font-size: 10px;
}
.search {
  position: relative;
  display: inline-block;
}
.search svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
  fill: #000;
}
.search-form {
  position: absolute;
  top: 35px;
  right: 0;
  background: #e6e6e6;
  border-bottom: 1px solid #000;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s;
  z-index: 10;
}
.menu-close,
.menu-trigger {
  transition: opacity 0.3s;
  cursor: pointer;
}
.search-form input {
  border: none;
  border-right: 1px solid #000;
  padding: 8px 10px;
  outline: 0;
  background: #e6e6e6;
  flex: 1;
  min-width: 200px;
}
.search-form::after,
.search-form::before {
  position: absolute;
  border-color: transparent transparent #000;
  content: "";
}
.search-form button {
  border: none;
  background: #e6e6e6;
  padding: 8px 15px;
  font-weight: 700;
  cursor: pointer;
}
.search-form::after {
  top: -12px;
  right: 5px;
  border-width: 0 9px 12px;
  border-style: solid;
  z-index: 1;
}
.search-form::before {
  top: -10px;
  right: 6px;
  border-width: 0 8px 10px;
  border-style: solid;
  z-index: 2;
}
.search.active .search-form {
  opacity: 1;
  transform: scaleY(1);
}
.mob-icons svg {
  width: 28px;
  height: 28px;
  fill: #000;
  cursor: pointer;
}
.mobsearch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.mobsearch svg {
  width: 22px;
  height: 22px;
  fill: #000;
  transition: fill 0.3s;
}
.s-page {
  display: none;
  inset: 0;
  align-items: center;
  justify-content: start;
}
.menu-trigger {
  width: 26px;
  height: 26px;
  margin: 20px;
  fill: #111;
}
.menu-close:hover,
.menu-trigger:hover,
.s-close-btn:hover {
  opacity: 0.6;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 80px 40px;
  z-index: 9999;
  animation: 0.4s fadeIn;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: #fff;
}
.menu-overlay h3 {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 30px;
}
.menu-item {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
}
.menu-item.active,
.menu-item:hover {
  color: #d25a26;
}
.arrow {
  float: right;
  font-size: 16px;
  opacity: 0.7;
}
.excerpt-center {
  margin: 15px 0 0;
  display: block;
  color: #707070;
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 300 !important;
}
.main {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}
.articlecenter {
  width: 50%;
  text-align: center;
}
.article,
.sec-first {
  width: 25%;
}
.articlecenter img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.articles {
  display: flex;
  gap: 20px;
}
.article img,
.explore-article img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.content {
  margin-top: 10px;
}
.category {
  padding: 1px 0;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: #f7c654;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.sec-first,
.sec-third {
  position: sticky;
  top: 0;
  align-self: flex-start;
  background: #fff;
  z-index: 10;
}
.explore-news-list,
.explore-news-list-c,
.third-popular-list {
  border-left: 1px solid #000;
}
.members {
  text-transform: uppercase;
}
.article h1 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}
.article.center h1 {
  font-size: 26px;
  color: #000;
  padding: 10px 0;
  text-align: center;
}
.author {
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #707070;
    margin-top: 10px;
}
.members,
.tabs button {
  text-transform: uppercase;
}
.author:hover {
  color: #f7c654;
}
.excerpt {
  margin: 20px 0 0;
  display: block;
  color: #707070;
  font-size: 14px !important;
  line-height: 1.4 !important;
  font-weight: 300 !important;
}
.article-center {
  font-size: 26px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  margin: 10px 0 0;
}
.sidebar {
  padding: 0 10px;
}
.ff{
  margin: 0px !important;
}
.aa{
  margin-top: 6px !important;
}
.bb{
  margin-top: 1rem;
}
.story-box,
footer {
  padding: 20px 0;
  text-align: center;
}
.tabs {
    gap: 10px;
    border-bottom: 2px solid #000;
    margin-bottom: 15px;
    cursor: pointer;
    width: 100%;
    display: inline-block;
}
.grey,
.grey-mob {
  color: #888;
}
.d-plus span,
.grey-mob,
.mob-header {
  display: none;
}
.tabs button {
  background: 0 0;
  border: none;
  font-weight: 700;
  font-size: 10px;
  cursor: pointer;
  padding: 5px 20px;
}
.tabs .active {
  background: #000;
  color: #fff;
}
.side-article {
  margin-bottom: 20px;
}
.side-article h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0;
}
.side-article p {
  font-size: 14px;
  color: #444;
}
.story-box {
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
  max-width: 900px;
  margin: 40px auto;
}
.third-left,
.third-left-d,
.third-right {
  padding-top: 5px;
  border-top: 1px solid #000;
}
.story-line {
  font-size: 14px;
  line-height: 1.5;
}
.members {
  color: #d9776d;
  font-weight: 700;
  font-style: normal !important;
  font-size: 10px;
  letter-spacing: 1px;
  margin: 0 10px 0 0;
}
.excerpt-td,
.story-link,
.story-title {
  line-height: 1.4 !important;
  font-style: italic !important;
}
.story-title:hover {
  text-decoration: underline;
  color: #ffd83b;
  text-decoration-color: #000;
  text-underline-offset: 2px;
}
.excerpt-td {
  display: block;
  color: #707070;
  margin: 3rem 0 8px;
  font-size: 12px !important;
  font-weight: 500 !important;
}
.story-link,
.story-title {
  font-size: 14px !important;
  font-weight: 700 !important;
}
.members,
.story-title {
  display: inline;
  vertical-align: inherit;
}
.story-desc {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 10px;
}
.sec-container {
  display: flex;
  gap: 30px;
  max-width: 100%;
  margin: auto;
  padding-bottom: 50px;
  align-items: flex-start;
}
.a-sec-item img,
.a-sec-item-c img,
.a-sec-item1 img,
.cat-popular img,
.sec-first img {
  width: 100%;
  margin-bottom: 10px;
}
.sec-category {
  font-weight: 700;
  font-size: 14px;
  color: #e76f51;
  text-transform: uppercase;
  border-bottom: 2px solid #e76f51;
  display: inline-block;
  margin-bottom: 10px;
}
.sec-author,
.sec-members,
.third-author,
.third-category,
.third-members {
  font-size: 12px;
  text-transform: uppercase;
}
.sec-first h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.sec-first p {
  font-size: 15px;
  color: #444;
}
.sec-second {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sec-article {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.sec-article:last-child {
  border: none;
}
.sec-members {
  color: #d2691e;
  font-weight: 700;
}
.sec-article h3 {
  font-size: 18px;
  margin: 5px 0;
}
.third-left h2,
.third-left-d h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.explore-article p,
.sec-article p,
.third-story p {
  font-size: 14px;
  color: #555;
}
.sec-author {
  color: #666;
  margin-top: 5px;
}
.sec-third {
  flex: 2;
  text-align: center;
}
.sec-third img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 10px;
}
.sec-third .sec-category,
.sec-third h2 {
  margin-bottom: 8px;
}
.sec-third h2 {
  font-size: 24px;
  font-weight: 700;
}
.sec-third p {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
.third-main {
  display: flex;
  gap: 30px;
  width: 100%;
  padding-bottom: 40px;
}
.third-left {
  width: 30%;
}
.third-left h2 {
  font-size: 28px;
  font-weight: 700;
  border-top: 10px solid #000;
}
.third-left-d {
  width: 100%;
  padding-bottom: 25px;
}
.third-left-d h2 {
  font-size: 12px !important;
  font-weight: 700;
}
.th-title {
  border-bottom: 1px solid #777;
  padding: 20px 30px;
}
.a-article:last-child,
.aa-article:last-child,
.au-article:last-child,
.explore-news-list div:last-child,
.explore-news-list-c div:last-child,
.th-title:last-child,
.third-popular-item:last-child {
  border-bottom: none;
}
.third-popular-item {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
.third-members {
  color: #d2691e;
  font-weight: 700;
  margin-right: 5px;
  margin-left: 25px;
}
.third-popular-item h3 {
  font-size: 16px;
  font-weight: 400;
  padding-left: 25px;
}
.au-article-content,
.explore-article,
.third-right,
.third-story {
  flex: 1;
}
.third-right h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.third-stories {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.third-story img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  margin-bottom: 10px;
}
.a-news-section img,
.explore-big-article img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.third-category {
  color: #000;
  font-weight: 700;
  border-bottom: 2px solid #e76f51;
  display: inline-block;
  margin-bottom: 5px;
}
.a-article,
.a-article-first {
  border-bottom: 1px solid #ddd;
}
.third-story h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0;
}
.third-author {
  color: #666;
  font-weight: 700;
  margin-top: 5px;
}
.a-category,
.a-sec-top h1 .a-members,
h1 .a-members {
  font-size: 14px;
  font-weight: 700;
}
.deep-container,
.explore-container {
  border-top: 1px solid #000;
  padding-top: 5px;
}
.a-container {
  margin: 0;
  display: flex;
  gap: 30px;
  width: 100%;
}
.a-first-section {
  display: flex;
  gap: 20px;
  width: 64%;
}
.a-news-section {
  max-width: 55%;
  margin: 0 auto;
  text-align: center;
}
.a-news-section img {
  margin-bottom: 10px;
}
.a-category {
  display: inline-block;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}
.a-category::after,
.a-sec-top .a-category::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #f08c1a;
  margin: 6px auto 0;
}
.a-author-date,
.a-sec-top .a-author-date {
  font-size: 12px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}
h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin: 15px 0;
}
h1 .a-members {
  color: #d9534f;
  text-transform: uppercase;
  margin-right: 8px;
}
.a-author-date {
  color: #666;
}
.article-title,
.article-titlez {
  padding-top: 10px;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  font-family: Coustard !important;
}
.main-titles,
.tech p {
  text-transform: uppercase !important;
}
.explore-big-article,
.leave-btn-wrapper {
  text-align: center;
}
.article-title:hover,
.article-titlez:hover {
  color: #e5764e !important;
  text-decoration-color: #000 !important;
  text-decoration: underline;
}
.a-title:hover,
.article-center:hover,
.pre-title:hover,
.three:hover {
  text-decoration: underline;
  text-decoration-color: #000;
}
.article-titlez {
  height: 60px;
}
.article-center:hover {
  text-underline-offset: 10px;
}
.a-title:hover {
  text-underline-offset: 5px;
}
.a-right-content,
.leave-box {
  max-width: 600px;
  margin: 0 auto;
}
.a-right-content-c {
  max-width: 600px;
  margin: 0 auto;
  position: sticky;
  top: -100px;
  align-self: start;
}
.a-article-first {
  padding-bottom: 15px;
}
.a-article {
  padding: 15px 0;
}
.a-article h2,
.aa-article h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 5px 0 10px;
  display: inline;
}
.aa-article,
.aa-article-first {
  padding-bottom: 10px;
}
.a-article .a-members,
.aa-article .a-members {
  font-size: 12px;
  font-weight: 700;
  color: #d9534f;
  text-transform: uppercase;
  margin-right: 8px;
}
.a-article p,
.a-article-first p,
.aa-article p,
.aa-article-first p {
    font-size: 15px;
    color: #707070;
    line-height: 1.2;
    margin: 5px 0 20px;
}
.a-title {
    font-size: 17px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}
.a-article .a-author,
.aa-article .a-author {
  font-size: 12px;
  color: #f08c1a;
  text-transform: uppercase;
  font-weight: 700;
}
.a-second-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
.a-sec-top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.a-sec-top h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin: 10px 0 15px;
}
.a-sec-top h1 .a-members {
  color: #d9534f;
  text-transform: uppercase;
  margin-right: 6px;
}
.a-sec-top .a-author-date {
  color: #999;
}
.a-sec-top p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.a-sec-top .a-category,
.dot- li {
  margin-bottom: 10px;
}
.a-sec-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.a-sec-item {
  flex: 1;
  text-align: center;
}
.a-sec-item-c {
  margin-bottom: 20px;
  flex: 1;
}
.Literata,
.Literata-c,
.Literata1,
.cat-spo-p {
  font-size: 14px !important;
  line-height: 1.4 !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: -0.2px !important;
  margin-top: 10px;
}
.a-sec-item span.a-category,
.a-sec-item1 span.a-category {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 5px;
  position: relative;
}
.a-sec-item span.a-category::after,
.a-sec-item1 span.a-category::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #f08c1a;
  margin: 6px auto 0;
}
.a-sec-item h3,
.a-sec-item1 h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.a-sec-item h3 .a-members,
.a-sec-item1 h3 .a-members {
  font-size: 12px;
  font-weight: 700;
  color: #d9534f;
  text-transform: uppercase;
  margin-right: 5px;
}
.a-sec-item1 {
  flex: 1;
  padding-bottom: 30px;
}
.a-divider {
  width: 40%;
  height: 1px;
  background: #ccc;
  margin: 10px auto;
}
.explore-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 10px solid #000;
}
.main-titles {
  margin: 0;
  padding-top: 10px;
  font-size: 24px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
}
.au-stat,
.cat-sponsor-title,
.cat-sponsor-title-d,
.d-title,
.tech h2,
.tech p {
  line-height: 1.2 !important;
}
.explore-content-wrapper {
  display: flex;
  gap: 50px;
  margin: 30px 0;
}
.explore-left-section {
  width: 35%;
}
.explore-right-section {
  width: 65%;
}
.explore-category {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.explore-members {
  color: #888;
  font-size: 12px;
  margin-right: 5px;
  text-transform: uppercase;
}
.explore-author-date {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}
.explore-articles {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.explore-article h3 {
  font-size: 16px;
  font-weight: 900;
  margin: 8px 0;
}
.explore-news-list div,
.explore-news-list-c div {
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid #b5b0b0;
  font-weight: 300;
  letter-spacing: 0.2px;
}
.explore-article .explore-author {
  font-size: 12px;
  margin-top: 6px;
  display: block;
}
.explore-news-list {
  margin-top: 40px;
}
.explore-news-list div {
  font-size: 18px;
}
.explore-news-list-c div {
  font-size: 20px;
}
.explore-news-list-c {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 630px;
}
.members:hover {
  color: #000;
}
footer {
  border-top: 1px solid #000;
  margin-top: 50px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  font-size: 30px !important;
  font-weight: 700 !important;
}
.footer-logo svg {
  width: 40px;
  height: auto;
}
.footer-nav {
  margin: 15px 0;
}
.footer-nav a {
  margin: 0 15px;
  font-size: 20px;
  text-decoration: none;
  color: #000;
}
.footer-nav a.active {
  color: #eab308;
}
.footer-copy {
  font-size: 14px;
  color: #444;
  margin-top: 12px;
}
.au-author-date,
.au-category,
.au-members {
  font-size: 12px;
  text-transform: uppercase;
}
.footer-copy a {
  color: #d97771;
  text-decoration: none;
}
.three:hover {
  color: #d97771;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}
.tech {
  text-align: center;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid #ccc;
}
.tech p {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
}
.tech h2 {
  font-size: 35px !important;
  font-weight: 300 !important;
}
.au-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  margin-top: 30px;
}
.au-author img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
.au-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.au-article {
  display: flex;
  gap: 20px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 20px;
  align-items: flex-start;
}
.au-article img {
  width: 45%;
  flex-shrink: 0;
  object-fit: cover;
}
.au-category {
  font-weight: 700;
  margin-bottom: 5px;
}
.au-members {
  color: #c33;
  font-weight: 700;
  margin-right: 5px;
}
.au-article-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.au-article-content h2.au-highlight {
  color: #c63;
  border-bottom: 2px solid #c63;
  display: inline-block;
  padding-bottom: 2px;
}
.au-article-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}
.au-author-date {
  font-weight: 700;
  color: #666;
}
.au-sidebar {
  font-size: 14px;
  position: sticky;
  top: 0;
  align-self: flex-start;
}
.au-sponsor {
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #555;
}
.au-stat,
.d-btn span {
  text-transform: uppercase !important;
}
.au-ad {
  width: 100%;
  margin-bottom: 30px;
}
.au-social {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.au-social a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
}
.au-stat {
  border-top: 1px dotted #999;
  color: #000;
  background-color: rgba(229, 118, 78, 0);
  padding: 10px 0 0;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
}
.cat-main {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr 1.5fr 1.5fr;
  gap: 20px;
  margin-top: 30px;
}
.cat-article,
.third-story-c {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.cat-article img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.cat-article h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cat-article p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
[class^="cat-label"] {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 6px;
  position: relative;
  padding-bottom: 3px;
  color: #000;
}
.cat-popular,
.cat-sponsor {
  position: sticky;
  top: 20px;
  align-self: start;
}
[class^="cat-label"]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: #f36;
}
.cat-sponsor {
  padding-left: 15px;
}
.cat-sponsor img {
  width: 100%;
  margin-bottom: 10px;
  padding-left: 20px;
  border-left: 1px solid #626262;
}
.cat-sponsor-d img {
  width: 100%;
  padding-left: 20px;
}
.cat-sponsor-d {
  border-left: 1px solid #626262;
  margin-bottom: 30px;
}
.cat-sponsor-title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
  font-size: 8px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
.cat-popular {
  border-top: 8px solid #e5764e;
  padding-top: 10px;
}
.au-author,
.de-right {
  align-self: flex-start;
}
.cat-popular-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #e5764e;
  margin-bottom: 10px;
}
.third-story-c img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}
.third-story-c:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.scrollup-btn {
  position: fixed;
  bottom: -60px;
  right: 20px;
  background-color: #aeaeae38;
  border: none;
  padding: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease-in-out;
  z-index: 1000;
  opacity: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.scrollup-btn i {
  color: #fff;
  font-size: 22px;
}
.scrollup-btn.show {
  bottom: 20px;
  opacity: 1;
}
.d-article-header {
  max-width: 100%;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #888;
}
.d-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.d-title {
  max-width: 700px;
  border-right: 1px solid #ddd;
  font-size: 35px !important;
  font-weight: 300 !important;
  margin: 0;
}
.d-article-author span,
.d-btn,
.d-btn span,
.det-article-text strong {
  font-weight: 700;
}
.d-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.d-btn {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 2px;
  background: #fff;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: background 0.3s;
}
.d-btn i {
  margin-right: 6px;
  font-size: 16px;
}
.d-btn span {
  border-left: 1px solid #ddd;
  padding-left: 6px;
  font-size: 10px !important;
  letter-spacing: 0.5px !important;
}
.d-social-icons a,
.de-tag {
  border: 1px solid #000;
  text-transform: uppercase;
  background: #fff;
  text-decoration: none;
}
.d-facebook span {
  color: #516eab;
}
.d-twitter span {
  color: #1da1f2;
}
.d-pinterest span {
  color: #bd081c;
}
.d-plus {
  padding: 6px 10px;
  justify-content: center;
}
.d-btn:hover {
  background: #f4f4f4;
}
.d-social-icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 0;
}
.d-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 12px;
  color: #000;
  font-family: Arial, sans-serif;
  font-weight: 700;
}
.d-social-icons a:hover {
  background: #f9f9f9;
}
.d-social-icons i,
.l-article {
  font-size: 14px;
}
.d-article-author {
  font-size: 14px;
  margin-top: 15px;
}
.de-tag,
.de-tags-label {
  font-size: 13px;
  color: #000;
}
.de-tags-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.de-tags-label {
  font-weight: 500;
  letter-spacing: 1px;
}
.de-tag {
  display: inline-block;
  padding: 4px 10px;
  letter-spacing: 1px;
  transition: background 0.3s, color 0.3s;
}
.de-popular-title,
.de-sponsor-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.de-members,
.de-popular-list a:hover {
  color: #c0392b;
}
.de-tag:hover {
  border: 1px solid #d9534f;
  color: #d9534f;
}
.de-container {
  max-width: 100%;
  margin: 60px auto;
  display: flex;
  gap: 20px;
}
.cat-sponsor-title-d,
.de-popular-title,
.de-sponsor-title {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.de-left {
  flex: 2;
}
.de-left img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.de-left p {
  font-size: 17px;
  margin-top: 15px;
}
.de-right {
  flex: 1;
  padding-left: 20px;
  position: sticky;
  top: -10rem;
}
.de-sponsor-title {
  display: block;
  text-align: center;
}
.l-article p,
.pre-left {
  text-align: left;
}
.de-ad img {
  width: 100%;
  margin-bottom: 20px;
}
.de-popular-title {
  border-top: 1px solid #000;
  padding-top: 10px;
}
.de-popular-list {
  list-style: none;
}
.de-popular-list li {
  border-top: 1px solid #ddd;
  padding: 12px 0;
  font-size: 16px;
}
.de-members {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 6px;
}
.de-popular-list a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}
.cat-sponsor-title-d {
  text-align: left;
  margin-left: 20px;
  color: #000;
  font-size: 10px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
.det-article-container {
  max-width: 60%;
  margin: 0 20px 0 0;
}
.actions-container,
.more-section {
  max-width: 100%;
}
.det-article-image {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  object-fit: cover;
}
.det-article-text {
  color: #000;
  margin-left: 9rem;
  font-size: 17px !important;
  line-height: 1.6 !important;
}
.actions-image {
  width: 100%;
  display: block;
  padding-left: 12%;
  margin-bottom: 20px;
}
.actions-title {
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: Coustard !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  margin-left: 9rem;
  font-weight: 900 !important;
}
.actions-text {
  margin-bottom: 18px;
  margin-left: 9rem;
  font-size: 17px !important;
  line-height: 1.6 !important;
}
.dot- {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-left: 11rem;
  margin-bottom: 18px;
  list-style-type: disc;
}
.leave-box h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
input::placeholder,
textarea::placeholder {
  color: #000;
}
.leave-form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.leave-form-group input,
.leave-full-width input {
  width: 100%;
  padding: 10px;
  border: 1px solid #aaa;
  font-size: 14px;
}
.leave-full-width {
  width: 100%;
  margin-bottom: 15px;
}
.leave-checkbox {
  margin-bottom: 15px;
  font-size: 14px;
}
.leave-textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  border: 1px solid #aaa;
  font-size: 14px;
  margin-bottom: 15px;
}
.leave-btn {
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: capitalize;
}
.leave-btn:hover {
  color: #fff;
  background: #d9534f;
}
.pre-container {
  display: flex;
  gap: 60px;
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 5px;
}
.more-section {
  margin: 0;
}
.more-title {
  border-top: 10px solid #000;
  margin: 5px 0;
  padding-top: 12px;
  font-size: 26px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2px !important;
  text-transform: uppercase;
}
.more-author,
.more-members,
.more-meta {
  font-weight: 700;
  text-transform: uppercase;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ad-banner,
.l-read-now {
  display: inline-block;
}
.ad-banner img,
.more-card img {
  width: 100%;
  height: auto;
  display: block;
}
.more-meta {
  font-size: 12px;
  color: #000;
  margin: 8px 0 4px;
}
.more-members {
  font-size: 11px;
  color: #d35400;
  margin-right: 5px;
}
.more-title-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.l-article p,
.pre-title {
  line-height: 1.4 !important;
}
.more-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}
.more-author {
  font-size: 13px;
}
.ad-label,
.pre-label {
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
.pre-article {
  width: 50%;
}
.pre-label {
  color: #e5764e;
  font-size: 10px !important;
  font-weight: 500 !important;
}
.pre-title {
  font-size: 16px !important;
  font-weight: 700 !important;
}
.pre-title:hover {
  color: #e5764e;
}
.pre-right {
  text-align: right;
}
.ad-section {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}
.ad-label {
  color: #000;
  font-size: 10px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ad-btn,
.l-nav {
  font-size: 14px;
}
.l-article h2,
.l-members,
.l-nav {
  font-weight: 700;
}
.ad-btn,
.l-members,
.l-nav a,
.l-read-now {
  text-transform: uppercase;
}
.ad-banner {
  position: relative;
  width: 100%;
  max-width: 880px;
  overflow: hidden;
}
.ad-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #7b61ff;
  color: #fff;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}
.ad-btn:hover {
  background: #5e4edc;
}
.l-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}
.l-nav a {
  text-decoration: none;
  color: #000;
}
.l-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
}
.l-article h2 {
  font-size: 16px;
  margin: 6px 0;
}
.l-members {
  font-size: 12px;
  color: #c33;
  display: block;
  margin-bottom: 4px;
}
.l-article p {
  column-count: 2;
  display: block;
  color: #707070;
  margin: 5px 0 0;
  column-count: 2;
  column-gap: 19px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}
.l-categories a,
.l-read-now {
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.l-last {
  border-top: 2px solid #000;
  padding-top: 10px;
}
.l-top-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}
.l-read-now {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 0;
  font-size: 10px !important;
  letter-spacing: 1px !important;
}
.l-categories {
  display: flex;
  gap: 0;
  margin-right: 0;
}
.l-categories a {
  display: inline-block;
  color: #888;
  text-decoration: none;
  padding: 3px 15px;
  font-size: 11px !important;
}
.l-categories a:hover {
  color: #000;
  border: 1px solid #000;
}
.au-author {
  font-size: 15px;
  color: #222;
  position: sticky;
  top: 20px;
}
.au-author p {
  font-size: 16px !important;
  line-height: 1.2 !important;
}
.s-page {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding-top: 120px;
  z-index: 9999;
  animation: 0.6s s-fadeIn;
}
.s-close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
.s-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.s-line {
  width: 80%;
  max-width: 320px;
  height: 1px;
  background-color: #fff;
  margin-bottom: 40px;
}
.s-input {
  width: 80%;
  max-width: 300px;
  background: 0 0;
  border: none;
  border-bottom: 1px solid #555;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 8px 0;
  outline: 0;
  transition: border-color 0.3s;
}
.s-input:focus {
  border-color: #fff;
}
.s-typed-text {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
  height: 20px;
}
.scroll-top {
  width: 15px !important;
  height: 15px;
}
.inherit {
  color: inherit;
  text-decoration: none;
}
@keyframes s-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .articles,
  .sec-container {
    flex-direction: column;
    gap: 20px;
  }
  .au-stat,
  .cat-popular,
  .d-btn span,
  .d-buttons,
  .scrollup-btn,
  header {
    display: none;
  }
  .article-title,
  .article-titlez {
    font-weight: 700;
    padding-top: 10px;
  }
  .articles,
  .main,
  .mob-header,
  .mob-icons,
  .mob-logo,
  .sec-second {
    display: flex;
  }
  .explore-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .full {
    margin: 10px;
  }
  .article,
  .explore-left-section,
  .explore-news-list-c,
  .explore-right-section,
  .pre-article,
  .tabs,
  .third-left {
    width: 100%;
  }
  .article img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .articlecenter {
    width: 100%;
    text-align: center;
    order: -1;
  }
  .sec-container {
    display: flex;
    padding-bottom: 0;
  }
  .main,
  .third-main {
    flex-direction: column;
  }
  .sec-first {
    width: 100%;
    position: unset;
  }
  .sec-second {
    width: 100%;
  }
  .sidebar {
    padding: 0;
  }
  .main-titles {
    margin: 15px 0;
    padding-top: 10px;
    font-size: 20px !important;
  }
  .third-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0;
  }
  .article-title {
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-family: Coustard !important;
  }
  .article-titlez {
    text-align: left;
    line-height: 0;
    font-family: none !important;
  }
  .excerpt-td {
    font-size: 10px !important;
  }
  .main {
    grid-template-columns: 3fr 1fr;
    gap: 40px;
  }
  header {
    position: static;
  }
  .mob-header {
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background: #fff;
    margin: 0 20px;
  }
  .mob-logo {
    font-size: 20px;
    font-weight: 700;
    align-items: center;
    gap: 5px;
  }
  .mob-logo img {
    width: 25px;
    height: 25px;
  }
  .mob-icons {
    align-items: center;
    font-size: 18px;
    cursor: pointer;
  }
  .grey-mob {
    display: inline;
  }
  .third-main {
    display: flex;
    gap: 30px;
    width: 100%;
  }
  .a-container,
  .a-first-section {
    flex-direction: column;
    width: 100%;
  }
  .deep-nav {
    display: grid;
    gap: 12px 9px;
    display: grid;
    grid-template-columns: 1fr 0fr;
  }
  .a-container {
    margin: 0;
    display: flex;
    gap: 30px;
  }
  .a-first-section {
    display: flex;
    gap: 20px;
  }
  .a-news-section {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .deep-header,
  .pre-left,
  .pre-right {
    text-align: left;
  }
  .a-second-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
  }
  .a-sec-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
  }
  .explore-header-bar {
    display: flex;
    justify-content: normal;
    align-items: inherit;
    padding-top: 15px;
    border-top: 10px solid #000;
  }
  .explore-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 30px 0;
  }
  .category {
    font-size: 16px;
  }
  .article-center {
    font-size: 22px !important;
  }
  .a-title,
  .excerpt-center {
    font-size: 14px !important;
  }
  .story-link,
  .story-title {
    font-size: 12px !important;
  }
  .story-line {
    font-size: 17px;
    line-height: 1.2;
  }
  .story-desc {
    font-size: 14px;
  }
  .sec-third {
    order: -1;
    position: static;
  }
  .sec-first {
    order: 0;
  }
  .sec-second {
    order: 1;
  }
  .Literata1 {
    font-size: 20px !important;
  }
  .aa-article-first p {
    font-size: 13px;
    color: #707070;
    line-height: 1.2;
    margin: 5px 0;
  }
  .aa-article p {
    font-size: 13px;
  }
  .th-title {
    border-bottom: 1px solid #777;
    padding: 15px 20px;
    font-size: 14px;
  }
  .author {
    font-size: 8px !important;
  }
  .deep-nav a {
    text-decoration: none;
    color: #000;
    font-size: 10px;
  }
  .deep-header {
    gap: 20px;
    justify-content: normal;
    margin: auto;
  }
  .cat-main,
  .d-header-top {
    flex-direction: column;
    display: flex;
  }
  .explore-news-list div,
  .explore-news-list-c div {
    padding: 12px 0 12px 20px;
    border-bottom: 1px solid #b5b0b0;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.2px;
  }
  .footer-logo {
    font-size: 25px !important;
    font-weight: 700 !important;
  }
  .footer-logo svg {
    width: 35px;
    height: auto;
  }
  footer {
    text-align: center;
    padding: 20px 0;
  }
  .footer-nav a {
    margin: 0 10px;
    font-size: 15px;
  }
  .footer-copy {
    font-size: 12px;
    color: #444;
  }
  .cat-main {
    gap: 20px;
    margin-top: 30px;
  }
  .a-right-content-c {
    max-width: 100%;
    margin: 0 auto;
    position: unset;
    order: 2;
  }
  .cat-sponsor-title {
    text-transform: uppercase;
    text-align: left;
  }
  .cat-sponsor {
    border-left: 1px solid #ddd;
    padding-left: 0;
    position: unset;
    order: -1;
  }
  .article,
  .articlecenter {
    display: flex;
    flex-direction: column-reverse;
  }
  .articlecenter img {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .d-article-header {
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-top: 0 solid #000;
    border-bottom: 1px solid #888;
  }
  .d-title {
    max-width: 100%;
    border-right: 0px solid #ddd;
    font-size: 25px !important;
  }
  .de-container {
    max-width: 100%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .det-article-container {
    max-width: 100%;
    margin: 0;
  }
  .det-article-text {
    color: #000;
    margin-left: 0;
    font-size: 15px !important;
  }
  .actions-image {
    width: 100%;
    display: block;
    padding-left: 0;
    margin-bottom: 10px;
  }
  .actions-title {
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Coustard !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    margin-left: 0;
    font-weight: 900 !important;
  }
  .actions-text {
    margin-bottom: 18px;
    margin-left: 0;
  }
  .dot- {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-left: 1rem;
  }
  .cat-sponsor-d img {
    width: 100%;
    padding-left: 0;
  }
  .cat-sponsor-d {
    border-left: 0 solid #626262;
  }
  .de-right {
    flex: 1;
    padding-left: 0;
  }
  .third-stories {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }
  .pre-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 5px;
  }
  .excerpt-td {
    margin-top: 0;
  }
  .author {
    padding: 10px 0;
  }
  .l-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-right: 0;
  }
  .l-categories > * {
    flex: 1 1 calc(25% - 10px);
    box-sizing: border-box;
  }
  .l-news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px 20px;
  }
  .au-articles,
  .au-container {
    flex-direction: column;
    gap: 0;
    display: flex;
  }
  .tech h2 {
    font-size: 30px !important;
  }
  .au-container {
    grid-template-columns: 1fr 2fr 1fr;
    margin-top: 10px;
  }
  .au-author {
    font-size: 15px;
    color: #222;
    position: unset;
    top: 20px;
    align-self: flex-start;
  }
  .au-sidebar {
    font-size: 14px;
    position: unset;
    top: 0;
    align-self: center;
  }
  .explore-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .au-article {
    display: flex;
    flex-direction: inherit;
    gap: 0;
  }
  .au-article img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
  }
  .menu {
    display: inline-grid;
  }
}
