






/*BLOG SECTION*/

.blog__wrapper{

    font-family: 'Merriweather', serif;
  
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    justify-items: center;
  }
  
  .blog__read__width{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
  }
  

  #blog__headline{
    width: 100%;
    margin-bottom: 2rem;;

  }

  #blog__general__information{
    background: black;
    color: lightgray;
    padding: 1rem;
    border-radius: 0 .25rem .25rem 0;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .video-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* Aspect ratio (16:9) for responsive video */
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .25rem 0 0 .25rem;
  }
  @media screen and (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; /* Switch to single column on mobile */
    }

    .video-container iframe {
        border-radius: .25rem .25rem 0 0;
      }

      #blog__general__information{
        background: black;
        color: lightgray;
        padding: 1rem;
        border-radius: 0 0 .25rem .25rem;
      }

      .blog__read__width{
        grid-template-columns:1fr;
        grid-template-rows: AUTO;
        gap: 1rem;
      }

  }

  #blog__info__section{
    padding-top: 2rem;
    padding-left: 2rem;

    border: solid red 1px;

  }
  
  #reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ddd; /* Change the color as desired */
    z-index: 9999;
    display: none;
  }
  
  #reading-progress-bar {
    height: 100%;
    background-color: var(--action); /* Change the color as desired */
    width: 0;
    transition: width 0.3s ease-in-out;
  }
  


  .blog_image_container{
    display: grid;
  }

  .blog_image{
    width: 100%;
    height: auto;
    border-radius: .25rem;;
  }



  .quotation{
    padding-left: 1rem;
    border-left: 4px solid var(--action);
    margin-top: 4rem;
    margin-bottom: 4rem;

    font-size: 24px;
    font-weight: bold;
    color: var(--action);
  }



