

/* =================== updates ================  */

.updates {
    padding: 60px 20px;
    background-color: #ededed;
  }
  .updates-content{
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  
  .updates-content .left{
    
  }
  .updates-content .left h3{
    margin-bottom: 20px;
    /* font-size: 30px; */
  }
  .updates-content .left .update__single{
    margin-bottom: 20px;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    padding: 20px 20px;
    background-color:white;
    border-radius: 5px;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  
  }
  .updates-content .button{
    margin-top: 40px;
    text-align: center;
  }
  .updates-content .button a{
    padding: 12px 40px;
    background-color: var(--bg-color);
    color: white;
    text-decoration: none;
    transition: 0.3s;
  }
  .updates-content .button a:hover{
    background-color: var(--bg-gold);
    color: black;
  }

  .update__single img{
    width: 100px;
    margin-bottom: 20px;
  }
  .update__single h4{
    align-self: flex-start;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .update__single h5{
    align-self: flex-start;
    color: var(--bg-gold);
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
  }
  .update__single p{
    align-self: flex-start;
  }
  
  
  
  
  .updates-content .right{
    
  }
  .updates-content .right > h3{
    margin-bottom: 20px;
    /* font-size: 30px; */
  }
  
  .updates-content .right .event__single {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    padding: 30px 30px;
    background-color: white;
    border-radius: 5px;
  }
  .updates-content .right .event__single .event__time{
    width: 90px;
    position: relative;
    overflow: hidden;
  }
  
  .event__time .gold{
    background-color: var(--bg-gold);  
    text-align: center;
    font-size: 20px;
    padding: 20px 0 10px;
    font-size: 25px;
    border-radius:5px 5px 0 0;

  
  }
  .event__time .gold sup{
  
    font-size: 14px;
  }
  
  .event__time .blue{
    background-color: var(--bg-color);
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
  }
  
  .event__time .circle1{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
    background-color: var(--bg-color);
    border-radius: 50%;
  }
  .event__time .circle2{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: var(--bg-color);
    border-radius: 50%;
  }
  
  .updates-content .right .event__single .update__info{
    flex: 1;
  }
  .updates-content .right .event__single .update__info h4{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .updates-content .right .event__single .update__info p{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .updates-content .right .event__single .update__info h5{
    font-size: 16px;
  
  }
  
  @media screen and (max-width:768px) {
    .updates-content{
      grid-template-columns: 1fr;
      gap: 50px;
    }
  }
  