/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    margin-top: 120px;
  }
  
  /* BLOG ARTICLE */
  .blog-post {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 50px 40px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
  }
  
  .blog-post:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  }
  
  /* TITLES AND HEADINGS */
  .post-title {
    font-size: 2.5rem;
    color: #ac1a2f;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .post-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 30px;
  }
  
  .section-heading {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: #003366;
    border-left: 6px solid #FFD700;
    padding-left: 15px;
  }
  
  /* PARAGRAPHS */
  .post-paragraph {
    margin-bottom: 22px;
    font-size: 1.1rem;
    color: #444;
  }
  
  /* VIDEO CONTAINER */
  .video-container {
    margin: 35px 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .video-container video {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .video-container small {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-style: italic;
  }
  
  /* GALLERY */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 25px;
  }
  
  .gallery img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  
  /* ACTIVITY LIST */
  .activity-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }
  
  .activity-list li {
    padding: 12px 20px;
    background: #f9f9f9;
    margin-bottom: 10px;
    border-left: 4px solid #ac1a2f;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: background 0.3s ease;
  }
  
  .activity-list li:hover {
    background: #fff8e1;
  }
  
  /* TESTIMONIAL */
  .testimonial {
    background: #fff8dc;
    border-left: 6px solid #FFD700;
    padding: 25px 30px;
    margin: 45px 0;
    font-style: italic;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }
  
  .testimonial cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 600;
    color: #ac1a2f;
  }
  
  /* LINKS */
  a {
    color: #ac1a2f;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #003366;
    text-decoration: none;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .blog-post {
      padding: 30px 20px;
    }
  
    .post-title {
      font-size: 2rem;
    }
  
    .section-heading {
      font-size: 1.3rem;
    }
  }
  