* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .waiting {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Blog wrapper: flex layout */
  .blog-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 2rem auto;
    padding: 2rem;
    width: 100%;
    max-width: 1300px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 12px;
  }
  
  /* Main blog content */
  .blog-content {
    flex: 2;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .blog-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .blog-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  span, b, p {
    padding: 5px 0;
  }
  
  /* Related blogs on right side */
  .related-blogs {
    flex: 1;
    max-width: 350px;
    margin-left: auto;
  }
  
  /* Share card */
  .card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #eee;
    padding: 20px;
    border-radius: 10px;
    width: fit-content;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  }
  
  .socialContainer {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c2c2c;
    transition: 0.3s;
  }
  
  .socialContainer:active {
    transform: scale(0.9);
  }
  
  .socialSvg {
    width: 18px;
  }
  
  .socialSvg path {
    fill: white;
  }
  
  .containerOne:hover { background: #d62976; }
  .containerTwo:hover { background: #00acee; }
  .containerThree:hover { background: #0072b1; }
  .containerFour:hover { background: #128C7E; }
  
  /* Loader */
  .loader {
    --c1: #673b14;
    --c2: #f8b13b;
    width: 70px;
    height: 200px;
    border-top: 4px solid var(--c1);
    border-bottom: 4px solid var(--c1);
    background: linear-gradient(90deg, var(--c1) 2px, var(--c2) 0 5px,var(--c1) 0) 50%/7px 8px no-repeat;
    display: grid;
    animation: l5-0 2s infinite linear;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .blog-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .related-blogs {
      max-width: 100%;
      margin-left: 0;
      margin-top: 2rem;
    }
  }
  

  h1{
color: black;
  }

  
  h2,h3{
    text-align: center;
    }
    span,b,p{
    padding: 5px;
 
    }
    .loader {
        --c1: #673b14;
        --c2: #f8b13b;
        width: 70px;
        height: 200px;
        border-top: 4px solid var(--c1);
        border-bottom: 4px solid var(--c1);
        background: linear-gradient(90deg, var(--c1) 2px, var(--c2) 0 5px,var(--c1) 0) 50%/7px 8px no-repeat;
        display: grid;
        overflow: hidden;
        animation: l5-0 2s infinite linear;
      }
      
      .loader::before,
      .loader::after {
        content: "";
        grid-area: 1/1;
        width: 75%;
        height: calc(50% - 4px);
        margin: 0 auto;
        border: 2px solid var(--c1);
        border-top: 0;
        box-sizing: content-box;
        border-radius: 0 0 40% 40%;
        -webkit-mask: linear-gradient(#000 0 0) bottom/4px 2px no-repeat,
          linear-gradient(#000 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
        background: linear-gradient(var(--d,0deg),var(--c2) 50%,#0000 0) bottom /100% 205%,
          linear-gradient(var(--c2) 0 0) center/0 100%;
        background-repeat: no-repeat;
        animation: inherit;
        animation-name: l5-1;
      }
      
      .loader::after {
        transform-origin: 50% calc(100% + 2px);
        transform: scaleY(-1);
        --s: 3px;
        --d: 180deg;
      }
      
      @keyframes l5-0 {
        80% {
          transform: rotate(0)
        }
      
        100% {
          transform: rotate(0.5turn)
        }
      }
      
      @keyframes l5-1 {
        10%,70% {
          background-size: 100% 205%,var(--s,0) 100%
        }
      
        70%,100% {
          background-position: top,center
        }
      }
      
      
    .spinner{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    }
    .divider {
        flex-grow: 1;
        height: 2px;
        background-color: #e88b22;
    }
    .container-related-blogs .blog-meta {
        display: flex;
        flex-direction: column;
        align-items: center;   /* Centers button & title horizontally */
        justify-content: center; /* Optional: centers vertically if needed */
        text-align: center; 
      }
      
    
    .container-related-blogs {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
       
        margin: 2rem auto;
      
        
        /* max-width: 900px; */
        width: 100%;
        
        border-radius: 8px;
        background-color: white;
      }
      
    .container-related-blogs img {
        max-width: 100%;
        max-height: 400px;
        object-fit: cover;
        /* border-radius: 8px; */
      }
      
      .container-related-blogs p {
        font-size: 1rem;
        line-height: 1.5;
        text-align: justify;
        padding: 0 1rem;
      
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    
    .divider-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
    }
    .circle {
        width: 20px;
        height: 20px;
        background-color: transparent;
        border: 2px solid #e88b22;
        border-radius: 50%;
        margin: 0 10px;
    }
    
    
        .safaris h1{
        color: white;
        }


        @media(max-width:768px){
         .blog-meta{
          display: flex;
          flex-direction: column;
         }
       
          .container{
          max-width: 100vw;
         
          }
          .button-5{
            width: fit-content;
          }
          .container img{
            max-width: 100vw;
          }
        }