/* =========================================
   ENLACES · TREZE
========================================= */

.c-links-page{
  position: relative;
  min-height: 100svh;

  background:
    radial-gradient(circle at 20% 20%, rgba(201,128,40,.12), transparent 32%),
    radial-gradient(circle at 78% 24%, rgba(223,179,126,.10), transparent 26%),
    linear-gradient(135deg, #0A052D 0%, #291F46 100%);
}


/* =========================================
   CONTAINER
========================================= */

.c-links-page__container{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================================
   HERO
========================================= */

.c-links-hero{
  padding: clamp(120px, 14vh, 180px) 0 40px;
}

.c-links-hero__inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.c-links-hero__eyebrow{
  margin: 0 0 14px;

  color: rgba(255,255,255,.7);
  font-family: "Lexend Deca", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.c-links-hero__title{
  margin: 0;

  color: #C98028;
  font-family: "Lexend Deca", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.03em;
}

.c-links-hero__title span{
  display: block;
  color: #fff;
  font-weight: 300;
}

.c-links-hero__text{
  max-width: 620px;
  margin: 24px auto 0;

  color: rgba(255,255,255,.86);
  font-family: "Lexend Deca", sans-serif;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
}


/* =========================================
   LIST
========================================= */

.c-links-list{
  padding: 20px 0 clamp(80px, 10vw, 120px);
}

.c-links-list__grid{
  width: min(760px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}


/* =========================================
   CARD
========================================= */

.c-links-card{
  display: block;
  padding: 22px 24px;

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);

  background: rgba(255,255,255,.045);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);

  text-decoration: none;

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.c-links-card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}


/* =========================================
   PRIMARY (CTA)
========================================= */

.c-links-card--primary{
  padding: 26px 28px;

  background: linear-gradient(90deg, #DFB37E 0%, #C98028 100%);
  border: none;

  transform: scale(1.015);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.c-links-card--primary:hover{
  background: linear-gradient(90deg, #DFB37E 0%, #C98028 100%);
}


/* =========================================
   CONTENT
========================================= */

.c-links-card__label{
  display: block;
  margin: 0 0 6px;

  color: #fff;
  font-family: "Lexend Deca", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.c-links-card--primary .c-links-card__label{
  color: #0A052D;
}

.c-links-card__text{
  display: block;

  color: rgba(255,255,255,.82);
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.c-links-card--primary .c-links-card__text{
  color: rgba(10,5,45,.86);
}


/* =========================================
   GLOBAL SAFETY
========================================= */

.c-links-page,
.c-links-page *{
  min-width: 0;
  box-sizing: border-box;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 640px){

  .c-links-page__container{
    width: calc(100% - 32px);
  }

  .c-links-hero{
    padding: 132px 0 28px;
  }

  .c-links-card{
    padding: 18px 18px;
    border-radius: 14px;
  }

  .c-links-card__label{
    font-size: 18px;
  }

  .c-links-card__text{
    font-size: 14px;
  }

}