* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:Helvetica, Arial, sans-serif ;
}
html{
    scroll-behavior: smooth;
}

.top-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0px 80px;
    background:#f3f3f3;
    height:38px;
    font-size:14px;
}

.top-left{
    color:#555;
    font-weight:500;
}
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}
.top-right a {
  margin-right: 15px;
  text-decoration: none;
  color: #000;
}
.top-links{
    display:flex;
    align-items:center;
    gap:16px;
}

.top-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:color .2s ease;
}

.top-links a:hover{
    color:#e74c3c;
}
.topbar-social{
    display:flex;
    align-items:center;
}

.social-link{
    display:flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    border-radius:50%;
    transition:all .18s ease;
}

.social-link img{
    width:15px;
    height:15px;
    object-fit:contain;
    display:block;
}

.social-link:hover{
    background:#e6e6e6;
    transform:translateY(-1px);
}

.subscribe-btn{
    background:#000;
    color:#fff;
    border:none;
    padding:6px 14px;
    font-size:13px;
    cursor:pointer;
    transition:background .2s ease;
}
.subscribe-btn,
.subscribe-btn:link,
.subscribe-btn:visited {
  background: #000;
  color: #fff;
  text-decoration: none;
}
.subscribe-btn:hover,
.subscribe-btn:active {
  background: #e74c3c;
  color: #fff;
}



/* MAIN NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 80px;
    /* STICKY BEHAVIOR */
  position: sticky;
  top: 0;

  background: #fff;
  z-index: 1000;

  /* prevents content showing through while scrolling */
  border-bottom: 1px solid #ddd;
}

.logo{
  font-size:25px;
  font-weight:900;
  font-family:"Cooper Black","Rockwell","Clarendon",serif;

  text-decoration:none;
  color:#000;
  display:inline-block;
}

/* prevent purple visited link */
.logo:visited{
  color:#000;
}

/* hover effect (optional but recommended UX) */
.logo:hover{
  opacity:.8;
}

.nav-links {
  display: flex;
  gap: 19px;
  padding-right: 500px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  /* padding: 6px 38px; */
}

.nav-links .active {
  background: #eee;
}

.nav-icons span {
  margin-left: 15px;
  font-size: 18px;
  cursor: pointer;
}

.nav-divider {
  border: none;
  border-top: 3px solid #000;
  margin: 0 80px;   /* left & right spacing */
}

.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 6px 80px;
  /* border-bottom: 1px solid #ddd; */
  font-size: 12.5px;
}

.category-bar a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

.category-bar a:hover {
  color: #000;
}

.category-bar span {
  color: #ccc;
}

/* Hide menu button on desktop */
.menu-toggle {
  display: none;
}
/* =====================
   MOBILE VIEW ONLY
   ===================== */
@media (max-width: 768px) {

  .top-bar,
  .nav-icons,
  .category-bar {
    display: none;
  }

  .navbar {
    padding: 14px 20px;
    position: relative; /* anchor for absolute menu */
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  /* DROPDOWN MENU (OVERLAY, NOT PUSHING CONTENT) */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;           /* directly below navbar */
    left: 0;
    width: 100%;
    background: #f7f8f9;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
  }

  .nav-links a {
    padding: 16px 20px;
    color: #100f0f;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a.active {
    color: #0a0909;
    border-left: 4px solid #f97316;
  }
}
@media (max-width: 768px) {

  .nav-divider {
    margin: 0;                 /* full width */
    border-top: 3px solid #000; /* thicker line */
    width: 100%;               /* ensure full length */
  }
}



.custom-line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0px 90px;
}
.custom-line.b {
  border: none;
  border-top: 3px solid #000;
  margin: 0px 80px;
}



/* 1st section */
.news-section {
  padding: 40px 80px;
}

.news-container {
  display: grid;
  grid-template-columns: 2.3fr 1.2fr 0.2fr;
  gap: 30px;
  /* max-width: 1200px; */
  margin: auto;
}

/* COMMON */
.col img {
  width: 100%;
  display: block;
  height: 300px;
}

.highlight {
  color: #a3073d;
}

/* COLUMN 1 */
.col-featured .tag {
  display: inline-block;
  background: #ffb000;
  color: #000;
  padding: 4px 10px;
  margin: 12px 0;
  font-weight: bold;
}

.col-featured h2 {
  font-size: 34px;
  line-height: 1.2;
}

.col-featured h2 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}
.featured-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:12px;
}

.featured-meta .meta{
    font-size:14px;
    color:#555;
}


.featured-meta .meta a{
    text-decoration:none;
    color:#111;
    font-weight:500;
}

.featured-meta .meta a:hover{
    color:#e74c3c;
}
.featured-image-wrapper {
    position: relative;
}
.tag {
    position: absolute;
    left: 0px;
    bottom: -12px;
    background: #ffb000;
    color: #000;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
}

.meta {
  color: #666;
  margin-top: 10px;
}
.meta a{
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.meta a:hover{
    text-decoration: underline;
}


.font {
  font-family: "Segoe UI", Roboto, "Open Sans", Arial, sans-serif;
  color: #0c0b0b;
  margin-top: 10px;
}

/* COLUMN 2 */
.col-headlines .section-title {
  font-size: 20px;
  border-bottom: 2px solid #000;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.headline {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.headline h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.headline h4 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.headline p {
  font-size: 14px;
  color: #666;
}
/* headline container */
.headline{
    padding:14px 0;
    border-bottom:1px solid #eee;
}


/* title */
.headline-title{
    margin:0 0 6px 0;
    font-size:16px;
    line-height:1.35;
}

.headline-title a{
    color:#111;
    text-decoration:none;
    font-weight:600;
}

.headline-title a:hover{
    color:#e74c3c;
}

/* AUTHOR + BOOKMARK ROW */
.headline-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* author text */
.headline-meta .meta{
    font-size:13px;
    color:#666;
}

.headline-meta .meta a{
    text-decoration:none;
    color:#111;
    font-weight:500;
}

.headline-meta .meta a:hover{
    color:#e74c3c;
}

/* COLUMN 3 */
.col-sidebar {
  background: #f7f7f7;
  padding: 25px;

}

.col-sidebar h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.col-sidebar p {
  color: #555;
  line-height: 1.6;
  font-family: 'Times New Roman', Times, serif;
  text-align: justify;
  text-justify: inter-word;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.social-grid span {
  text-align: center;
  padding: 12px;
  border: 1px solid #ddd;
  font-weight: 600;
}

/* =====================
   MOBILE RESPONSIVENESS
   ===================== */
@media (max-width: 768px) {

  /* Reduce section padding */
  .news-section {
    padding: 20px;
  }

  /* Stack columns vertically */
  .news-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* IMPORTANT: allow grid items to shrink */
  .col-featured,
  .col-headlines,
  .col-sidebar {
    min-width: 0;
  }

  /* Image fix for mobile */
  .col img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  /* Featured title smaller */
  .col-featured h2 {
    font-size: 24px;
  }

  /* Headlines text size */
  .headline h4 {
    font-size: 16px;
  }

  /* Sidebar spacing */
  .col-sidebar {
    padding: 20px;
  }

  /* Social grid adapts */
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* 2nd section */
.most-read-section {
  padding: 10px 80px;
  background-color: #fff; /* Background for the entire section */
}

.section-title-container {
  display: flex;
  justify-content: left;
  margin-bottom: 30px;
}

.section-title {
  font-size: 20px;
  color: #f10e0e;
}

/* Container for Left & Right Columns */
.most-read-container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

/* Left Column - Advertisement (Blue Background) */
.advertisement-box {
    border: 1px solid black;
    padding: 20px;
    width: 300px;
    text-align: center;
    background-color: #fff;
}

.advertisement-box h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.advertisement-box p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.advertisement-box .ad-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.advertisement-box .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: orange;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
}

.advertisement-box .btn:hover {
    background-color: darkorange;
}

/* Right Column - Articles */
.content-column {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-article {
  display: flex;
  justify-content: space-between; /* Position title & image side by side */
}

.main-article-content {
  flex: 1;
}

.main-article h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.main-article h3 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.main-article p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
  text-justify: inter-word;
}

.main-article img {
  width: 45%; /* Image on the right */
  border-radius: 8px;
  margin-left: 20px;
}

/* Articles List (3 articles stacked vertically) */
.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.three-column .column {
  background-color: #fff;
  /* padding: 1px; */

  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.three-column .column h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.three-column .column h4 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.three-column .column p {
  font-size: 14px;
  color: #777;
}
/* =====================
   MOST READ – MOBILE
   ===================== */
@media (max-width: 768px) {

  .most-read-section {
    padding: 20px;
  }

  /* Stack left + right columns */
  .most-read-container {
    flex-direction: column;
    gap: 25px;
  }

  /* Ad box full width */
  .advertisement-box {
    width: 100%;
  }

  /* Main article stacks */
  .main-article {
    flex-direction: column;
  }

  .main-article img {
    width: 100%;
    margin: 15px 0 0;
  }

  .main-article h3 {
    font-size: 20px;
  }

  /* 3 articles → single column */
  .three-column {
    grid-template-columns: 1fr;
  }

  .three-column .column h4 {
    font-size: 16px;
  }
}



/* 3rd section */
.recommend-section {
  padding: 40px 80px;
}

.recommend-header {
  border-top: 4px solid #000;
  margin-bottom: 25px;
}

.recommend-header h2 {
  font-size: 20px;
  margin-top: 15px;
}

.four-column-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.recommend-card h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.recommend-card h3 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.card-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card-tag {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #ffb000;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  z-index: 10;
  letter-spacing: .4px;
}

.card-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .recommend-section {
    padding: 20px;
  }

  .four-column-container {
    grid-template-columns: 1fr;
  }
}



/* 4th section */
.opinion-section {
  padding: 40px 80px;
}

.opinion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 4px solid #000;
  padding-top: 15px;
  margin-bottom: 30px;
}

.opinion-header h2 {
  font-size: 20px;
}

.more-link {
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.opinion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.opinion-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.opinion-card {
  display: flex;
  gap: 20px;
}

.opinion-image {
  position: relative;
  flex: 0 0 220px;
}

.opinion-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.opinion-tag {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #ffb000;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  z-index: 3;
}

.play-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 14px;
  padding: 6px;
  border-radius: 50%;
}

.opinion-content h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
.opinion-content h3 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.opinion-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.author {
  color: #666;
  margin-top: 10px;
}
.author a{
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.live {
  color: #f97316;
}

/* =====================
   OPINION – MOBILE VIEW
   ===================== */
@media (max-width: 768px) {

  .opinion-section {
    padding: 20px;
  }

  .opinion-header {
    flex-direction: row;
    gap: 10px;
  }

  .opinion-header h2 {
    font-size: 22px;
  }

  .more-link {
    font-size: 13px;
  }

  /* Stack two columns into one */
  .opinion-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Card becomes vertical */
  .opinion-card {
    flex-direction: column;
    gap: 15px;
  }

  /* Image full width */
  .opinion-image {
    flex: unset;
  }

  .opinion-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Tag positioning adjusted */
  .opinion-tag {
    bottom: 0px;
    left: 0px;
  }

  /* Typography adjustments */
  .opinion-content h3 {
    font-size: 18px;
  }

  .opinion-content p {
    font-size: 14px;
  }

}



/* 5th section */
.editorial-hub {
  padding: 40px 80px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.6fr 1.3fr;
  gap: 40px;
}

.column-title {
  font-size: 18px;
  border-left: 4px solid #000;
  padding-left: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* =====================
   TOP WRITERS (COLUMN 1)
   ===================== */
.writer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 0;              /* Larger box */
  border-bottom: 1px solid #eee;
}

.writer-card div {
  flex: 1;
}

.writer-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
}
.writer-card h3 a {
  color: inherit;
  text-decoration: none;
}

.writer-card h4 span {
  color: #777;
  font-weight: normal;
}

.writer-card p {
  font-size: 12px;
  color: #666;
}

/* Image on RIGHT */
.writer-card img {
  order: 2;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.add-btn {
  order: 3;
  margin-left: 10px;
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

/* =====================
   TECH & WORLD ARTICLES
   ===================== */
.featured-article {
  margin-bottom: 20px;
}

.featured-article img {
  width: 350px;
  height: 180px;               /* SAME SIZE FOR TECH & WORLD */
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

.tag {
  display: inline-block;
  background: #ffb000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  margin-bottom: 6px;
}
.featured-article h3 a,
.text-article h3 a {
    color: #111;
    text-decoration: none;
}

.featured-article h3 a:hover,
.text-article h3 a:hover {
    color: #e74c3c;
}
.featured-article h3,
.featured-article h4,
.text-article h3,
.text-article h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 6px;
}
.featured-article h4 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.featured-article p,
.text-article p {
  font-size: 13px;
  color: #666;
}

/* Text-only articles */
.text-article {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.text-article h4 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 768px) {

  .editorial-hub {
    padding: 20px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .writer-card {
    padding: 15px 0;
  }

  .featured-article img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}



/* 6th section */
.subscription-box {
  padding: 60px 80px;
  background-color: #fff;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 1300px;
  border: 2px solid #ddd; /* Add border to the entire box */
  border-top: 5px solid #000; /* Bold top border */
}

.subscription-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 2fr; /* 3 columns layout */
  gap: 30px;
  align-items: center;
}

.subscription-image img {
  width: 100%;
  max-width: 150px; /* Image width */
  height: auto;
  border-radius: 8px;
}

.subscription-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.subscription-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.subscription-title p {
  font-size: 16px;
  color: #555;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscription-form input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  /* width: 100%; */
}

.subscription-form .sign-up-btn {
  background-color: #ff7a18;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.subscription-form .sign-up-btn:hover {
  background-color: #e66916;
}

.terms-conditions {
  /* display: flex; */
  align-items: center;
  font-size: 14px;
  color: #555;
  gap: 0; /* Remove any gap between checkbox and label */
}

.terms-conditions input {
  margin: 0; /* Remove margin from checkbox */
}

.terms-conditions label {
  margin: 0; /* Remove margin from label */
  cursor: pointer;
  margin-left: 5px; /* Add slight space between checkbox and label */
}

/* mobile responsive */
@media (max-width: 768px) {

  .subscription-box {
    padding: 30px 20px;
    margin: 20px 20px;
  }

  .subscription-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .subscription-image img {
    max-width: 120px;
    margin: 0 auto;
  }

  .subscription-title h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .subscription-title p {
    font-size: 14px;
  }

  .subscription-form {
    width: 100%;
    gap: 12px;
  }

  .subscription-form input[type="email"] {
    width: 100%;
    font-size: 15px;
  }

  .subscription-form .sign-up-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  /* Checkbox + label — NO GAP */
  .terms-conditions {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
  }

  .terms-conditions input,
  .terms-conditions label {
    margin: 0px;
    padding: 1px;
  }
}



/* 8th secttion */
.health-section {
  padding: 40px 80px;
}

.health-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 4px solid #000;
  padding-top: 15px;
  margin-bottom: 30px;
}

.health-header h2 {
  font-size: 26px;
}

.more-link {
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.health-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 40px;
}

/* =====================
   FEATURED HEALTH CARD
   ===================== */
.health-featured-image {
  position: relative;
  overflow: hidden;
}

.health-featured-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.health-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: #fff;
  z-index: 2;
  background: linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.85) 35%,
      rgba(0,0,0,0.55) 60%,
      rgba(0,0,0,0.20) 80%,
      rgba(0,0,0,0.00) 100%
  );
}
.health-overlay h3 {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.health-overlay h3 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.health-overlay p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #eee;
}

.health-meta {
  font-size: 13px;
  display: flex;
  gap: 15px;
}

/* =====================
   HEALTH LIST (RIGHT)
   ===================== */
.health-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.health-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.health-item h4 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.health-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.health-item .author {
  font-size: 13px;
  color: #000;
}

/* =====================
   MOBILE
   ===================== */
@media (max-width: 768px) {

  .health-section {
    padding: 20px;
  }

  .health-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .health-featured-image img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .health-overlay h3 {
    font-size: 22px;
  }

  .health-list {
    grid-template-columns: 1fr;
  }
}



/* 9th section */
.travel-section {
  padding: 40px 80px;
}

.travel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 4px solid #000;
  padding-top: 15px;
  margin-bottom: 30px;
}

.travel-header h2 {
  font-size: 26px;
}

.more-link {
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.travel-card h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 12px 0;
}

.travel-card h3 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.travel-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.travel-card .author {
  font-size: 13px;
  color: #000;
}

.travel-image {
  position: relative;
}

.travel-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.play-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 14px;
  padding: 6px;
  border-radius: 50%;
}

.live {
  color: #f97316;
  font-weight: 700;
}

/* =====================
   MOBILE
   ===================== */
@media (max-width: 768px) {

  .travel-section {
    padding: 20px;
  }

  .travel-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .travel-image img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .travel-card h3 {
    font-size: 17px;
  }
}



/* 10th section */
.black-box1 {
  background-color: #000;
  padding: 0px 0px;
  max-width: 1300px;
  margin: 50px auto;
}

/* Flex Layout */
.box1-content {
  display: flex;
  align-items: center;
}
.box1-image{
    position: relative;
    overflow: hidden;
}
.box1-image img {
  width: 250px;
  height: auto;
  display: block;
}
.box1-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to right, transparent 45%, rgba(0,0,0,.75) 100%);
    pointer-events:none;
}
.box1-image::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(to right,
            rgba(0,0,0,0.0) 60%,
            rgba(0,0,0,0.15) 80%,
            rgba(0,0,0,0.55) 88%,
            rgba(0,0,0,0.85) 100%
        );

    pointer-events:none;
}

.box1-text {
  margin-left: 30px;
  color: #fff;
}

.box1-text h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.box1-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}


/* Section 2 - Circle Images with Titles */
.circle-section {
  margin-top: 10px;
  padding: 2px 0;
  text-align: center;
}

.circle-container {
  display: flex;
  /* justify-content: space-evenly; */
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.circle-item {
  text-align: center;
  margin: 10px;
}

.circle-image {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  object-fit: cover;
}

.circle-item h3 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-family: Helvetica,Arial, sans-serif;
}

/* =====================
   BLACK BOX 1 – MOBILE responsive
   ===================== */
@media (max-width: 768px) {

  .black-box1 {
    padding: 30px 20px;
  }

  /* Flex Layout */
  .box1-content {
    flex-direction: column; /* Stack vertically on mobile */
    align-items: flex-start;
  }

  /* Image Section */
  .box1-image img {
    width: 100%;
    max-width: auto;  /* Make image smaller on mobile */
    margin-bottom: 20px; /* Add space between image and text */
  }

  /* Text Section */
  .box1-text {
    margin-left: 0;
  }

  .box1-text h2 {
    font-size: 20px;
  }

  .box1-text p {
    font-size: 14px;
  }

  /* Section 2 - Circle Images with Titles */
  .circle-section {
    margin-top: 20px;
    padding: 0;
  }

  .circle-container {
    justify-content: center;
    gap: 15px;  /* More spacing between circle items */
  }

  .circle-item {
    width: 100px; /* Smaller circles */
    text-align: center;
  }

  .circle-image {
    width: 100%;
    max-width: 90px;  /* Smaller circle images */
    height: 90px;
  }

  .circle-item h3 {
    font-size: 1rem;
    color: black;
  }
  .circle-item h3 a {
    color: inherit;      /* takes the color from h3 */
    text-decoration: none;
}
}



/* 11th section */
.scroll-container {
  display: flex;
  justify-content: space-between;
  margin: 20px;
  padding: 15px 80px;
}

/* =====================
   LEFT COLUMN (STACK ARTICLES VERTICALLY)
   ===================== */
.left-column {
  width: 70%;                   /* Left column takes 70% of the width */
  overflow-y: auto;             /* Enables vertical scrolling */
  height: 100vh;                /* Full viewport height */
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}

.custom-article {
  margin-bottom: 20px;          /* Space between articles */
}

.article-content {
  display: flex;                /* Flexbox for left image, right text */
  gap: 15px;                    /* Space between image and text */
}

.article-content img {
  width: 30%;                   /* Image takes 30% width of article */
  height: auto;                 /* Maintain aspect ratio */
}

.article-text {
  flex: 1;                      /* Text takes remaining space */
}

.article-text h2,
.article-text h3 {
  margin-bottom: 10px;
}
.article-text h2 a,
.article-text h3 a {
  color: inherit;
  text-decoration: none;
}

.article-text p {
  margin-bottom: 0;             /* Remove space below paragraph */
}

/* =====================
   RIGHT COLUMN (TEXT & IMAGE)
   ===================== */
.right-column {
  width: 25%;                   /* Right column takes 25% of the width */
  padding: 20px;
}

.advertisement-box {
  margin-bottom: 20px;
  height: 340px;
  background-color: #f0f0f0;
  text-align: center;
}

.advertisement-box img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* RIGHT COLUMN ARTICLES (TEXT & IMAGE LAYOUT) */
.custom-right-article {
  display: flex;                /* Flexbox layout to place text and image horizontally */
  align-items: center;          /* Align items vertically in the center */
  margin-bottom: 20px;
}

.right-article-text {
  flex: 1;                       /* Text takes remaining space */
}

.right-article-text h2,
.right-article-text h3 {
  margin-bottom: 6px;
  font-size: 16px;
}
.right-article-text h2 a,
.right-article-text h3 a {
  color: inherit;
  text-decoration: none;
}

.right-article-text p {
  margin-bottom: 0;
  font-size: 14px;
  color: #555;
}

/* SMALL IMAGE ON THE RIGHT */
.custom-right-article .right-img {
  width: 60px;                  /* Set image width */
  height: 60px;                 /* Set image height */
  object-fit: cover;            /* Maintain aspect ratio */
  margin-left: 15px;            /* Space between text and image */
}
.left-column {
  overflow: scroll; /* Allows scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.left-column::-webkit-scrollbar {
  display: none; /* Hides the scrollbar in WebKit-based browsers (Chrome, Safari) */
}

/* =====================
   MOBILE – RESPONSIVENESS
   ===================== */

@media (max-width: 768px) {

  /* Container spacing equal */
  .scroll-container {
    flex-direction: column;
    padding: 15px 20px;
    margin: 0;
  }

  /* REMOVE ALL SCROLLING */
  .left-column {
    width: 100%;
    height: auto;
    overflow: visible !important;
  }

  .right-column {
    width: 100%;
    padding: 0; /* match left column */
    margin-top: 25px;
  }

  /* Equal spacing for both sides */
  .custom-article,
  .custom-right-article {
    margin-bottom: 20px;
  }
 .advertisement-box {
    width: 100%;
    height: auto;
  }

  /* Left article layout (text then image) */
  .article-content {
    flex-direction: column;
  }

  .article-content img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 6px;
  }
}



/* footer */
.site-footer {
  background: #ffffff;
  color: #090909;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo{
  font-size:32px;
  font-weight:800;

  text-decoration:none;
  color:#090909;
  display:inline-block;
}

.footer-logo:visited{
  color:#090909;
}

.footer-logo:hover{
  opacity:.85;
}

.footer-social a {
  color: #090909;
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  color: #070707;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #0b0b0b;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #0c0c0c;
}
.footer-bottom {
  text-align: left;
  padding-top: 0px;
  font-size: 12px;
  color: #080808;
  width: 87%;
  margin: 0 auto;
}

 /*footer responsive  */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom p {
  margin: 0;
  padding: 10px 0px;
  font-size: 14px;
}

  /* Grid becomes 2 columns */
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  /* About section spans full width */
  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-social a {
    margin: 0 10px;
  }
}



/* =======================
   AUTHOR SECTION STYLING
   ======================= */
.author-section {
  padding: 60px;
  /* background-color: #fff; */
  background-image: radial-gradient(#dcdcdc 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.author-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  max-width: 70%;
}

.author-header {
  display: flex;
  justify-content: space-between; /* Align name and follow button */
  align-items: center;
}

.author-name {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.follow-btn {
  background-color: #f97316;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.follow-btn:hover {
  background-color: #e66916;
}

.author-bio {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

.author-title {
  font-size: 18px;
  color: #f97316;
  margin-top: 10px;
}

/* =======================
   SOCIAL ICONS STYLING
   ======================= */
.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  font-size: 10px;
  color: #555;
  text-decoration: none;
}

.social-icon:hover {
  color: #f97316;
}

/* =======================
   MOBILE RESPONSIVENESS
   ======================= */
@media (max-width: 768px) {

  .author-container {
    flex-direction: column;  /* Stack content vertically on mobile */
    text-align: center;      /* Center-align text */
  }

  .author-info {
    align-items: center;     /* Center-align the author image and details */
  }

  .author-image {
    width: 120px;
    height: 120px;
  }

  .author-details {
    text-align: center;      /* Center the text */
  }

  .follow-btn {
    margin-left: 10px;       /* Add space between name and button */
  }

  .social-icons {
    justify-content: center; /* Center the social icons */
  }

  .social-icon {
    font-size: 16px;
  }
}



/* Category Heading Section */
.category-heading {
  background-image: radial-gradient(#dcdcdc 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  padding: 50px 80px;
  text-align: left;
}

.category-heading h1 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.category-heading h1 a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}


/* detail page */
.person-section {
  padding: 20px 80px;
}

.person-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative; /* Ensure the container allows sticky positioning */
}

/* First Column (Person Info) */
.first-column {
  flex: 0 0 70%;
  padding: 20px;
}

.person-name {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.person-bio-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.person-image {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
}

.person-details p {
  font-size: 16px;
  color: #555;
}
.person-details p a {
  color: inherit;      /* takes the color from h3 */
  text-decoration: none;
}

.bio-text {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 540;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.share-btn img {
  width: 20px;
  height: 20px;
}

.share-btn:hover {
  background-color: #f0f0f0;
}

.large-image img {
  width: 800px;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* Second Column - Sidebar (Sticky) */
.sidebar-column {
  position: -webkit-sticky; /* For Safari support */
  position: sticky;
  top: 20px; /* Keeps it at top of viewport when scrolling */
  align-self: start; /* Keeps it aligned to the start of the section */
  width: 300px; /* Fixed width for the sidebar */
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10; /* Keeps sidebar above the content */
}

.sidebar-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.sidebar-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sidebar-para {
  font-size: 14px;
  color: #555;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 20px;
}

.button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background-color: #f5f5f5;
}

/* Section Container for Two Columns */
.two-column-section {
  padding: 20px 10px;
}

.two-column-content {
  display: flex;
  /* justify-content: space-between; */
  gap: 20px;
  /* Ensure the content takes up the full width and aligns correctly */
}

/* Third Column (Post Buttons Vertically) - Sticky */
.third-column {
  position: -webkit-sticky; /* For Safari support */
  position: sticky;
  top: 20px; /* Keeps it at the top of the viewport when scrolling */
  flex: 0 0 10%; /* Adjust width as per your requirement (Here 25%) */
  min-width: 80px; /* Minimum width to make it wide enough */
  z-index: 9; /* Ensures it stays above other content */
  align-self: flex-start; /* Keeps the third column aligned to the top */
}

.post-buttons-vertical {
  display: flex;
  flex-direction: column; /* Stack the buttons vertically */
  gap: 10px;
}

.post {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post img {
  width: 20px;
  height: 20px;
}

.post:hover {
  background-color: #f0f0f0;
}

/* Fourth Column (Large Content Block) */
.fourth-column {
  flex: 0 0 84%; /* Adjust width as per your requirement (Here 75%) */
}

.content-block {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.block-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.block-para {
  font-size: 21px;
  color: #2d2c2c;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: 'Times New Roman', Times, serif;
  text-align: justify;
  text-justify: inter-word;
}

/* ARTICLE TYPOGRAPHY SYSTEM */
.block-para,
.block-para p,
.block-para span,
.block-para li,
.block-para ul,
.block-para ol,
.block-para strong,
.block-para em,
.block-para a,
.block-para blockquote {
    font-family: Georgia, "Times New Roman", Times, serif !important;
}



.block-image-container {
  width: 100%; /* Makes the container take up the full width */
  max-width: 800px; /* Optional: limits the max width of the image container */
  margin: 20px auto; /* Optional: center the container horizontally and add spacing */
}

.block-image-container img {
  display: block; /* Makes the image a block element, forcing it to take its own line */
  width: 100%; /* Ensures the image fills the container's width */
  height: auto; /* Keeps the aspect ratio intact */
  border-radius: 8px; /* Optional: rounded corners for the image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow around the image */
}

.quote-container {
  background-color: #ffffff; /* Light background color */
  border-left: 5px solid #4CAF50; /* Green border to the left of the quote */
  padding: 20px 30px; /* Add padding inside the container */
  margin: 20px 0; /* Add space above and below the quote */
  font-family: 'Times New Roman', Times, serif; /* Font for the quote */
  border-radius: 8px; /* Optional: rounded corners */
}

/* Quote Text */
.quote {
  font-size: 24px; /* Larger font size for the quote */
  font-style: italic; /* Make the quote italic */
  color: #555; /* Dark grey text color */
  margin: 0; /* Remove default margin */
  line-height: 1.6; /* Adjust line spacing for readability */
  quotes: "“" "”" "‘" "’"; /* Custom quotation marks */
}

/* From Styling */
.from {
  text-align: right; /* Align the 'From' text to the right */
  font-size: 18px; /* Slightly smaller font size */
  color: #333; /* Darker grey text for the source */
  margin-top: 10px; /* Add space between quote and 'From' text */
  font-weight: bold; /* Make 'From' bold */
}

.subheading-container {
  margin-bottom: 20px; /* Space below the container */

}

/* Subheading (small heading) */
.subheading {
  font-size: 24px; /* Adjust size for subheading */
  font-weight: bold; /* Make it bold */
  color: #333; /* Dark text color */
  margin-bottom: 10px; /* Add some space below the heading */

}

/* List of Subpoints */
.subpoints-list {
  list-style-type: none; /* Remove default bullet points */
  padding-left: 0; /* Remove left padding */
}

/* List Item (Subpoint) Style */
.subpoints-list li {
  font-size: 18px; /* Adjust font size for subpoints */
  color: #555; /* Slightly lighter color for the subpoints */
  margin-bottom: 10px; /* Add space between each list item */
  position: relative; /* Allow positioning for custom markers */
  padding-left: 25px; /* Add space for the custom marker */
}

/* Custom Marker for the List (Arrow) */
.subpoints-list li::before {
  content: "➤"; /* Unicode for arrow symbol */
  position: absolute;
  left: 0; /* Place the arrow at the start of the list item */
  top: 50%;
  transform: translateY(-50%); /* Center the arrow vertically */
  color: #4CAF50; /* Green color for the arrow */
  font-size: 20px; /* Adjust size of the arrow */
}

/* Container for the submit section */
.submit-container {
  display: flex;
  justify-content: space-between; /* Align the left and right sections with space between */
  align-items: center; /* Vertically center the items */
  padding: 20px; /* Padding around the container */
  width: 100%; /* Full width */
}

/* Left side with image and text */
.submit-left {
  display: flex;
  align-items: center; /* Vertically align image and text */
}

.submit-image {
  width: 50px; /* Image size */
  height: 50px; /* Image size */
  margin-right: 15px; /* Space between image and text */
  border-radius: 50%; /* Make the image circular (optional) */
}

.submit-text {
  font-size: 18px; /* Adjust the font size */
  font-weight: bold;
  color: #333; /* Dark text color */
}

/* Right side with icons */
.submit-right {
  display: flex;
  justify-content: flex-end; /* Align icons to the right */
  align-items: center; /* Vertically align icons */
  gap: 15px; /* Space between icons */
}

.icon {
  width: 30px; /* Set width for each icon */
  height: 30px; /* Set height for each icon */
  cursor: pointer; /* Change cursor to pointer on hover */
}

.icon:hover {
  opacity: 0.7; /* Optional: Add hover effect */
}

/* Dotted line above and below */
.horizontal-line {
  width: 100%; /* Full width */
  border-top: 2px dotted #ccc; /* Dotted line */
  margin-top: 10px; /* Space between content and line */
}



/* Comment & Advertisement Section */
.comment-ad-section {
  display: flex;
  gap: 30px;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 30px 80px;
}

/* Left Column - Leave a Comment */
.comment-column {
  flex: 3;
  padding: 20px;
  /* background-color: #f9f9f9; */
  border-radius: 8px;
}

.comment-column h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.info-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-form label {
  font-size: 16px;
  font-weight: 600;
}

.comment-form textarea {
  padding: 10px;
  font-size: 14px;
  resize: vertical;
  min-height: 150px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.input-fields {
  display: flex;
  gap: 15px;
}

.input-fields input {
  padding: 10px;
  font-size: 14px;
  width: 48%;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.save-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.save-info input {
  width: auto;
}

.save-info label {
  font-size: 14px;
  color: #555;
}

.submit-btn {
  padding: 10px 15px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #555;
}

/* Right Column - Advertisement */
.ad-column {
  flex: 1;
  position: sticky;
  top: 30px;
}

.ad-box {
    border: 1px solid black;
    padding: 20px;
    width: 300px;
    text-align: center;
    background-color: #fff;
}

.ad-box h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ad-box p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.ad-box .ad-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.ad-box .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: orange;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
}

.ad-box .btn:hover {
    background-color: darkorange;
}

/* mobile responsive */
@media only screen and (max-width: 768px) {
  /* General Padding Adjustments */
  .person-section {
    padding: 20px 15px;
  }

  .person-content {
    flex-direction: column;
    gap: 15px;
  }

  /* First Column (Person Info) */
  .first-column {
    flex: 0 0 100%; /* Full width for mobile */
    padding: 15px;
  }

  .person-name {
    font-size: 28px; /* Smaller font size for mobile */
  }

  .person-bio-container {
    display: block; /* Stack the image and details vertically */
    gap: 10px;
  }

  .person-image {
    width: 50px;
    height: 50px;
  }

  .bio-text {
    font-size: 16px;
  }

  .share-buttons {
    justify-content: center;
  }

  .large-image img {
    width: 100%; /* Full width of the container */
  }

  /* Sidebar Column */
  .sidebar-column {
    position: relative; /* No sticky positioning on small screens */
    width: 100%; /* Full width on small screens */
    box-shadow: none; /* Remove box-shadow for mobile */
    margin-top: 20px;
  }

  /* Button Group (Sidebar) */
  .button-group {
    grid-template-columns: 1fr; /* Stack the buttons vertically */
  }

  /* Second Column - Sidebar (Sticky) */
  .third-column {
    display: none; /* Hide third column (post buttons) on mobile */
  }

  /* Fourth Column (Content Block) */
  .fourth-column {
    flex: 0 0 100%; /* Full width on mobile */
  }

  .content-block {
    margin-bottom: 30px; /* Reduce bottom margin for mobile */
  }

  .block-title {
    font-size: 26px; /* Smaller font size for mobile */
  }

  .block-para {
    font-size: 18px;
  }

  .block-image-container img {
    width: 100%; /* Ensure images are responsive */
  }

  /* Quote Section */
  .quote-container {
    padding: 15px 20px;
  }

  .quote {
    font-size: 20px;
  }

  .from {
    font-size: 16px;
  }

  /* Subheading and List Adjustments */
  .subheading {
    font-size: 20px;
  }

  .subpoints-list li {
    font-size: 16px;
  }

  /* Submit Section */
  .submit-container {
    flex-direction: column;
    gap: 20px;
  }

  .submit-left {
    width: 100%; /* Full width on mobile */
    margin-bottom: 15px;
  }

  .submit-text {
    font-size: 16px;
  }

  .submit-right {
    width: 100%; /* Full width on mobile */
    justify-content: center;
    gap: 10px;
  }

  /* Comment & Advertisement Section */
  .comment-ad-section {
    flex-direction: column; /* Stack comment and ad sections */
    padding: 20px;
  }

  .comment-column {
    flex: 1; /* Full width for comment section */
    margin-bottom: 20px;
  }

  .ad-column {
    flex: 1; /* Full width for ad section */
    margin-bottom: 20px;
  }

  /* Ad Box Styling */
  .ad-box {
    width: 100%; /* Full width for ad box */
    padding: 15px;
  }

  .ad-box .btn {
    width: 100%; /* Full width for button */
  }
}



/* MAIN CONTAINER */
.black-box1{
    background:#000;
    color:#fff;
    margin:auto;
}

.box1-content{
    display:flex;
    align-items:stretch;
    min-height:420px;
}

.box1-image{
    position:relative;
    width:50%;
    min-height:420px;
}

.box1-image img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* category badge */
.hero-category{
    position:absolute;
    bottom:0px;
    left:0px;
    background:#f5a623;
    color:#000;
    padding:7px 14px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

/* TEXT SIDE */
.box1-text{
    width:50%;
    padding:55px 55px 55px 60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* TITLE */
.hero-title{
    font-size:38px;
    line-height:1.25;
    margin-bottom:15px;
}

.hero-title a{
    color:#fff;
    text-decoration:none;
}

/* LIVE LABEL */
.live-label{
    color:#ff5a3c;
    font-weight:800;
}

/* DESCRIPTION */
.hero-desc{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.7;
    margin-top:12px;
    max-width:560px;
}

/* META */
/* HERO META LAYOUT */
.hero-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:14px;
}

/* left side (author + readtime) */
.hero-meta-left{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

/* author styling */
.hero-meta .author{
    font-size:14px;
    color:#ffffff;
}

.hero-meta .author a{
    color:#ffffff;
    text-decoration:none;
    font-weight:500;
}

.hero-meta .author a:hover{
    color:#ffffff;
}

/* read time */
.hero-meta .read-time{
    font-size:13px;
    color:#777;
}

/* special hero bookmark */
.hero-bookmark{
    margin-left:20px;
    color: #ffffff;
}

.hero-meta a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}
.article-content{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.article-thumb{
    display:block;
    flex-shrink:0;
    width:220px;
}

.article-thumb img{
    width:100%;
    height:140px;
    object-fit:cover;
    display:block;
}
.article-text{
    flex:1;
}
/* row under article text */
.article-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:10px;
}

/* author text */
.article-meta .meta{
    font-size:14px;
    color:#555;
}

.article-meta .meta a{
    color:#111;
    text-decoration:none;
    font-weight:500;
}

.article-meta .meta a:hover{
    color:#e74c3c;
}

/* ================= MOBILE VERSION ================= */

@media (max-width: 768px){

    .box1-content{
        flex-direction:column;
        min-height:auto;
    }

    .box1-image{
        width:100%;
        height:260px;
        position:relative;
    }

    .box1-image img{
        position:absolute;
        inset:0;
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .box1-text{
        width:100%;
        padding:25px 20px 28px 20px;
    }

    .hero-title{
        font-size:24px;
        line-height:1.3;
    }

    .hero-desc{
        font-size:14px;
    }

    .hero-meta{
        font-size:13px;
    }
}



/* ABOUT PAGE */
.about-section {
    width: 90%;
    margin: 60px auto;
    padding: 5px 20px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #ef4516;
    /* color: #131F49; */
}

.about-subtitle {
    text-align: center;
    font-size: 18px;
    color: #444;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.about-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-image-box img {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
}

.about-text-box {
    flex: 1;

}

.about-text-box h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #ef4516;
}

.about-text-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    word-spacing: -0.1rem;
}

/* Mission Section */
.mission-section {
    background: #F6F6F6;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.mission-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #131F49;
}

.mission-section p {
    color: #444;
    line-height: 1.6;
}

/* Team Section */
.team-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #131F49;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    text-align: center;
    width: 220px;
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 20px;
    color: #131F49;
}

.team-card p {
    color: #777;
    font-size: 14px;
}

/* Tablet & Mobile (768px and below) */
@media (max-width: 768px) {

    .about-section {
        width: 95%;
        margin: 40px auto;
        padding: 1px 10px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* Stack image and text vertically */
    .about-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .about-image-box img {
        max-width: 180px;
    }

    .about-text-box {
        text-align: center;
    }

    .about-text-box h2 {
        font-size: 24px;
    }

    .about-text-box p {
        font-size: 15px;
        text-align: justify;
    }

    /* Mission Section */
    .mission-section {
        padding: 25px 15px;
    }

    .mission-section h2 {
        font-size: 24px;
        text-align: center;
    }

    .mission-section p {
        font-size: 15px;
        text-align: justify;
    }

    /* Team Section */
    .team-section h2 {
        font-size: 24px;
    }

    .team-grid {
        gap: 20px;
    }

    .team-card {
        width: 45%;
    }

    .team-card img {
        width: 100px;
        height: 100px;
    }

    .team-card h3 {
        font-size: 18px;
    }

    .team-card p {
        font-size: 13px;
    }
}



/* privacy policy page */
.privacy-container {
    /* max-width: 820px; */
    margin: 50px auto;
    padding: 0 80px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #222;
}

.privacy-title {
    font-size: 45px;
    font-weight: 760;
    margin-bottom: 10px;
    text-align: left;
}

.policy-updated {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

.privacy-container h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111;
}

.privacy-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.privacy-container p {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.privacy-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.privacy-container ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-container a {
    color: #005ce6;
    text-decoration: underline;
}

.privacy-container a:hover {
    color: #003c99;
}

.privacy-download-btn {
    margin-top: 40px;
    display: inline-block;
    padding: 12px 22px;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s;
}

.privacy-download-btn:hover {
    background-color: #333;
}

.policy-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

/* responsive */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 30px;
    }

    .privacy-container h2 {
        font-size: 22px;
    }

    .privacy-container h3 {
        font-size: 18px;
    }

    .privacy-container {
        padding: 0 15px;
    }
}
/* make navbar icons positioning reference */
.search-wrapper{
    position:relative;
    display:inline-block;
}

.search-dropdown{
    position:absolute;
    top:45px;
    right:0;
    width:320px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    padding:10px;
    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;
    transition:all .25s ease;
    z-index:9999;
    border-radius:8px;
}
/* visible state */
.search-dropdown.active{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

/* input layout */
.search-inner{
    display:flex;
    align-items:center;
    background:#f3f3f3;
    padding:6px 8px;
    height:40px;
    gap:10px;
}

/* input */
.search-inner input{
    flex:1;
    min-width:0;
    border:none;
    background:transparent;
    outline:none;
    font-size:14px;
}



.search-inner button{
    border:none;
    background:black;
    color:white;
    width:30px;
    height:30px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.search-icon{
    width:20px;
    height:20px;
    cursor:pointer;
    object-fit:contain;
    transition:transform .2s ease, opacity .2s ease;
}

/* Search header */
.search-header{
    text-align:center;
    padding:50px 0 30px;
}

.search-title span{
    color:#e74c3c;
}

.search-count{
    margin-top:8px;
    color:#666;
}

/* search again box */
.search-again-form{
    margin-top:22px;
}

.search-again-box{
    width:520px;
    max-width:92%;
    margin:auto;
    display:flex;
    align-items:center;
    border:2px solid #222;
    padding:12px 14px;
    gap:12px;
    background:#fff;
}

.search-again-box input{
    flex:1;
    border:none;
    outline:none;
    font-size:16px;
}

.search-again-box button{
    background:#000;
    color:#fff;
    border:none;
    padding:9px 18px;
    cursor:pointer;
}

/* spacing */
.search-result-section{
    margin-top:40px;
}

/* empty state */
.no-results{
    grid-column:1 / -1;
    text-align:center;
    padding:70px 0;
}

.no-results h3{
    font-size:26px;
    margin-bottom:10px;
}

/* PAGINATION CONTAINER */
.pagination-wrapper{
    margin:60px 0;
    display:flex;
    justify-content:center;
}

/* remove default list styling */
.pagination{
    display:flex;
    align-items:center;
    gap:8px;
    list-style:none;
    padding:0;
    margin:0;
}

/* each page item */
.pagination li{
    display:inline-block;
}

/* page links */
.pagination li a,
.pagination li span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:36px;
    height:36px;
    padding:0 12px;
    border:1px solid #ddd;
    background:#fff;
    color:#333;
    text-decoration:none;
    font-size:14px;
    transition:all .2s ease;
}

/* hover */
.pagination li a:hover{
    background:#000;
    color:#fff;
    border-color:#000;
}

/* ACTIVE PAGE */
.pagination li.active span{
    background:#e74c3c;
    color:#fff;
    border-color:#e74c3c;
    font-weight:600;
}

/* DISABLED (Prev/Next when unavailable) */
.pagination li.disabled span{
    color:#aaa;
    border-color:#eee;
    background:#f7f7f7;
    cursor:not-allowed;
}

/* Prev / Next buttons */
.pagination li:first-child a,
.pagination li:last-child a{
    padding:0 14px;
    font-weight:500;
}

/* responsive */
@media(max-width:900px){
    .four-column-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:500px){
    .four-column-container{
        grid-template-columns:1fr;
    }
}
/* Bookmark button container */
.bookmark-btn{
    border:none;
    background:transparent;
    cursor:pointer;
    padding:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:background .2s ease, transform .15s ease;
}

/* icon size */
.bookmark-icon{
    width:18px;
    height:18px;
    stroke:#777;
    transition:all .2s ease;
}

/* hover */
.bookmark-btn:hover{
    background:#f0f0f0;
}

.bookmark-btn:hover .bookmark-icon{
    stroke:#e74c3c;
}

/* click feedback */
.bookmark-btn:active{
    transform:scale(0.9);
}

/* saved state (we'll toggle later with JS) */
.bookmark-btn.saved .bookmark-icon{
    fill:#000000;
    stroke:#000000;
}
/* author + bookmark row */
.travel-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:12px;
}

/* author text */
.travel-meta .meta{
    font-size:14px;
    color:#555;
}

.travel-meta .meta a{
    text-decoration:none;
    color:#111;
}

.travel-meta .meta a:hover{
    color:#e74c3c;
}
/* author + bookmark row */
.meta-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:10px;
}

/* author text */
.meta{
    font-size:14px;
    color:#555;
}

.meta a{
    color:#111;
    text-decoration:none;
}

.meta a:hover{
    color:#e74c3c;
}

/* prevent icon shrinking */
.bookmark-btn{
    flex-shrink:0;
}
.main-article{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.main-article img{
    width:320px;
    height:220px;
    object-fit:cover;
}
.main-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:14px;
}
.column{
    border-top:1px solid #eee;
    padding-top:12px;
}

.side-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:8px;
}
.meta{
    font-size:13px;
    color:#666;
}

.meta a{
    color:#111;
    text-decoration:none;
    font-weight:500;
}

.meta a:hover{
    color:#e74c3c;
}
/* =========================
   GLOBAL AUTHOR SYSTEM
   ========================= */

.article-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:10px;
}

/* text */
.article-author{
    font-size:14px;
    color:#666;
    line-height:1.4;
}
.article-author1{
    font-size:14px;
    color:#fffefe;
    line-height:1.4;
}

/* the word "By" */
.article-author::before{
    content:"By ";
    color:#777;
    font-weight:400;
}

/* author link */
.article-author a{
    color:#111 !important;
    text-decoration:none !important;
    font-weight:600;
}

/* hover */
.article-author a:hover{
    color:#e74c3c !important;
}

/* prevent parent styles from hijacking */
.headline a,
.travel-card a,
.featured-article a,
.opinion-card a,
.hero-title a,
.text-article a{
    text-decoration:none;
}

/* bookmark alignment */
.article-meta .bookmark-btn{
    margin-left:auto;
}

.health-overlay .article-author{
    color:#ffffff !important;
}

.health-overlay .article-author::before{
    color:#dddddd;
}

.health-overlay .article-author a{
    color:#ffffff !important;
}

.health-overlay .article-author a:hover{
    color:#ffd166 !important;
}

/* bookmark inside overlay */
.health-overlay .bookmark-icon{
    stroke:#ffffff;
}

.health-overlay .bookmark-btn.saved .bookmark-icon{
    fill:#ffffff;
    stroke:#ffffff;
}

/* hover effect (visible on dark) */
.health-overlay .bookmark-btn:hover{
    background:rgba(252, 251, 251, 0.493);
}
.health-overlay h3{
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.health-overlay p{
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.health-overlay .article-meta{
    margin-top:14px;
}
.myfeed-section .recommend-header{
    border-top: none;
}
.myfeed-section .four-column-container{
    border-top: 4px solid #000;
    margin-bottom: 25px;
}
.myfeed-section .recommend-card{
    margin-top: 20px;
}
.share-btn,
.post {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.share-btn img,
.post img {
    width: 22px;
    height: 22px;
}
.tech-world .tag{
    bottom: -10px;
}

.visually-hidden{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}
