
.away-section {
  padding: 30px 0 40px;
  background: #0a0a0a;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.away-head {
  padding: 0 5% 15px;
}
.away-head h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 4px solid #0056b3;
  padding-left: 12px;
}

.away-gallery {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 0 20px 30px;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.away-gallery::-webkit-scrollbar {
  height: 6px;
}
.away-gallery::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
}
.away-gallery::-webkit-scrollbar-thumb {
  background: #0056b3;
  border-radius: 10px;
}

.away-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0056b3;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: 0.3s;
}
.away-btn:hover {
  background: #0066cc;
  transform: translateY(-50%) scale(1.1);
}
.away-btn.left { left: 25px; }
.away-btn.right { right: 25px; }

@media (max-width: 768px) {
  .away-btn { display: none; }
}

.away-card {
  flex: 0 0 65%;
  max-width: 280px;
  scroll-snap-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.away-card img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}
.away-card:hover img {
  transform: translateY(-5px);
}
.away-title {
  margin-top: 12px;
  text-align: center;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .away-card {
    flex: 0 0 55%;
    max-width: 220px;
  }
  .away-card img {
    height: 290px;
  }
}
