/* PC_SUB DEDICATED FILE */
/* =========================================================
   35_premium.css (PC)
   - Premium 8 fixed board layout
   ========================================================= */

.prm-page{
  padding: 34px 0 56px;
}

.prm-inner{
  width: min(1480px, calc(100% - 80px));
  margin: 0 auto;
}

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

.prm-hero{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 34px;
  margin-bottom: 62px;
}

.prm-hero-line{
  position: relative;
  height: 55px;
}

.prm-hero-line::before{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-color: #c89459;
  opacity: .95;
}

.prm-hero-line--left::before{
  left: 0;
  border-top: 2px solid #c89459;
  border-left: 2px solid #c89459;
  border-bottom: 2px solid #c89459;
  border-right: 0;
  border-radius: 54px 0 0 54px;
}

.prm-hero-line--right::before{
  right: 0;
  border-top: 2px solid #c89459;
  border-right: 2px solid #c89459;
  border-bottom: 2px solid #c89459;
  border-left: 0;
  border-radius: 0 54px 54px 0;
}

.prm-hero-dot{
  position: absolute;
  top: -10px;
  width: 18px;
  height: 18px;
  background: #c89459;
}

.prm-hero-line--left .prm-hero-dot{
  right: 58px;
}

.prm-hero-line--right .prm-hero-dot{
  left: 58px;
  top: auto;
  bottom: -10px;
}

.prm-hero-title{
  margin: 0;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: #444;
  white-space: nowrap;

  opacity: 0;
  transform: translateY(-26px);
  animation: premiumSectionHeadFadeDown .95s cubic-bezier(.22,.61,.36,1) both;
}

.prm-hero-title-main{
  color: #444;
}

.prm-hero-title-accent{
  color: #c89459;
  font-weight: 550;
}

@keyframes premiumSectionHeadFadeDown{
  from{
    opacity: 0;
    transform: translateY(-26px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   BOARD
   ========================= */

.prm-board{
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  column-gap: 46px;
  align-items: start;
}

/* =========================
   LEFT SIDE
   ========================= */

.prm-side{
  position: sticky;
  top: calc(var(--header-h) + 28px);
  align-self: start;
}

.prm-side-box{
  min-height: 700px;
  border: 2px solid #c89459;
  border-top-left-radius: 140px;
  padding: 120px 28px 42px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prm-side-kicker{
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #2e211a;
}

.prm-side-brand{
  margin: 0 0 26px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #2e211a;
}

.prm-side-number{
  margin: 0;
  font-size: 240px;
  font-weight: 900;
  line-height: .88;
  letter-spacing: -0.06em;
  color: #c89459;
}

.prm-side-copy{
  margin-top: 22px;
}

.prm-side-copy-top{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #2e211a;
}

.prm-side-copy-bottom{
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #243b6b;
}

/* =========================
   GRID
   ========================= */

.prm-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #dcc3a4;
  border-left: 1px solid #dcc3a4;
  background: #fff;
}

.prm-card{
  min-width: 0;
  min-height: 350px;
  padding: 16px 16px 16px;
  border-right: 1px solid #dcc3a4;
  border-bottom: 1px solid #dcc3a4;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.prm-card-media{
  margin: 0 0 12px;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #f3f1ed;
}

.prm-card-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prm-card-body{
  display: flex;
  flex-direction: column;
  min-height: 86px;
}

.prm-card-label{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #222;
}

.prm-card-desc{
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.035em;
  color: #2E3B42;
  word-break: keep-all;
}

/* =========================
   Reduced motion
   ========================= */

@media (prefers-reduced-motion: reduce){
  .prm-hero-title{
    opacity: 1;
    transform: none;
    animation: none;
  }

  .prm-side{
    position: static;
  }
}