*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    h1{
    color: black;
    }
    h2,h3{
    text-align: center;
    }
    span,b,p{
    padding: 5px;
    margin-top: 10px;
    }
    .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-blog {
        display: flex;
        flex-direction: row;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin: 2rem auto;
        padding: 1rem;
        max-width: 900px;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        border-radius: 8px;
        background-color: white;
      }
      
    .container-blog img {
        max-width: 400px;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
      }
      
      .container-blog 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;
      }
      .button-5 {
        align-items: center;
        background-clip: padding-box;
        background-color: #e88b22;
        border: 1px solid transparent;
        border-radius: .25rem;
        box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
        box-sizing: border-box;
        color: #fff;
        cursor: pointer;
        display: inline-flex;
        font-family: "Red Hat Display", sans-serif;
        font-size: 16px;
        font-weight: 600;
        justify-content: center;
        line-height: 1.25;
        margin: 0;
        margin-top: 20px;
        min-height: 3rem;
        padding: calc(.875rem - 1px) calc(1.5rem - 1px);
        position: relative;
        text-decoration: none;
        transition: all 250ms;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        vertical-align: baseline;
        width: auto;
      }
      
      .button-5:hover,
      .button-5:focus {
        background-color: #e88b22;
        box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
      }
      
      .button-5:hover {
        transform: translateY(-1px);
      }
      
      .button-5:active {
        background-color: #e88b22;
        box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
        transform: translateY(0);
      }
    .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{
        background-image: url(https://res.cloudinary.com/dasrniwpk/image/upload/v1757667060/hot-air-balloon-masai-mara_caqzlx.jpg);
        background-position: center;
        overflow: hidden;
        background-repeat: no-repeat;
        min-height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        
        background-size: cover;
        }
        .safaris h1{
        color: white;
        }
    
    
        @media(max-width:768px){
          .blog-meta{
            display: flex;
            flex-direction: column;
           }
           .button-5{
            width: fit-content;
          }
          .container-blog{
            max-width: 100vw;
          flex-direction: column;
          }
          .container img{
          max-width: 100vw;
          }
          mat-card{
            max-width: 100vw;
          }
        }