.main-content{
    width: 2000px;
    height: 2350px;
    display:flex;
    justify-content: center;
    align-items: center;
    position:relative;
}
.content{
    width:1560px;
    height:2100px;
}

/* Scrollbar Track */
.page-template-Template-honours::-webkit-scrollbar {
    width: 10px;  /* For vertical scrollbar */
    height: 10px; /* For horizontal scrollbar */
}

.page-template-Template-honours::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border-radius: 10px;
}

/* Scrollbar Thumb */
.page-template-Template-honours::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4); /* Semi-transparent */
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.page-template-Template-honours::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}
 .award_cards.card {
  min-width: 300px;
  max-width: 500px;
  min-height: auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* position: relative; */
  padding: 30px;
  font-weight: 500;
  opacity: 0.2;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.award_cards.card.primary{
    border: 8px solid #B77A4F; 
}
.award_cards.card:hover{
    opacity: 1;
    transform: scale(1.05);

}
.award_cards.card.secondary{
    border: 8px solid #D6B468; 
}
.award_cards.card.normal{
    border: 8px solid #A79D96; 
    
}
/* Main content area */
.award_cards .card-content h2 {
  font-size: 36px;
  font-weight: 500;
}
.award_cards .card-content .year{
    font-size: 20px;
    margin-top: 16px;
    font-style: italic;
}

.award_cards .card-footer {
  background-color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0px;
  align-items: flex-end;
  border-top: 0px;
  
}
.award_cards .card-footer h3{
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.award_cards .card-footer img {
    width: 150px;
    height: 100px;
    object-fit: contain;
}


/* <!-----Center Card-------> */
.centercard .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 4px solid #a79d96;
    background: #cccccc29;
}

/* Wall of Honour tile */
.centercard .wall-of-honour {
    background: #cccccc00;
    padding: 28px 0px;
    font-size: 30px; /* Font size */
    text-align: center;
}

.grid-item {
    width:500px;
}

.stamp{
    position: absolute;
    /* top: 50% !important; */
    left: 50% !important;
    transform: translate(-50%, 0%) !important;
}



@media (max-width: 680px) {
    .main-content{
        width: 1060px;
        height: 1700px;
        display:flex;
        justify-content: center;
        align-items: center;
        position:relative;
    }
    .content{
        width:960px;
        height:1600px;
    }

    .award_cards.card {
      min-width: 300px;
      max-width: 300px;
      min-height: auto;
      background-color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 9px;
      font-weight: 500;
      opacity: 0.2;
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .centercard .wall-of-honour {
      font-size: 16px;
      width: 300px;
    }
    .award_cards .card-content h2 {
      font-size: 18px;
      font-weight: 500;
    }
    /* .award_cards .card-footer {
      flex-direction: column;
    } */
    .award_cards .card-footer h3 {
      font-size: 12px;
      gap: 0px;
    }
    .centercard .container {
        width: 100%;
        margin: 0px;
        max-width: 100%;
    }

    .award_cards .card-footer img{
        width: 80px;
        height: 80px;
    }
    .grid-item {
      width: 300px;
      border: 0px;
    }
    .award_cards.card.primary {
      border: 4px solid #b77a4f;
    }
    .award_cards.card.secondary{
        border: 4px solid #D6B468; 
    }
    .award_cards.card.normal{
        border: 4px solid #A79D96; 
        
    }
  }
  @media(max-width: 300px){
    .grid-item {
        width: 280px;
        border: 0px;
      }
  }