/*
Links
Version: 1.0
*/

.links-page {
  min-height: 100vh;
  padding: var(--space-lg, 32px) var(--space-sm, 16px);
  background-color: var(--bg-dark);
  background-repeat: no-repeat;
}
.links-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.links-column {
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  padding: var(--space-md, 20px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  text-align: center;
  background-color: #120903;
  color: #120903;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  max-width: 560px;
}
.links-top-image {
  width: 100%;
  display: block;
  height: 460px;
  object-fit: cover;
  object-position: top;
}
.links-top {
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
  margin-top: calc(-1 * var(--space-md, 20px));
  margin-left: calc(-1 * var(--space-md, 20px));
  margin-right: calc(-1 * var(--space-md, 20px));
  width: calc(100% + 2 * var(--space-md, 20px));
}
.links-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
.links-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #120903 100%);
  z-index: 2;
  pointer-events: none;
}
.links-header {
  padding: 0 var(--space-sm, 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 92%;
  margin: -30px auto var(--space-sm, 16px) auto;
  position: relative;
  z-index: 3;
}
.links-subtitle {
  opacity: 0.95;
  text-align: center;
  letter-spacing: 0.4px;
  font-size: 13px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.links-title {
  margin: 0;
  text-align: center;
  letter-spacing: 1.8px;
  line-height: 1.15;
  font-size: 36px;
  color: #FFFFFF;
  font-family: 'Inria Serif', serif;
}
.links-badge {
  display: inline-block;
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  font-weight: 600;
  font-size: 13px;
  color: #c9a064;
  background-color: #120903;
  font-family: 'Inter', sans-serif;
}
.links-secondary {
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.links-credential {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-md, 20px);
  font-size: 14px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.links-credential-icon {
  width: 18px;
  height: 18px;
}
.links-social {
  list-style: none;
  padding: 0;
  margin: 0 0  var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.links-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(201, 160, 100, .12);
  color: #c9a064;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.links-social a:hover {
  transform: translateY(-2px);
  opacity: .9;
}
.links-social svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}
.links-list {
  display: flex;
  flex-direction: column;
  gap: var(--links-gap, var(--space-sm, 16px));
}
.links-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: transform .15s ease, opacity .15s ease;
}
.links-item:hover {
  transform: translateY(-2px);
  opacity: .95;
}
.links-item--image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.links-item--image {
  display: block;
  padding: 0;
  margin: 0;
}
.links-item-text {
  font-family: var(--font-sans);
  font-weight: 600;
}
.links-item--button {
  display: grid;
  grid-template-columns: var(--btn-side, 40px) 1fr var(--btn-side, 40px);
  align-items: center;
  gap: 0;
  background: linear-gradient(180deg, #d7b178 0%, #c9a064 100%);
  color: #120903;
  border-radius: 300px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 24px rgba(18,9,3,.10);
}
.links-item-left,
.links-item-right {
  width: var(--btn-icon-size, 22px);
  height: var(--btn-icon-size, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.links-item-left { justify-self: start; }
.links-item-right { justify-self: end; }

.links-item-left svg {
  width: var(--btn-icon-size, 22px);
  height: var(--btn-icon-size, 22px);
  display: block;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .92;
  transform: translateY(.3px);
}
.links-item--button .links-item-text {
  justify-self: center;
  text-align: center;
  margin: 0;
}
@media (max-width: 500px) {
  .links-item--button .links-item-text {
    font-size: 0.85rem;
  }
}
.links-footer {
  margin-top: var(--space-xxl, 20px);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  padding: 10px 8px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.admin-customize-link {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 100001;
  background-color: rgba(37,14,1,0.92);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.2px;
}
html.admin-bar #wpadminbar {
  z-index: 100000;
}
.trust-badge-icon {
  width: 22px;
  height: 22px;
  display: block;
  color: #c9a064;
}