/* ArtGallery Premium Audience CTA v1.0.3 */
.agpct-wrap,
.agpct-wrap * { box-sizing: border-box; }

.agpct-wrap {
  --agpct-amber: #DB8E01;
  --agpct-amber-dark: #bd7900;
  --agpct-ink: #17191d;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.agpct-grid {
  width: 100%;
  max-width: 1780px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.agpct-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(22, 25, 31, .09);
  border-radius: 9px;
  box-shadow: 0 6px 20px rgba(19, 23, 29, .055);
  isolation: isolate;
  transition: border-color .28s ease, box-shadow .28s ease;
}

.agpct-card:hover {
  border-color: rgba(219, 142, 1, .34);
  box-shadow: 0 10px 28px rgba(19, 23, 29, .09);
}

.agpct-card--artist { background: #f8f5ef; }
.agpct-card--gallery { background: #151719; }

/*
 * The photo is never stretched. A very soft blurred copy fills the media area,
 * while the foreground image stays fully visible at its natural aspect ratio.
 */
.agpct-card-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -3;
  width: 52%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #efe8dc;
}

.agpct-card--gallery .agpct-card-media { background: #29241f; }

.agpct-card-media::before {
  content: '';
  position: absolute;
  inset: -18px;
  background-image: var(--agpct-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(16px);
  opacity: .22;
  transform: scale(1.06);
}

.agpct-card--gallery .agpct-card-media::before { opacity: .18; }

.agpct-card-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none !important;
}

.agpct-card-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.agpct-card--artist .agpct-card-shade {
  background: linear-gradient(90deg,
    rgba(248,245,239,.998) 0%,
    rgba(248,245,239,.992) 34%,
    rgba(248,245,239,.94) 46%,
    rgba(248,245,239,.64) 57%,
    rgba(248,245,239,.20) 68%,
    rgba(248,245,239,.03) 78%,
    rgba(248,245,239,0) 88%);
}

.agpct-card--gallery .agpct-card-shade {
  background: linear-gradient(90deg,
    rgba(14,17,21,.998) 0%,
    rgba(14,17,21,.988) 40%,
    rgba(14,17,21,.90) 51%,
    rgba(14,17,21,.64) 62%,
    rgba(14,17,21,.27) 73%,
    rgba(14,17,21,.06) 84%,
    rgba(14,17,21,0) 92%);
}

.agpct-content {
  position: relative;
  z-index: 1;
  width: 60%;
  min-width: 420px;
  min-height: 400px;
  padding: 38px 30px 32px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.agpct-eyebrow,
.agpct-heading,
.agpct-list,
.agpct-button {
  font-family: Quicksand, Arial, sans-serif;
}

.agpct-eyebrow {
  margin: 0 0 13px;
  color: var(--agpct-amber);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.agpct-heading {
  margin: 0;
  max-width: 100%;
  color: var(--agpct-ink);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.agpct-card--gallery .agpct-heading { color: #fff; }

.agpct-list {
  list-style: none;
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  width: 100%;
}

.agpct-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #30343a;
  font-size: 12.8px;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
}

.agpct-list li > span:last-child {
  display: inline-block;
  min-width: 0;
  max-width: calc(100% - 38px);
}

.agpct-card--gallery .agpct-list li { color: rgba(255,255,255,.93); }

.agpct-check {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--agpct-amber);
  box-shadow: 0 3px 10px rgba(219,142,1,.20);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.agpct-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 218px;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 22px;
  border: 1px solid var(--agpct-amber);
  border-radius: 7px;
  color: #fff !important;
  background: var(--agpct-amber);
  box-shadow: 0 7px 18px rgba(181, 128, 8, .16);
  font-size: 13.2px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.agpct-button:hover,
.agpct-button:focus-visible {
  color: #fff !important;
  background: var(--agpct-amber-dark);
  border-color: var(--agpct-amber-dark);
  box-shadow: 0 9px 22px rgba(181, 128, 8, .22);
}

.agpct-arrow {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  transition: transform .22s ease;
}
.agpct-button:hover .agpct-arrow,
.agpct-button:focus-visible .agpct-arrow { transform: translateX(4px); }

@media (max-width: 1439px) {
  .agpct-grid { padding-left: 42px; padding-right: 42px; gap: 18px; }
  .agpct-card { min-height: 390px; }
  .agpct-content { width: 61%; min-width: 360px; min-height: 390px; padding: 35px 26px 28px 30px; }
  .agpct-heading { font-size: 28px; }
  .agpct-list { margin-top: 24px; gap: 12px; }
  .agpct-list li { font-size: 12px; }
  .agpct-button { margin-top: 28px; }
}

@media (max-width: 1199px) {
  .agpct-grid { padding-left: 34px; padding-right: 34px; }
  .agpct-content { width: 64%; min-width: 320px; }
  .agpct-heading { font-size: 26px; }
  .agpct-card-media { width: 50%; }
}

@media (max-width: 1023px) {
  .agpct-grid {
    max-width: 960px;
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }
  .agpct-card { min-height: 430px; }
  .agpct-content { width: 62%; min-width: 0; min-height: 430px; padding: 38px 32px 30px; }
  .agpct-card-media { width: 54%; }
  .agpct-heading,
  .agpct-list li { white-space: normal; }
}

@media (max-width: 767px) {
  .agpct-grid { padding-left: 10px; padding-right: 10px; gap: 14px; }
  .agpct-card { min-height: 500px; border-radius: 8px; }
  .agpct-card-media {
    inset: auto 0 0 0;
    width: 100%;
    height: 54%;
  }
  .agpct-card-img { object-position: center center; }
  .agpct-card--artist .agpct-card-shade {
    background: linear-gradient(180deg,
      rgba(248,245,239,.998) 0%,
      rgba(248,245,239,.99) 43%,
      rgba(248,245,239,.82) 59%,
      rgba(248,245,239,.38) 74%,
      rgba(248,245,239,.05) 90%,
      rgba(248,245,239,0) 100%);
  }
  .agpct-card--gallery .agpct-card-shade {
    background: linear-gradient(180deg,
      rgba(14,17,21,.998) 0%,
      rgba(14,17,21,.99) 45%,
      rgba(14,17,21,.86) 61%,
      rgba(14,17,21,.48) 76%,
      rgba(14,17,21,.08) 92%,
      rgba(14,17,21,0) 100%);
  }
  .agpct-content {
    width: 100%;
    min-height: 500px;
    padding: 27px 21px 23px;
  }
  .agpct-eyebrow { margin-bottom: 10px; font-size: 11px; }
  .agpct-heading { max-width: 100%; font-size: 27px; white-space: normal; }
  .agpct-list { margin-top: 20px; gap: 9px; }
  .agpct-list li { max-width: 100%; font-size: 12px; white-space: normal; }
  .agpct-button { min-width: 190px; min-height: 46px; margin-top: 22px; padding: 0 18px; font-size: 12.8px; }
}

@media (prefers-reduced-motion: reduce) {
  .agpct-card,
  .agpct-button,
  .agpct-arrow { transition: none !important; }
}
