/* ==========================================================
   ✅ BLOCK-3 — کھیل اور کھلاڑی (Responsive Fix)
   Urdu News Point — Malik Masood 🚀
========================================================== */

/* ----------- Desktop Layout (unchanged) ----------- */
.unp-sports-block {
  direction: rtl;
  margin-top: 40px;
  position: relative;
}

.unp-sports-block .section-inner {
  border: 2px solid #c0392b;
  border-radius: 6px;
  padding: 20px;
  background: #fff;
  position: relative;
}

.unp-sports-block .section-title {
  position: absolute;
  top: -40px;
  right: 50%;
  transform: translateX(50%);
  background: #c0392b;
  color: #fff;
  font-weight: 700;
  padding: 7px 50px;
  font-size: 20px;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.unp-sports-block .sports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.unp-sports-block .big-post {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.unp-sports-block .big-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
}
.unp-sports-block .big-post .thumb-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.unp-sports-block .big-post .title {
  font-size: 25px;
  padding: 10px;
  line-height: 1.5;
  margin: 0;
}
.unp-sports-block .big-post .title a {
  color: #111;
  text-decoration: none;
}
.unp-sports-block .big-post .title a:hover { color: #c0392b; }

.unp-sports-block .small-post {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  gap: 10px;
  padding: 6px;
  transition: transform .25s ease;
}
.unp-sports-block .small-post:hover { transform: translateY(-3px); }
.unp-sports-block .small-post .thumb-box {
  flex-shrink: 0;
  width: 90px;
  height: 70px;
}
.unp-sports-block .small-post .thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.unp-sports-block .small-post .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}
.unp-sports-block .small-post .title a {
  color: #111;
  text-decoration: none;
}
.unp-sports-block .small-post .title a:hover { color: #c0392b; }

/* -------- Bottom categories -------- */
.unp-sports-block .bottom-cats {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}
.unp-sports-block .cat-btn {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  padding: 5px 12px;
  margin: 4px;
  border-radius: 4px;
  font-size: 18px;
  text-decoration: none;
  transition: background .25s ease;
}
.unp-sports-block .cat-btn:hover { background: #a83222; }

/* ==========================================================
   📱 MOBILE VIEW — Premium Responsive Design
========================================================== */
@media (max-width: 991px) {
  .unp-sports-block .sports-grid {
    display: block !important;
  }

  /* First Post — Big & Full Width */
  .unp-sports-block .sports-grid .big-post:first-child {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .unp-sports-block .sports-grid .big-post:first-child .thumb-box img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }
  .unp-sports-block .sports-grid .big-post:first-child .title {
    text-align: right;
    padding: 10px 12px 14px;
	font-size:22px;
  }

  /* Remaining posts — list style */
  .unp-sports-block .sports-grid .big-post:not(:first-child),
  .unp-sports-block .sports-grid .small-post {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }

  .unp-sports-block .sports-grid .small-post .thumb-box img,
  .unp-sports-block .sports-grid .big-post:not(:first-child) .thumb-box img {
    width: 75px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
  }

  .unp-sports-block .sports-grid .small-post .title,
  .unp-sports-block .sports-grid .big-post:not(:first-child) .title {
    flex: 1;
    font-size: 18px;
    text-align: right;
    padding: 0;
  }

  .unp-sports-block .sports-grid .small-post:hover,
  .unp-sports-block .sports-grid .big-post:not(:first-child):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  /* Buttons area */
  .unp-sports-block .bottom-cats {
    margin-top: 12px;
    border-top: none;
    padding-top: 0;
  }
  .unp-sports-block .cat-btn {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
  }
}

/* Extra Small Phones */
@media (max-width: 480px) {
  .unp-sports-block .sports-grid .small-post .thumb-box img {
    width: 75px;
    height: 60px;
  }
  .unp-sports-block .sports-grid .big-post:first-child .title {
  }
}