@font-face {
  font-family: 'Anton';
  src: url('./fonts/Anton-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
}
header{
     display: flex;
  gap: 1rem;
  justify-content: space-between; 
  align-items: center;
  padding: 20px 55px;
  border-bottom: 1px solid #979797;
}

.header-sec {
  display: flex;
  gap: 3rem;
  
}

.header-sec li {
  list-style-type: none;
}

.header-sec ul {
  display: flex;
  gap: 2rem;
}

.header-sec a {
  text-decoration: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.header-sec a:hover{
  color: #30e5b8;
}

.header-btn{
    font-family: 'Anton';
    cursor: pointer;
    border: 1px solid #3cffd0;
    background-color: transparent;
    color: #ffff;
    padding: 10px 40px;
    font-size: 1.2rem;
}
.header-btn:hover{
    background-color: #3cffd0;
    color: black;
    transition-duration: 0.85s;
}
.header-right{
    display: flex;
    gap: 1rem;
    align-items: center;

}

.header-right img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}

/* Hover color change */
.header-right a:hover img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(70%) saturate(619%) hue-rotate(103deg) brightness(103%) contrast(101%);
}




/* main section */

.container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 40px 10px;
}
main{
  margin: 0 55px;
}
/* LEFT COLUMN */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.article-info {
  margin-top: 0.5rem;
}

.article-info h2 {
  font-family: "Anton", sans-serif;
  font-size: 28px;
    font-weight: 400;
    line-height: 1.15em;
    letter-spacing: -.01em;
  margin-bottom: 0.3rem;
  color: #ffff;
}

.meta {
  color: #ccc;
  font-size: 0.75rem;
}

.meta span {
  color: #3cffd0;

  font-weight: bold;
}

/* FEATURED */
.featured {
  position: relative;
}

.featured img {
  width: 100%;

}

.featured-text {
  margin-top: 1rem;
}

.featured-text h1 {
  font-family: "Anton", sans-serif;
      font-size: 40px;
    font-weight: 400;
    line-height: 1.0875em;
    letter-spacing: -.01em;
color: #ffff;
}

.featured-text p {
  margin: 0.5rem 0;
  color: #ccc;
}

/* SIDEBAR */
.sidebar h3 {
  font-family: "Anton", sans-serif;
      font-size: 25px;
    line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #ffff;
}

.side-article {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.side-article img {
  width: 115px;
  height: 105px;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.side-article h4 {
  font-family: "Anton", sans-serif;
  font-size: 22px;
    font-weight: 400;
    line-height: 1.15em;
    letter-spacing: -.01em;
    margin-top: 5px;
  color: #fff;
}

.category {
      font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: -.01em;
  color: #cacaca;
  text-transform: uppercase;
  font-family: 'popins' , sans-serif;
}

.side-article .meta {
  font-size: 11px;
  color: #aaa;
  margin-top: 5px;
}

.side-article .meta span {
  color: #3cffd0;
  margin-right: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
  }
  .sidebar {
    order: 3;
  }
  .featured {
    order: 2;
  }
  header {
    display: flex
;

    justify-content: space-between;
    padding: 20px;

}
main{
  margin: 0 10px;
}
  .main-content {
    order: 1;
    flex-direction: column;
    gap: 1.5rem;
  }
  .article {
    flex: 1 1 calc(50% - 1rem);
  }
  .hedaer-ul, .header-btn{
    display: none !important;
  }
  .article img{
      height: 350px;
  }
}

@media (max-width: 600px) {
  .article h2,
  .featured-text h1 {
    font-size: 1.2rem;
  }

  .container {
    gap: 1.5rem;
  }

  .side-article {
    flex-direction: column;

  }

  .side-article img {
    width: 100%;
    height: auto ;
  }
}



/* second section */

.content-wrapper {
  max-width: 1400px;
  margin: 40px 10px;
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}

/* Section titles */

.section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff;
  width: 100%;
}

/* LEFT SIDE: Pick List */

.pick-list {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pick-entry {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
  align-items: flex-start;
}
.pick-entry:last-child{
  border-bottom: none;
}

.pick-number {
  font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #2a2a2a;
  user-select: none;
  flex-shrink: 0;
  line-height: 1;
}

.pick-content {
  flex: 1;
}

.pick-title {
  font-family: 'Anton', sans-serif;
  font-size: 34px;
    font-weight: 400;
    line-height: 1.1475em;
    word-spacing: -0.01em;
  margin: 0 0 0.3rem 0;
  color: #fff;
}

.pick-meta {
  font-size: 0.85rem;
  color: #bbb;
  letter-spacing: 0.5px;
  margin: 0;
}

.pick-meta .author {
  color: #3cffd0;
  font-weight: 700;
}

/* RIGHT SIDE: Recent Articles */

.recent-articles-wrapper {
  flex: 2 1 650px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.recent-articles {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.recent-article {
  width: 48%;
  gap: 1rem;
  align-items: flex-start;
}

.recent-img {
  width: 100%;
  height: auto ;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-text {
  flex: 1;
}

.recent-title {
  font-family: 'Anton', sans-serif;
font-size: 34px;
    font-weight: 400;
    line-height: 1.1475em;
    word-spacing: -0.01em;
  margin: 0 0 0.3rem 0;
  color: #fff;
}

.recent-summary {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0 0 0.7rem 0;
  line-height: 1.3;
}

.recent-meta {
  font-size: 0.85rem;
  color: #bbb;
  letter-spacing: 0.5px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.recent-meta .category {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.recent-meta .author {
  color: #3cffd0;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
  }
  .pick-list, .recent-articles-wrapper {
    flex: 1 1 100%;
  }
  .recent-articles {
    flex-direction: column;
  }
  .recent-article {
    width: 100%;
  }
  .recent-img {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .pick-number {
    font-size: 3rem;
  }
  .pick-title, .recent-title {
    font-size: 1.1rem;
  }
  .recent-summary {
    font-size: 0.85rem;
  }
}




/* third section */

.editor-choice-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  color: #fff;
  padding: 40px 1%;
  font-family: 'Poppins', sans-serif;
}

/* Left Column */
.editor-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.editor-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  margin: 0px;
}

.editor-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.editor-text .editor-title {
  font-size: 34px;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  line-height: 1.2;
  margin-bottom: 15px;
}

.editor-desc {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 12px;
}

.editor-meta {
  font-size: 14px;
  color: #aaa;
}

.editor-cat {
  color: #ccc;
  font-weight: 700;
}

.editor-author {
  color: #00ffae;
  font-weight: 700;
}

.editor-image img {
  width: 384px;
  height: 249px;
  object-fit: cover;
}

/* Right Column */
.editor-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.right-article {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
.right-article:last-child {
  display: flex;
  gap: 20px;
  border-bottom: none;
  padding-bottom: 20px;
}

.right-img img {
  width: 140px;
  height: 110px;
  object-fit: cover;
}

.right-title {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Anton' , sans-serif;
  line-height: 1.2;
  margin-bottom: 5px;
}

.right-meta {
  font-size: 13px;
  color: #aaa;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .editor-choice-container {
    grid-template-columns: 1fr;
  }

  .editor-article {
    grid-template-columns: 1fr;
  }

  .editor-right {
    margin-top: 40px;
  }
  
.editor-image img {
    width: 100%;
    height: 350px;
}
.right-article {
    flex-direction: column;
}
.right-article img{
    width: 100%;
    height: 350px;
}
}

@media (max-width: 600px) {
  .editor-title {
    font-size: 28px;
  }
  .right-title {
    font-size: 18px;
  }
}

/* fourth section */

.articles-container {
  color: #fff;
  padding: 50px 1%;
  font-family: 'Poppins', sans-serif;
}

.articles-heading {
  font-size: 24px;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  margin-bottom: 30px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: flex-start;
}

/* Article Cards */
.article-card {
  display: flex;
  flex-direction: column;
}

.article-img img {
  width: 100%;
  height: 186px;
  object-fit: cover;
  margin-bottom: 15px;
}

.article-title {
  font-size: 28px;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
}

.article-meta {
  font-size: 14px;
  color: #aaa;
}

.article-author {
  color: #00ffae;
  font-weight: 700;
}

/* Newsletter Box */
.newsletter-box {
  background: #3c00ff;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.newsletter-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  outline: none;
  padding: 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
}

.newsletter-input::placeholder {
  color: #e0d9ff;
}

.newsletter-btn {
  background: #00ffd0;
  color: #000;
  border: none;
  font-weight: 700;
  align-items: center;
  font-size: 18px;
  padding: 14px;
  font-family: 'Poppins', sans-serif;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s ease;
}
.newsletter-btn img{
    height: 20px;
}

.newsletter-btn:hover {
  background: #00e6bb;
}

/* Responsive */
@media (max-width: 1100px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-box {
    height: auto;
  }
}

@media (max-width: 700px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-img img {
    height: 350px;
  }

  .article-title {
    font-size: 20px;
  }

  .newsletter-box {
    text-align: center;
  }
}


/* fifth section */

.popular-container {
  color: #fff;
  padding: 50px 1%;
  font-family: 'Poppins', sans-serif;
}

.popular-heading {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Top Grid */
.popular-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Left Big Post */
.popular-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 15px;
}

.popular-title {
  font-size: 34px;
  font-weight: 400;
    font-family: 'Anton', sans-serif;
  line-height: 1.2;
  margin-bottom: 12px;
}

.popular-desc {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 10px;
}

.popular-meta {
  font-size: 13px;
  color: #999;
}

.popular-cat {
  color: #ccc;
  font-weight: 700;

}

.popular-author {
  color: #00ffae;
  font-weight: 700;
}

/* Right Posts */
.popular-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popular-right-item {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.right-img2 img {
  width: 100%;
  height: 243px;
  object-fit: cover;

}

.divider {
  border-bottom: 1px solid #333;
  margin: 20px 0;
}

/* Bottom List */
.popular-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #333;
  margin-top: 20px;
}

.popular-item {
  display: flex;
  align-items: center;
  gap: 30px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 25px 20px;
}

.popular-item:last-child {
  border-right: none;
}

.popular-num {
      font-family: 'Anton', sans-serif;
    font-size: 6.5rem;
    font-weight: 500;
    color: #2a2a2a;
    user-select: none;
    flex-shrink: 0;
    line-height: 1;
}

.popular-item-text h3 {
  font-size: 34px;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  margin-bottom: 6px;
      line-height: 1.2795em;
    letter-spacing: -.01em;
}

.popular-item-text p {
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .popular-top-grid {
    grid-template-columns: 1fr;
  }

  .popular-right-item {
    grid-template-columns: 1fr;
  }

  .popular-bottom {
    grid-template-columns: 1fr;
  }

  .popular-item {
    border-right: none;
    border-bottom: 1px solid #333;
  }

  .popular-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .popular-title {
    font-size: 22px;
  }

  .popular-item-text h3 {
    font-size: 18px;
  }

  .popular-num {
    font-size: 32px;
  }
}



/* sixth section */

.featured-container {
  background: #2c2c2c;
  color: #fff;
  padding: 50px 1%;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.featured-title {
  font-size: 22px;
  font-weight: 700;
}

.featured-link {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.featured-link:hover {
  color: #00ffae;
}

/* Grid Layout */
.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

/* Left Main Video */
.featured-left {
  display: flex;
  flex-direction: column;
}

.featured-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 15px;
}

.featured-main-title {
  font-size: 34px;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  margin-bottom: 10px;
}

.featured-main-desc {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.5;
}

/* Right Videos */
.featured-right {
  display: flex;
  flex-direction: column;

  gap: 25px;
}

.featured-item {
  display: grid;
  grid-template-columns: 193px 1fr;
  gap: 15px;
}

.featured-item img {
  width: 193px;
  height: 158px;
  object-fit: cover;
}

.featured-item-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  font-family: 'Anton', sans-serif;
  margin-bottom: 6px;
}

.featured-item-text p {
  font-size: 13px;
  color: #bfbfbf;
}

.featured-author {
  color: #00ffae;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .expose .featured-grid{
      grid-template-columns: 1fr !important;
}
.expose {
  padding: 20px 3% !important;
}

  .featured-item {
    grid-template-columns: 210px 1fr;
  }
  .featured-right{
    margin-top: 20px;
  }
  .side-article {
    flex-direction: column;
  }
  .side-article img {
    width: 100%;
    height: 350px;
  }

  .featured-main-title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .featured-container {
    padding: 40px 1%;
  }

  .featured-item {
    grid-template-columns: 1fr;
  }

  .featured-item img {
    width: 100%;
  }

  .featured-main-img {
    height: 280px;
  }

  .featured-main-title {
    font-size: 22px;
  }
}



/* seventh section */

/* Container */
.trend-wrapper {
  background-color: #121212;
  color: #fff;
  padding: 60px 1%;
  font-family: 'Poppins', sans-serif;
}

/* Section Heading */
.trend-heading {
  font-size: 26px;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  margin-bottom: 35px;
}

/* Grid Layout */
.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.trend-card {
  display: flex;
  flex-direction: column;
}

.trend-image {
  width: 100%;
  height: 244px;
  object-fit: cover;

  margin-bottom: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Optional hover effect */
.trend-card:hover .trend-image {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.trend-title {
      font-size: 34px;
    font-weight: 400;
    line-height: 1.15em;
    font-family: 'Anton', sans-serif;
 
  margin-bottom: 10px;
}

.trend-text {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.5;
  margin-bottom: 15px;
}

.trend-info {
  font-size: 12px;
  color: #bfbfbf;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trend-cat {
  font-weight: 700;
}

.trend-author {
  color: #00ffae;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .trend-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .right-text{
    order: 2;
  }
  .side-article .category{
    padding-top: 1rem;
  }
  .side-article .meta{
    padding-bottom: 1rem;
  }

  .trend-title {
    font-size: 24px;
  }
  .featured img {
    height: 350px;
  }

  .trend-image {
    height: 280px;
  }
}

@media (max-width: 768px){
    main{
        padding: 10px;
    }
    .footer-sec{
        padding: 0 10px !important;
    }
}
@media (max-width: 600px) {
  .trend-grid {
    grid-template-columns: 1fr;
  }

  .trend-wrapper {
    padding: 40px 1%;
  }

  .trend-title {
    font-size: 22px;
  }

  .trend-image {
    height: 250px;
  }
}


a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
a:hover{
    color: #c6c6c6;
  
}

/* footer */


.footer-sec {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 5% 30px;
  border-top: 1px solid #1f1f1f;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  color: #3cffd0;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #3cffd0;
}

/* Columns */
.footer-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #3cffd0;
}

/* Subscribe Section */
.footer-subscribe {
  display: flex;
  flex-direction: column;
}

.footer-form {
  display: flex;
  margin-bottom: 15px;
}

.footer-input {
  flex: 1;
  background: #222;
  border: none;
  padding: 15px;
  color: #fff;
  font-size: 15px;
}

.footer-btn {
  background: #3cffd0;
  border: none;
  color: #000;
  font-size: 18px;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #30e5b8;
}

.footer-check {
  font-size: 14px;
  color: #ccc;
}

.footer-check a {
  color: #3cffd0;
  text-decoration: none;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 25px;
  display: flex;
  padding-bottom: 20px;

  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #ccc;
}

.footer-legal {
  display: flex;
  gap: 10px;
}

.footer-legal a {

  text-decoration: none;
}
.footer-legal a:hover {
  color: #30e5b8;
}
/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .quates p{
    font-size: 16px !important;
  }
  .dhuyh{
  display: none;
}
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-socials {
    margin-bottom: 20px;
  }
  main{
    margin: 0 !important;
  }

  
  .footer-btn {
    width: 15%;
    padding: 0;
  }
  

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
}



/* category */

.maryy2{
    margin-top: 2rem;
}
.expose{
 
    background-color: #000;
    color: #fff;
    padding: 50px 0%;
    font-family: 'Poppins', sans-serif;

}
.expose .featured-item-title{
    font-size: 19px !important;

}
.expose .featured-item{
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
}
.expose .featured-item:last-child{
    border-bottom: none;
}
.sgatyy{
    display: flex;
    gap: 10px;
   
}
.categorysec{
    flex-direction: column;
    justify-content: start !important;
    align-items: start;
}
.sgatyy a{
    color: #cccc;
    text-decoration: none;
    font-size: 16px;
}
.sgatyy a::after{
    content: "|";
    padding-left: 10px;

}
.sgatyy a:last-child::after {
    content: none;
}

.categorysec .featured-title{
        font-family: 'Anton', sans-serif;
        font-weight: 400;
        font-size:2.5rem !important;
}

.container, .content-wrapper, .editor-choice-container, .articles-container, .popular-container, .featured-container, .trend-wrapper{
  border-bottom: 1px solid #454545;
  padding-bottom: 4rem;
}



/* detail */

/* Container */
.post-wrapper {
  width: 100%;
  padding: 0rem 1rem 2rem  0rem;
}

.post-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Category Tag */
.post-tag {
  font-size: 0.9rem;
  color: #b5b5b5;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

/* Title */
.post-heading {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  font-family: 'Anton', sans-serif;
  margin-bottom: 1rem;
}

/* Description */
.post-description {
  font-size: 1rem;
  color: #c5c5c5;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Author + Date Info */
.post-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #b5b5b5;
}

.post-author span {
  color: #00d8b4;
  font-weight: 600;
}

/* Divider */
.post-line {
  border-bottom: 1px solid #979595;
  margin: 1.5rem 0;
}

/* Social Icons */
.post-share {
    display: flex
;
    align-items: end;
    gap: 1rem;
    justify-content: end;
}

.post-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #1e1e1e;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.post-share a:hover {
  background-color: #30e5b8;
}

.post-share img {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .post-heading {
    font-size: 1.8rem;
  }

  .post-description {
    font-size: 0.95rem;
  }

  .post-share {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .post-heading {
    font-size: 1.5rem;
  }
  .post-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

.expose .featured-grid{
      grid-template-columns: 2fr 1fr;
}

.expose .featured-item {
    display: grid
;
    grid-template-columns: 141px 1fr;
    gap: 15px;
}
.expose .featured-item img{
  width: 141px;
  height: 110px;
}
.sety{
  font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
}
.quates{
  background-color: black;
  padding: 2rem;
  margin: 3rem 0;
}
.quates p{
      color: #fff;
    line-height: 1.25;
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    align-items: center;
    text-align: center;
}
.loco{
  margin-top: 1rem;
}



/* Main Container */
.footerArea_x91 {
  max-width: 900px;
  width: 100%;
}

/* TAGS */
.tagSection_x91 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tagLabel_x91 {
  font-weight: 700;
  font-size: 1rem;
  margin-right: 0.8rem;
}

.tagButtons_x91 a {
  display: inline-block;
  border: 1px solid #555;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 14px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.tagButtons_x91 a:hover {
  background-color: #00d8b4;
  color: #000;
}

/* AUTHOR */
.authorSection_x91 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.authorImage_x91 img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.authorBio_x91 {
  flex: 1;
  min-width: 250px;
}

.authorSubtitle_x91 {
  font-size: 0.9rem;
  color: #b5b5b5;
  margin-bottom: 0.2rem;
}

.authorName_x91 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.authorText_x91 {
  font-size: 0.95rem;
  color: #c5c5c5;
  margin-bottom: 1rem;
}

.authorLinks_x91 {
  display: flex;
  gap: 0.8rem;
}

.authorLinks_x91 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.authorLinks_x91 img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.authorLinks_x91 img:hover {
  opacity: 1;
}

/* COMMENT SECTION */
.commentArea_x91 {
  width: 100%;
}

.commentHeading_x91 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.commentForm_x91 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commentRow_x91 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.commentForm_x91 input,
.commentForm_x91 textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid #757575;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.commentForm_x91 input:focus,
.commentForm_x91 textarea:focus {
  border-color: #00d8b4;
}

.commentRow_x91 input {
  flex: 1;
  min-width: 250px;
}

.commentButton_x91 {
  background-color: #00d8b4;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.commentButton_x91:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .authorSection_x91 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .authorBio_x91 {
    text-align: center;
  }

  .commentRow_x91 {
    flex-direction: column;
  }

  .commentButton_x91 {
    width: 100%;
  }
}


/* Menu Button */
.menuTrigger_x91 {
  top: 20px;
  right: 20px;
  z-index: 900; /* below sidebar now */
}

.menuTrigger_x91 img {
  cursor: pointer;
 
}

/* Overlay (background dim) */
.overlay_x91 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.overlay_x91.show_x91 {
  opacity: 1;
  pointer-events: auto;
}

/* Sidebar */
.sidebarWrap_x91 {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  max-width: 90%;
  height: 100%;
  background-color: #000;
  color: #fff;
  transition: right 0.4s ease-in-out;
  z-index: 999;
  overflow-y: auto;
  border-left: 1px solid #222;
}

.sidebarWrap_x91.active_x91 {
  right: 0;
}

/* Inner Padding */
.sidebarInner_x91 {
  padding: 1.5rem;
}

/* Header */
.sidebarHeader_x91 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.sidebarLogo_x91 {
  font-weight: 800;
  font-size: 1.5rem;
  color: #00d8b4;
  letter-spacing: 1px;
}

.sidebarClose_x91 {
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Posts */
.sidebarPosts_x91 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebarPost_x91 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.sidebarPost_x91 img {
  width: 120px;
  height: 90px;
  object-fit: cover;
}

.sidebarContent_x91 {
  flex: 1;
}

.sidebarTitle_x91 {
  font-size: 1rem;
  font-family: 'Anton' , sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.sidebarMeta_x91 {
  font-size: 0.85rem;
  color: #b5b5b5;
}

.metaAuthor_x91 {
  color: #00d8b4;
  font-weight: 600;
  margin-right: 0.4rem;
}

.sidebarDivider_x91 {
  border-bottom: 1px solid #333;
  margin-top: 0.5rem;
}

/* Scrollbar styling */
.sidebarWrap_x91::-webkit-scrollbar {
  width: 6px;
}
.sidebarWrap_x91::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 600px) {
  .sidebarPost_x91 img {
    width: 100px;
    height: 75px;
  }

  .sidebarLogo_x91 {
    font-size: 1.3rem;
  }

  .sidebarClose_x91 {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1440px) {
  .container{
    max-width: 100% !important;
  }
  main{
    margin: 0 55px;
  }
  header{
    padding:  20px 55px !important;
    justify-content: space-between !important;
  }
  .footer-sec{
    padding: 60px 5% 30px;
  }
}





/* === Mobile Menu Button === */
.custom-mobile-toggle {
  display: inline-block;
  cursor: pointer;
  padding: 5px;
}

.custom-mobile-toggle img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: block;
}

/* === Sidebar (Mobile) === */
.custom-sidebar {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  height: fit-content;
  background: #000;
  color: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}

.custom-sidebar.custom-active {
  transform: translateY(0);
  top: 55px;
}

/* === Menu List === */
.custom-menu-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.custom-menu-item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.custom-menu-item a:hover {
  background: #111;
}

.custom-menu-item a span {
  font-size: 16px;
}

/* === Desktop View === */
@media (min-width: 992px) {
  .custom-mobile-toggle {
    display: none;
  }
  
  .custom-sidebar {
    display: none;
  }
}


/* Search Container */
.search-container {
  display: flex;
  align-items: center;
  border: 1px solid #2cebcf; /* Mint-green border */
  width: 90%;
  max-width: 1100px;
  height: 50px;
  background-color: #151515; /* Dark gray background inside */
  border-radius: 2px;
  overflow: hidden;
}

/* Input Field */
.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #cfd3d6;
  font-size: 1rem;
  padding: 0 15px;
}

/* Placeholder Text */
.search-input::placeholder {
  color: #707070;
  font-weight: 400;
}

/* Search Button */
.search-btn {
  background-color: #2cebcf; /* Mint-green box */
  border: none;
  height: 100%;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background-color: #26d3bb; /* Slight hover effect */
}

.search-btn svg {
  stroke: #000; /* Black search icon */
}

/* Responsive */
@media (max-width: 600px) {
  .search-container {
    height: 45px;
  }

  .search-btn {
    width: 50px;
  }

  .search-input {
    font-size: 0.95rem;
  }
}
