/* TAGS Awards 2026 - Who Can Apply Section */

.tags-apply {
  background: linear-gradient(135deg, #16161a 0%, #1e1e26 60%, #16161a 100%);
  color: #ffffff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

/* Background Ambient Glow Behind Trophy */
.tags-apply::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(205, 156, 33, 0.18) 0%,
    rgba(205, 156, 33, 0) 70%
  );
  transform: translate(30%, -50%);
  pointer-events: none;
}

.tags-apply__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

/* Content Area */
.tags-apply__content {
  position: relative;
  z-index: 2;
}

.tags-apply__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cd9c21;
  margin-bottom: 14px;
}

.tags-apply__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #cd9c21;
}

.tags-apply__title {
  font-family: var(--font-display, "Bodoni Moda", serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 18px;
}

.tags-apply__desc {
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* 3 Pillar Highlight Cards */
.tags-apply__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.tags-apply__pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(205, 156, 33, 0.25);
  border-radius: 16px;
  padding: 20px 18px;
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.tags-apply__pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 156, 33, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.tags-apply__pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #cd9c21 0%, #f0da6a 100%);
  color: #16161a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(205, 156, 33, 0.3);
}

.tags-apply__pillar-icon svg {
  width: 20px;
  height: 20px;
}

.tags-apply__pillar-title {
  font-family: var(--font-display, "Bodoni Moda", serif);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.tags-apply__pillar-text {
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Call-to-action Action Link */
.tags-apply__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cd9c21 0%, #f0da6a 100%);
  color: #16161a !important;
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(205, 156, 33, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tags-apply__cta:hover,
.tags-apply__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(205, 156, 33, 0.5);
  color: #16161a !important;
}

.tags-apply__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.tags-apply__cta:hover svg {
  transform: translateX(4px);
}

/* Trophy Showcase Frame */
.tags-apply__trophy-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.tags-apply__trophy-img {
  display: block;
  max-width: 100%;
  max-height: 660px;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(205, 156, 33, 0.3))
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tags-apply__trophy-frame:hover .tags-apply__trophy-img {
  transform: scale(1.03) translateY(-6px);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .tags-apply {
    padding: 64px 0;
  }

  .tags-apply__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tags-apply__trophy-frame {
    order: -1;
  }

  .tags-apply__trophy-img {
    max-height: 320px;
  }

  .tags-apply__pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .tags-apply {
    padding: 52px 16px;
  }

  .tags-apply__pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tags-apply__pillar {
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .tags-apply__pillar-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .tags-apply__trophy-img {
    max-height: 280px;
  }

  .tags-apply__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tags-apply__pillar,
  .tags-apply__trophy-img,
  .tags-apply__cta {
    transition: none !important;
    transform: none !important;
  }
}
