/* Blog Post Specific Styling */
.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    /*margin: 0.5rem;*/
  }
  
  .blog-post-content figure {
    margin: 0;
    margin-bottom: 1.5rem;
    max-width: 200px; /* Adjust as needed */
    float: left; /* Image on left, text wraps around */
    margin-right: 1.5rem; /* Space between image and text */
    border-radius: 0.5rem;
    overflow: hidden; /* Ensures border-radius applies to image */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .blog-post-content figure figcaption {
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-gray-500 */
    text-align: center;
    padding: 0.5rem;
  }
  
  .blog-post-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151; /* text-gray-700 */
	text-align: justify;
  }
  
  .blog-post-content h2 {
    font-size: 1.75rem; /* text-2xl */
    font-weight: bold;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    color: #004687; /* text-gray-900 */
  }
  
  .blog-post-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .blog-post-content ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .blog-post-content li {
    margin-bottom: 0.5rem;
    color: #374151; /* text-gray-700 */
  }
  
  /* Sidebar Styling */
  .sidebar-section {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .sidebar-section h4 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    color: #004687; /* text-gray-900 */
    margin-bottom: 1rem;
    border-bottom: 2px solid #004687; /* blue-600 */
    padding-bottom: 0.5rem;
  }
  
  .sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar-section ul li {
    margin-bottom: 0.75rem;
  }
  
  .sidebar-section ul li a {
    color: #4a5568; /* gray-700 */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }
  
  .sidebar-section ul li a:hover {
    color: #3b82f6; /* blue-600 */
  }
  
  /* Tags/Keywords styling */
  .tag-cloud a {
    display: inline-block;
    background-color: #e2e8f0; /* gray-200 */
    color: #4a5568; /* gray-700 */
    padding: 0.4rem 0.8rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .tag-cloud a:hover {
    background-color: #3b82f6; /* blue-600 */
    color: white;
  }
  
  /* Swiper Slider adjustments for sidebar */
  .sidebar-swiper-container {
    width: 100%;
    height: 300px; /* Adjust height for sidebar slider */
    position: relative; /* Crucial for Swiper's internal absolute positioning */
    overflow: hidden; /* This will hide extra slides */
  }
  
  .sidebar-swiper-slide {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .sidebar-swiper-slide img {
    width: 100%;
    height: 120px; /* Smaller image for sidebar cards */
    object-fit: cover;
  }
  
  .sidebar-swiper-slide-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .sidebar-swiper-slide-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
  }
  
  .sidebar-swiper-slide-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    flex-grow: 1;
  }
  
  /* Hide Swiper navigation buttons */
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important; /* Forces the buttons to be hidden */
  }
  
      /* Custom style for list items with squares */
    .color-story-list li {
      position: relative; /* Needed for positioning the pseudo-element */
      padding-left: 30px; /* Space for the square */
      list-style: none; /* Remove default bullet points */
    }

    .color-story-list li::before {
      content: ''; /* Required for pseudo-elements */
      position: absolute; /* Position relative to the list item */
      left: 0; /* Align to the left edge of the padding */
      top: 50%; /* Center vertically */
      transform: translateY(-50%); /* Adjust for perfect vertical centering */
      width: 4px; /* Desired width of the square */
      height: 60%; /* Desired height of the square */
      border-radius: 4px; /* Slightly rounded corners for consistency */
    }

    /* Specific colors for each list item */
    .color-story-list li.blue-square::before {
      background-color: #31357B; /* Blue */
    }

    .color-story-list li.magenta-square::before {
      background-color: #E62867; /* Magenta/Pink */
    }

    .color-story-list li.golden-yellow-square::before {
      background-color: #FFCA21; /* Golden Yellow */
    }

    .color-story-list li.lime-green-square::before {
      background-color: #90ED16; /* Lime Green */
    }

    .color-story-list li.gold-ring-square::before {
      background-color: #DBBB51; /* Gold Ring (using the provided gold color) */
    }
  