/* Awards Media Tabs CSS */
.awards-media-section {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
}



.awards-media-tabs {
  display: flex;
  flex-direction: column;
}
.media-card {
    min-height: 320px;
    border-radius: 0px;
    overflow: hidden;
    background: #222;
}

.awards-media-tabs h1 {
  color: #002a5c;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Trebuchet MS', sans-serif;
}
section.awards-media-section .col-md-3 {
    display: flex;
    align-items: center;
}

.awards-media-tab {
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 56px;
  font-weight: 700;
  color: #0E2C53;
  font-family: 'Trebuchet MS', sans-serif;
}

.awards-media-tab.active {
  opacity: 1;
  color: #d92028;
}

.awards-media-content-wrapper {
  height: 100%;
}

.awards-media-content {
  display: none;
  height: 100%;
}

.awards-media-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.award-card {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  height: 100%;
}

.award-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.award-card:hover img {
  transform: scale(1.05);
}

.award-card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.award-card-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.award-card-btn {
  background-color: #d92028;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
}

.award-card-btn:hover {
  background-color: #ba1c23;
  color: white;
}

.media-card .award-card-content {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.media-card:hover .award-card-content {
  background: linear-gradient(to bottom, rgba(217, 32, 40, 0.8), rgba(217, 32, 40, 0.9));
}

@media (max-width: 767px) {
  .awards-media-tabs h1 {
    font-size: 42px;
  }
  
  .awards-media-tab {
    font-size: 42px;
    margin-bottom: 15px;
  }
  

}
