/* ================================
   BLOG PAGE LAYOUT
================================ */

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  line-height: 1.7;
}


/* ================================
   BLOG TITLE
================================ */

.blog-container h1 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 10px;
}

.blog-meta {
  text-align: center;
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 30px;
}


/* ================================
   HEADER IMAGE
================================ */

.blog-header-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Table of Contents */
.table-of-contents {
background:#f4f7fb;
border-left:4px solid #2a6ebb;
padding:20px;
margin:30px 0;
border-radius:6px;
}

.table-of-contents ul {
list-style:none;
padding-left:0;
}

.table-of-contents li {
margin:8px 0;
}

.table-of-contents a {
text-decoration:none;
color:#2a6ebb;
font-weight:500;
}

.table-of-contents a:hover {
text-decoration:underline;
color: #f0c040;
}


/* ================================
   FLIGHT FACTS BOX
================================ */

.flight-facts {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 40px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.blog-container .flight-facts h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  text-align: left;
}

.flight-facts ul {
  list-style: none;
  padding: 0;
}

.flight-facts li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.flight-facts li:last-child {
  border-bottom: none;
}


/* ================================
   BLOG CONTENT
================================ */

.blog-content {
  font-size: 1.05rem;
  color: #333;
}

.blog-container .blog-content h2 {
  font-size: 1.8rem;
  margin-top: 45px;
  margin-bottom: 10px;
  text-align: left;
}

.blog-container .blog-content p {
  margin-bottom: 20px;
  text-align: justify;
}

p a{
  color: #2a6ebb;
  text-decoration: none;
  font-weight: 500;
}

p a:hover {
  text-decoration: underline;
  color: #f0c040;
}

/* ================================
   BLOG IMAGES
================================ */

.blog-image {
  width: 100%;
  max-width: 650px;
  display: block;
  border-radius: 12px;
  margin: 30px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


/* ================================
   FINAL THOUGHTS BOX
================================ */

.final-thoughts {
  margin-top: 60px;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(to top, #fdf9e8, #ffffff);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.blog-container .final-thoughts h2 {
  margin-bottom: 15px;
}

.final-thoughts ul {
  margin: 15px 0 20px 20px;
  list-style: none;
}

.final-thoughts li {
  margin-bottom: 6px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

  .blog-container {
    padding: 40px 15px 60px;
  }

  .blog-container h1 {
    font-size: 2rem;
  }

  .blog-container .blog-content h2 {
    font-size: 1.5rem;
  }

}