/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== BASE ========== */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #111;
}

/* ========== HEADER ========== */
.main-header {
  background: #fff;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* ========== GRID LAYOUT ========== */
.header-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
  align-items: stretch;
  padding: 16px 30px 16px 30px;
  box-sizing: border-box;
  width: 100%;
}

/* ========== LOGO (LEFT – SPANS ROWS) ========== */
.logo {
  grid-row: 1 / 3;
  background: #e10600;
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo h1,
.logo .logo-text {
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0;
  font-weight: bold;
}

.logo span {
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.9;
}

/* ========== TOP BAR (MIDDLE / TOP) ========== */
.top-bar {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 20px 8px 0;
}

.top-left {
  display: flex;
  gap: 16px;
  color: #444;
}

.top-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-right a {
  text-decoration: none;
  color: #111;
}

.search-box {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 13px;
}

/* ========== CENTER AD ========== */
.center-ad {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  display: flex;
  align-items: stretch;
  border: 1px solid #e5e5e5;
  background: #fff;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.ad-left {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.ad-left strong {
  font-size: 26px;
  font-weight: 900;
  white-space: nowrap;
}

.ad-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #111;
}

.ad-right {
  position: relative;
  width: 180px;
  background: #e10600;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.ad-right button {
  background: #fff;
  color: #111;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}

/* ========== SIDE CARD ========== */
.side-card {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.side-card .label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e10600;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: bold;
}

.side-card p {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-size: 14px;
  line-height: 1.3;
}

/* ========== CATEGORY BAR ========== */
.category-bar {
  background: #fff;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  padding: 14px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-list {
  list-style: none;
  display: flex;
  gap: 32px;
}

.category-list a {
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}

.category-list a:hover {
  color: #e10600;
}

.hot-item {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #111;
  cursor: pointer;
}

.hot-item span {
  color: red;
  margin-left: 4px;
}

/* =====================================================
   HIDE MOBILE ELEMENTS BY DEFAULT (DESKTOP)
   ===================================================== */
.mobile-header,
.mobile-menu,
.mobile-overlay {
  display: none;
}

/* =====================================================
   MOBILE ONLY STYLES
   ===================================================== */
@media (max-width: 768px) {

  .main-header,
  .category-bar {
    display: none;
  }

  .mobile-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #e10600;
    z-index: 1001;
    align-items: center;
    justify-content: center;
  }

  .menu-btn {
    position: absolute;
    left: 15px;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
  }

  .mobile-logo {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu ul {
    list-style: none;
  }

  .mobile-menu li {
    border-bottom: 1px solid #eee;
  }

  .mobile-menu a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-menu.show {
    transform: translateX(0);
  }

  .mobile-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  body {
    padding-top: 50px;
  }
}

/* ===== MOBILE MENU HEADER ===== */
.mobile-menu-header {
  height: 50px;
  padding: 0 15px;
  background: #e10600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-header span {
  font-size: 16px;
  font-weight: 700;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* ================= FOOTER ================= */
.site-footer {
  background: radial-gradient(circle at top, #2a2a2a, #000);
  color: #fff;
  padding: 60px 90px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-column h3 {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul a {
  color: inherit;
  text-decoration: none;
}

.footer-column li {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #ddd;
}

.newsletter p {
  font-size: 13px;
  margin-bottom: 16px;
  color: #ccc;
}

.newsletter input {
  width: 100%;
  padding: 12px;
  border: none;
  margin-bottom: 10px;
}

.newsletter button {
  width: 100%;
  padding: 12px;
  background: #e10600;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.footer-divider {
  margin: 50px 0 30px;
  height: 4px;
  background: rgba(255,255,255,0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo strong {
  display: block;
  background: #e10600;
  padding: 20px 24px;
  font-size: 28px;
}

.footer-logo span {
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: #e10600;
  border-color: #e10600;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-links a {
  margin-left: 20px;
  font-size: 13px;
  color: #ccc;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 40px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* ================= FEATURED SECTION ================= */
.featured-section {
  padding: 40px 90px;
  background: #fff;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.post-card {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card.large {
  grid-row: 1 / 3;
}

.post-card.large img {
  height: 500px;
}

.post-content {
  padding: 16px;
}

.post-category {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #e10600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.post-category.red {
  color: #e10600;
}

.post-content h2 {
  font-size: 20px;
  line-height: 1.3;
}

.post-content h2 a {
  color: inherit;
  text-decoration: none;
}

.post-content h3 {
  font-size: 16px;
  line-height: 1.4;
}

.post-content h3 a {
  color: inherit;
  text-decoration: none;
}

.post-card.horizontal {
  flex-direction: row;
  grid-column: span 2;
  grid-row: 2;
  height: 220px;
  overflow: hidden;
  display: flex;
}

.post-card-image-link {
  width: 50%;
  height: 100%;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.post-card.horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card.horizontal .post-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}

/* ================= TRENDING BAR ================= */
.trending-bar {
  background: #fff;
  padding: 20px 140px;
}

.trending-inner {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border: 1px solid #eee;
}

.trending-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trending-label {
  background: #e10600;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  text-transform: uppercase;
}

.trending-text {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 700px;
}

.trending-text a,
.trending-text a:link,
.trending-text a:visited,
.trending-text a:hover,
.trending-text a:active {
  color: #000 !important;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  cursor: default;
}

.trending-nav {
  display: flex;
  gap: 6px;
}

.trending-nav button {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  color: #999;
}

.trending-nav button:hover {
  background: #f0f0f0;
}

/* ================= FIRST ROW ================= */
.first-row {
  padding: 40px 90px;
  background-color: #fff;
}

.row-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.column {
  background: #fff;
  padding: 16px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.first-column h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e10600;
  margin-bottom: 10px;
}

.first-column img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}

.first-column p {
  font-size: 15px;
  color: #141313;
  text-align: center;
  font-weight: 700;
}

.first-column p a {
  color: inherit;
  text-decoration: none;
}

.second-third-column {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.second-third-column img {
  width: 100%;
  height: 300%;
  object-fit: cover;
  display: block;
}

.second-third-column .overlay {
  position: absolute;
  top: 80%;
  left: 40%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 10px;
  text-align: center;
  width: 80%;
}

.overlay h3 {
  font-size: 16px;
  color: #e10600;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
}

.overlay p {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  text-align: left;
  text-transform: uppercase;
}

.overlay p a {
  color: inherit;
  text-decoration: none;
}

/* ================= 4TH COLUMN - AD BANNER ================= */
.ad-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 20px 16px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.ad-banner .ad-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
}

.strong-text {
  font-size: 24px;
  font-weight: 700;
  color: #e10600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.description-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.cta-button {
  background: #e10600;
  color: #fff;
  padding: 12px 25px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 20px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #e10600;
  transform: skewX(45deg);
  z-index: -1;
}

.cta-button:hover {
  background: #e10600;
}

.cta-button:focus {
  outline: none;
}

/* ================= MUST READ COLUMN ================= */
.must-read-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  padding: 10px 16px;
  border: 1px solid #eee;
  position: relative;
}

.must-read-column h3,
.must-read-column h2 {
  font-size: 24px;
  font-weight: 700;
  color: #e10600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.must-read-box {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  padding: 15px;
}

.must-read-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.must-read-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.must-read-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 8px;
}

.must-read-text p {
  font-size: 10px;
  font-weight: 600;
  color: #444;
  line-height: 1.4;
}

.must-read-text p a {
  color: inherit;
  text-decoration: none;
}

/* ================= STAY IN TOUCH COLUMN ================= */
.stay-in-touch-column {
  background-color: #a8d8d8;
  padding: 30px 20px;
  border-radius: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stay-in-touch-column h3,
.stay-in-touch-column h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 29px;
  text-transform: uppercase;
}

.stay-in-touch-column p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.email-input {
  width: 80%;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 40px;
}

.sign-up-button {
  background-color: #e10600;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 19px 25px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.sign-up-button:hover {
  background-color: #e10600;
}

/* ================= CATEGORY CARDS ================= */
.category-cards {
  padding: 40px 90px;
}

.cards-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.category-column {
  flex: 1;
  text-align: center;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.category-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
  text-transform: uppercase;
  color: #111;
  margin: 0;
}

.category-header h3 a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.category-line {
  width: 240px;
  height: 4px;
  background-color: #eee;
}

.category-card {
  background: #fff;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.category-card h3 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  margin: 0;
  text-transform: uppercase;
  z-index: 1;
}

.category-card h3 a {
  color: inherit;
  text-decoration: none;
}

/* ================= LATEST ARTICLES ================= */
.latest-articles {
  padding: 40px 90px;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 20px;
}

.heading-line {
  height: 4px;
  flex-grow: 1;
  background-color: #eee;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.article-card {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 23%;
  box-sizing: border-box;
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding-top: 16px;
}

.article-category {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #e10600;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-left: 8px;
}

.article-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-left: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.article-content h3 a {
  color: inherit;
  text-decoration: none;
}

/* ===================== CATEGORY NAVIGATION ===================== */
.category-navigation {
  padding: 20px 90px;
  background-color: #fff;
}

.breadcrumb {
  font-size: 14px;
  color: #e10600;
}

.breadcrumb a {
  text-decoration: none;
  color: #e10600;
  font-weight: bold;
}

.breadcrumb span {
  color: #333;
}

.category-navigation .breadcrumb {
  border-bottom: 4px solid #eee;
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.category-title {
  font-size: 36px;
  font-weight: bold;
  color: #111;
}

.category-links {
  margin-top: 20px;
}

.category-link {
  display: inline-block;
  background-color: #e10600;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.category-link:hover {
  background-color: #e10600;
}

/* ===================== MODELS LIST ===================== */
.models-list-section {
  background: #fff;
  padding: 16px;
  border: 1px solid #eee;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.models-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.models-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.models-name {
  font-size: 16px;
  color: #111;
  font-weight: 600;
}

.models-name a {
  color: inherit;
  text-decoration: none;
}

.models-count {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

/* ===================== DETAIL PAGE ===================== */
.detail-page {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  padding: 30px 90px;
  background-color: #fff;
}

.left-column {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
}

.post-date {
  font-size: 16px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.author-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-name {
  font-size: 16px;
  font-weight: bold;
  color: #e10600;
}

.author-name a {
  color: inherit;
  text-decoration: none;
}

.social-share {
  display: flex;
  gap: 10px;
}

.social-btn {
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.social-btn:hover {
  background-color: #e10600;
}

.second-row {
  margin-top: 40px;
}

.post-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
  margin-bottom: 10px;
}

.post-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.post-info {
  padding-top: 10px;
}

.post-title {
  font-size: 16px;
  font-weight: bold;
  color: #111;
}

.post-title a {
  color: inherit;
  text-decoration: none;
}

/* ===================== SECOND COLUMN (MAIN CONTENT) ===================== */
.main-content {
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.article-thumbnail {
  margin-bottom: 20px;
}

.article-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.social-share {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
}

.social-btn {
  background-color: #fff;
  padding: 8px 12px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  background-color: #e10600;
}

.article-body {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quote-section {
  background-color: #f4f4f4;
  padding: 15px;
  border-left: 5px solid #e10600;
  margin-top: 30px;
  margin-bottom: 30px;
}

blockquote {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin: 0;
}

/* ===================== THIRD COLUMN ===================== */
.right-column {
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
}

/* ===================== AUTHOR PAGE ===================== */
.author-header-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 4px solid #eee;
  margin-bottom: 10px;
}

.author-photo-box img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.author-kicker {
  font-size: 13px;
  font-weight: 700;
  color: #e10600;
  text-transform: uppercase;
}

.author-fullname {
  font-size: 36px;
  font-weight: 900;
  margin: 6px 0 10px;
  color: #111;
}

.author-bio-line {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  line-height: 1.6;
}

.author-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: start;
}

.author-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.author-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===================== PAGINATION ===================== */
.author-pagination-wrap {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pagination-info {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.gossip-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pagination-btn:hover:not(.disabled):not(.pagination-active) {
  background: #f5f5f5;
  border-color: #e10600;
  color: #e10600;
}

.pagination-active {
  background: #e10600;
  border-color: #e10600;
  color: #fff !important;
  cursor: default;
}

.pagination-prev,
.pagination-next {
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 0 16px;
}

.pagination-dots {
  border: none;
  background: transparent;
  color: #aaa;
  cursor: default;
  min-width: 24px;
  padding: 0 4px;
}

.pagination-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===================== MISC ===================== */
.logo-text {
  font-size: 18px;
}

.site-logo {
  display: block;
  margin: 0 auto;
  height: 60px;
  width: auto;
}

.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.read-now-wrap {
  position: relative;
  display: inline-block;
}

.read-now-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px 20px;
  width: 280px;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.read-now-wrap.open .read-now-dropdown {
  display: block;
}

.rn-title {
  font-size: 15px;
  font-weight: 700;
  color: #c0392b;
  margin: 0 0 6px;
}

.rn-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ===============================
   ABOUT PAGE STYLES
================================= */
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #222;
  line-height: 1.7;
}

.about-hero-block {
  text-align: center;
  margin-bottom: 50px;
}

.about-hero-block h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero-block p {
  font-size: 18px;
  color: #555;
}

.about-intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-intro-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-intro-text p {
  margin-bottom: 15px;
  color: #444;
}

.about-intro-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.about-stats-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.stat-box {
  background: #f8f8f8;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  background: #f1f1f1;
}

.stat-box h3 {
  font-size: 28px;
  color: #c0392b;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #666;
}

.about-team-block {
  margin-bottom: 60px;
  text-align: center;
}

.about-team-block h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
  width: 100%;
  max-width: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-card span {
  font-size: 14px;
  color: #777;
}

.about-cta-block {
  text-align: center;
  background: #c0392b;
  color: #fff;
  padding: 40px 20px;
  border-radius: 12px;
}

.about-cta-block h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.about-cta-block p {
  margin-bottom: 20px;
}

.about-cta-block button {
  background: #fff;
  color: #c0392b;
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.about-cta-block button:hover {
  background: #222;
  color: #fff;
}

/* =================================================================
   MOBILE FIXES — ALL SECTIONS
   ================================================================= */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    padding-top: 50px !important;
  }

  img {
    max-width: 100% !important;
    height: auto;
  }

  .main-header,
  .category-bar {
    display: none !important;
  }

  .mobile-header {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 50px !important;
    background: #e10600 !important;
    z-index: 1001 !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .menu-btn {
    position: absolute !important;
    left: 15px !important;
    background: none !important;
    border: none !important;
    font-size: 26px !important;
    color: #fff !important;
    cursor: pointer !important;
  }

  .mobile-logo {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
  }

  .mobile-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 260px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 1002 !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease !important;
  }

  .mobile-menu.show {
    transform: translateX(0) !important;
  }

  .mobile-overlay {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.4) !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
  }

  .mobile-overlay.show {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* ── FEATURED ── */
  .featured-section {
    padding: 10px !important;
  }

  .featured-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .post-card {
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .post-card.large {
    grid-row: auto !important;
  }

  .post-card.large img {
    height: 220px !important;
  }

  .post-card img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
  }

  .post-card.horizontal {
    flex-direction: column !important;
    grid-column: unset !important;
    grid-row: unset !important;
    height: auto !important;
    overflow: visible !important;
    width: 100% !important;
  }

  .post-card-image-link {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .post-card.horizontal img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
  }

  .post-card.horizontal .post-content {
    width: 100% !important;
    padding: 12px !important;
  }

  .post-content {
    padding: 12px !important;
  }

  .post-content h2 {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .post-content h3 {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  /* ── TRENDING ── */
  .trending-bar {
    padding: 10px 12px !important;
  }

  .trending-inner {
    padding: 10px 12px !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
  }

  .trending-left {
    flex: 1 !important;
    min-width: 0 !important;
    gap: 8px !important;
  }

  .trending-label {
    flex-shrink: 0 !important;
    font-size: 10px !important;
    padding: 4px 7px !important;
    white-space: nowrap !important;
  }

  .trending-text {
    font-size: 13px !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    max-width: 100% !important;
    overflow: visible !important;
    text-overflow: unset !important;
    color: #000;
  }

  .trending-nav {
    flex-shrink: 0 !important;
    margin-left: 8px !important;
  }

  .trending-nav button {
    width: 26px !important;
    height: 26px !important;
    font-size: 14px !important;
  }

  /* ── MAIN GRID ── */
  .first-row {
    padding: 10px !important;
  }

  .row-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    grid-template-columns: unset !important;
  }

  .column {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px !important;
    border: 1px solid #eee !important;
    box-sizing: border-box !important;
  }

  .first-column img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
  }

  .first-column h3 {
    font-size: 15px !important;
  }

  .first-column p {
    font-size: 13px !important;
  }

  .second-third-column {
    padding: 0 !important;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
    position: relative !important;
  }

  .second-third-column img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
    position: static !important;
  }

  .second-third-column .overlay {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    background: #fff !important;
    padding: 10px 12px 14px !important;
    text-align: left !important;
  }

  .overlay h3 {
    font-size: 12px !important;
    margin-bottom: 6px !important;
    text-align: left !important;
  }

  .overlay p {
    font-size: 13px !important;
    text-transform: none !important;
    text-align: left !important;
    line-height: 1.45 !important;
  }

  .ad-banner {
    padding: 16px 12px !important;
    box-shadow: none !important;
  }

  .ad-banner .ad-image {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 10px !important;
  }

  .strong-text {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .description-text {
    font-size: 13px !important;
    margin-bottom: 12px !important;
  }

  .cta-button {
    width: auto !important;
    padding: 10px 24px !important;
    font-size: 13px !important;
  }

  .cta-button::after {
    transform: none !important;
  }

  .must-read-column {
    padding: 12px !important;
  }

  .must-read-column h3,
  .must-read-column h2 {
    font-size: 18px !important;
    margin-bottom: 14px !important;
  }

  .must-read-box {
    padding: 10px !important;
    gap: 10px !important;
    align-items: flex-start !important;
    display: flex !important;
  }

  .must-read-img {
    width: 64px !important;
    height: 56px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
  }

  .must-read-text h4 {
    font-size: 12px !important;
  }

  .must-read-text p {
    font-size: 12px !important;
  }

  .stay-in-touch-column {
    padding: 20px 14px !important;
  }

  .stay-in-touch-column h3,
  .stay-in-touch-column h2 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .stay-in-touch-column p {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }

  .email-input {
    width: 100% !important;
    margin-bottom: 12px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
  }

  .sign-up-button {
    padding: 12px 28px !important;
    font-size: 14px !important;
  }

  /* ── CATEGORY CARDS ── */
  .category-cards {
    padding: 10px !important;
  }

  .cards-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
  }

  .category-column {
    width: 100% !important;
    flex: none !important;
    margin-bottom: 0 !important;
  }

  .category-header {
    margin-bottom: 10px !important;
  }

  .category-header h3 {
    font-size: 16px !important;
  }

  .category-line {
    flex: 1 !important;
    width: auto !important;
  }

  .category-card img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
  }

  .category-card h3 {
    font-size: 15px !important;
    padding: 8px 10px !important;
  }

  /* ── LATEST ARTICLES ── */
  .latest-articles {
    padding: 10px 10px 24px !important;
  }

  .articles-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .article-card {
    width: 100% !important;
    padding: 0 !important;
  }

  .article-card img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
  }

  .article-content {
    padding: 10px 12px 14px !important;
  }

  .article-category {
    font-size: 11px !important;
    margin-left: 0 !important;
  }

  .article-content h3 {
    font-size: 14px !important;
    margin-left: 0 !important;
    text-transform: none !important;
    line-height: 1.4 !important;
  }

  /* ── FOOTER ── */
  .site-footer {
    padding: 32px 16px 20px !important;
  }

  .footer-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .footer-column h3 {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }

  .footer-column li {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  .newsletter input,
  .newsletter button {
    width: 100% !important;
  }

  .footer-divider {
    margin: 28px 0 20px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    text-align: center !important;
  }

  .footer-logo strong {
    font-size: 22px !important;
    padding: 14px 18px !important;
    display: inline-block !important;
  }

  .footer-social {
    gap: 14px !important;
    justify-content: center !important;
  }

  .footer-links {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .footer-links a {
    margin: 0 !important;
    font-size: 12px !important;
  }

  /* ── DETAIL PAGE ── */
  .detail-page {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 12px !important;
    gap: 16px !important;
  }

  .main-content {
    order: 1 !important;
    padding: 14px !important;
    margin-top: 0 !important;
  }

  .left-column {
    order: 2 !important;
    padding: 14px !important;
    margin-bottom: 0 !important;
  }

  .right-column {
    order: 3 !important;
    padding: 14px !important;
    margin-top: 0 !important;
  }

  .article-title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
  }

  .article-body {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .social-share {
    gap: 8px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
  }

  blockquote {
    font-size: 15px !important;
  }

  .post-container {
    padding: 12px !important;
    margin-bottom: 16px !important;
  }

  .post-image {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
  }

  .post-title {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .post-date {
    display: none !important;
  }

  .author-section {
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .author-image {
    width: 52px !important;
    height: 52px !important;
  }

  .author-name {
    font-size: 14px !important;
  }

  /* ── CATEGORY PAGE ── */
  .category-navigation {
    padding: 14px 12px !important;
  }

  .category-title {
    font-size: 24px !important;
    text-align: center !important;
  }

  .category-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .category-link {
    margin: 0 !important;
    padding: 7px 14px !important;
    font-size: 12px !important;
  }

  /* ── AUTHOR PAGE ── */
  .author-header-wrap {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 12px !important;
  }

  .author-photo-box img {
    width: 90px !important;
    height: 90px !important;
  }

  .author-fullname {
    font-size: 24px !important;
  }

  .author-bio-line {
    font-size: 14px !important;
  }

  .author-page-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .author-news-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .author-sidebar {
    width: 100% !important;
  }

  /* ── PAGINATION ── */
  .pagination-btn {
    min-width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
    padding: 0 10px !important;
  }

  /* ── ABOUT PAGE ── */
  .about-wrapper {
    padding: 20px 16px !important;
  }

  .about-hero-block {
    margin-bottom: 30px !important;
    text-align: center !important;
  }

  .about-hero-block h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .about-hero-block p {
    font-size: 15px !important;
    color: #555 !important;
    line-height: 1.6 !important;
  }

  .about-intro-block {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 36px !important;
  }

  .about-intro-text h2 {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  .about-intro-text p {
    font-size: 15px !important;
    line-height: 1.65 !important;
    margin-bottom: 10px !important;
  }

  .about-intro-image img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }

  .about-stats-block {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 36px !important;
  }

  .stat-box {
    background: #f8f8f8 !important;
    padding: 18px 12px !important;
    text-align: center !important;
    border-radius: 10px !important;
    border: 1px solid #eee !important;
  }

  .stat-box h3 {
    font-size: 24px !important;
    color: #c0392b !important;
    margin-bottom: 4px !important;
  }

  .stat-box p {
    font-size: 13px !important;
    color: #666 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }

  .about-team-block {
    margin-bottom: 36px !important;
    text-align: center !important;
  }

  .about-team-block h2 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }

  .team-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .team-card {
    padding: 20px 16px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .team-card img {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-bottom: 12px !important;
  }

  .team-card h4 {
    font-size: 17px !important;
    margin-bottom: 4px !important;
  }

  .team-card span {
    font-size: 13px !important;
    color: #777 !important;
  }

  .about-cta-block {
    padding: 28px 16px !important;
    border-radius: 10px !important;
  }

  .about-cta-block h2 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .about-cta-block p {
    font-size: 15px !important;
    margin-bottom: 16px !important;
    line-height: 1.5 !important;
  }

  .about-cta-block button {
    padding: 12px 28px !important;
    font-size: 15px !important;
    width: 100% !important;
    border-radius: 8px !important;
  }

  /* ── Mobile logo box ── */
  .mobile-logo-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .mobile-logo-box .logo-text {
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    color: #fff !important;
    line-height: 1.1 !important;
  }

  .mobile-logo-box .logo-sub {
    font-size: 10px !important;
    color: #fff !important;
    opacity: 0.9 !important;
    margin-top: 3px !important;
    letter-spacing: 1px !important;
  }

} /* end @media (max-width: 768px) */

@media (min-width: 769px) and (max-width: 1024px) {
  .author-page-layout {
    grid-template-columns: 1fr;
  }

  .author-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-sidebar {
    width: 100%;
  }

  .about-intro-block {
    grid-template-columns: 1fr;
  }

  .about-stats-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}