/* Award Styles */
.award-item {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.award-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
}

.award-image img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  border-radius: 5px;
}

.award-content {
  flex: 1;
}

.award-content h3 {
  margin-bottom: 10px;
  color: var(--accent-color);
}

.organization {
  font-weight: bold;
  margin-bottom: 5px;
}

.date {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.award-description {
  margin-bottom: 15px;
}

.award-links {
  text-align: right;
}

.award-links .btn {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.9rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.award-links .btn:hover {
  background-color: #555;
}

/* Responsive Awards */
@media screen and (max-width: 768px) {
  .award-item {
    flex-direction: column;
  }
  
  .award-links {
    text-align: center;
  }
  
  .award-image img {
    max-height: 120px;
  }
}

@media (max-width: 480px) {
  .award-image img {
    max-height: 120px;
  }
}