/* ==========================================================================
   Blog page styles — Riya Escort Girls
   Loaded only on blog.html. Site brand colour: #ff1182
   ========================================================================== */

.blog_section {
  padding: 60px 0 80px;
  background: #fafafa;
}

.blog_section .section-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.blog_section .section-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
}

.blog_section .section-intro h2 span {
  color: #ff1182;
}

.blog_section .section-intro p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Featured post ---------- */
.featured_post {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured_post:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 17, 130, 0.12);
}

.featured_post .featured_img {
  position: relative;
  background: linear-gradient(135deg, #ff1182 0%, #ff5ca7 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.featured_post .featured_badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #ff1182;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.featured_post .featured_content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured_post .post_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

.featured_post .post_meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured_post .post_meta i {
  color: #ff1182;
}

.featured_post h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.featured_post h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured_post h3 a:hover {
  color: #ff1182;
}

.featured_post p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.featured_post .read_more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff1182;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  align-self: flex-start;
  transition: gap 0.2s ease;
}

.featured_post .read_more:hover {
  gap: 12px;
}

/* ---------- Blog grid ---------- */
.blog_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.blog_card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(255, 17, 130, 0.12);
}

.blog_card .card_img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog_card .card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog_card:hover .card_img img {
  transform: scale(1.06);
}

.blog_card .card_category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 17, 130, 0.95);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog_card .card_body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog_card .card_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.blog_card .card_meta i {
  color: #ff1182;
  margin-right: 4px;
}

.blog_card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.blog_card h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog_card h4 a:hover {
  color: #ff1182;
}

.blog_card p {
  color: #666;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.blog_card .read_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff1182;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  align-self: flex-start;
  transition: gap 0.2s ease;
}

.blog_card .read_more:hover {
  gap: 10px;
}

/* ---------- Pagination ---------- */
.blog_pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.blog_pagination a,
.blog_pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #eee;
  transition: all 0.2s ease;
}

.blog_pagination a:hover {
  background: #ff1182;
  color: #fff;
  border-color: #ff1182;
}

.blog_pagination .current {
  background: #ff1182;
  color: #fff;
  border-color: #ff1182;
}

.blog_pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ---------- Newsletter CTA ---------- */
.blog_newsletter {
  background: linear-gradient(135deg, #ff1182 0%, #ff5ca7 100%);
  border-radius: 14px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 60px;
  color: #fff;
}

.blog_newsletter h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.blog_newsletter p {
  font-size: 15px;
  margin-bottom: 26px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.blog_newsletter form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 10px;
}

.blog_newsletter input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  outline: none;
}

.blog_newsletter button {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 26px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.blog_newsletter button:hover {
  background: #000;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .featured_post {
    grid-template-columns: 1fr;
  }
  .featured_post .featured_img {
    min-height: 280px;
  }
  .featured_post .featured_content {
    padding: 30px;
  }
  .featured_post h3 {
    font-size: 22px;
  }
  .blog_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .blog_section {
    padding: 40px 0 60px;
  }
  .blog_section .section-intro h2 {
    font-size: 26px;
  }
  .blog_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .featured_post .featured_content {
    padding: 24px;
  }
  .featured_post h3 {
    font-size: 20px;
  }
  .blog_newsletter {
    padding: 36px 24px;
  }
  .blog_newsletter h3 {
    font-size: 22px;
  }
  .blog_newsletter form {
    flex-direction: column;
  }
}

/* ==========================================================================
   Single blog post page styles
   ========================================================================== */
.blog_post_section {
  padding: 60px 0 80px;
  background: #fafafa;
}

.blog_post_layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

/* ---------- Post article ---------- */
.post_article {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.post_hero {
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
}

.post_hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.post_category_tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #ff1182;
  color: #fff;
  padding: 7px 16px;
  border-radius: 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.post_body {
  padding: 44px 50px 50px;
}

.post_body h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
  margin-bottom: 18px;
}

.post_body .post_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  color: #888;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.post_body .post_meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.post_body .post_meta i {
  color: #ff1182;
}

.post_body .post_lead {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 28px;
  font-weight: 500;
}

.post_body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 22px;
}

.post_body p a {
  color: #ff1182;
  text-decoration: underline;
}

.post_body h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 38px 0 16px;
}

.post_body h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 14px;
}

.post_body ul,
.post_body ol {
  margin: 0 0 22px 24px;
  padding: 0;
}

.post_body ul li,
.post_body ol li {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 10px;
}

.post_body blockquote {
  border-left: 4px solid #ff1182;
  background: #fff5fa;
  padding: 20px 26px;
  margin: 28px 0;
  font-style: italic;
  font-size: 16px;
  color: #555;
  border-radius: 0 8px 8px 0;
}

.post_body img.inline_img {
  width: 100%;
  border-radius: 10px;
  margin: 24px 0;
}

/* ---------- Post share + tags ---------- */
.post_footer_meta {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.post_tags a {
  display: inline-block;
  background: #f3f3f3;
  color: #555;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  margin: 4px 4px 4px 0;
  transition: all 0.2s ease;
}

.post_tags a:hover {
  background: #ff1182;
  color: #fff;
}

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

.post_share span {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.post_share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f3f3;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.post_share a:hover {
  background: #ff1182;
  color: #fff;
}

/* ---------- Sidebar ---------- */
.post_sidebar {
  position: sticky;
  top: 20px;
}

.sidebar_widget {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.sidebar_widget h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff1182;
  display: inline-block;
}

.sidebar_widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.sidebar_widget ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.sidebar_widget ul li a:hover {
  color: #ff1182;
}

.sidebar_widget ul li a i {
  color: #ff1182;
  font-size: 11px;
}

.sidebar_recent .recent_post {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.sidebar_recent .recent_post img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.sidebar_recent .recent_post h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.sidebar_recent .recent_post h5 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar_recent .recent_post h5 a:hover {
  color: #ff1182;
}

.sidebar_recent .recent_post .recent_date {
  font-size: 11px;
  color: #999;
}

.sidebar_cta {
  background: linear-gradient(135deg, #ff1182 0%, #ff5ca7 100%);
  color: #fff;
  text-align: center;
  padding: 28px 24px;
}

.sidebar_cta h4 {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.sidebar_cta p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.95;
}

.sidebar_cta .cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sidebar_cta .cta_btn:hover {
  background: #000;
}

/* ---------- Related posts ---------- */
.related_posts {
  margin-top: 60px;
}

.related_posts h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 26px;
  color: #1a1a1a;
}

@media (max-width: 992px) {
  .blog_post_layout {
    grid-template-columns: 1fr;
  }
  .post_sidebar {
    position: static;
  }
  .post_body {
    padding: 32px 28px 36px;
  }
  .post_body h1 {
    font-size: 27px;
  }
  .post_hero {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .post_body {
    padding: 26px 20px 30px;
  }
  .post_body h1 {
    font-size: 22px;
  }
  .post_hero {
    height: 240px;
  }
  .post_body h2 {
    font-size: 21px;
  }
  .post_footer_meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
