/* Program page - section specific styles */

.program-intro {
  padding: 3rem 1.5rem 3.5rem;
  background: var(--color-off-white);
}

.programs-inner {
  max-width: 1517px;
  margin: 0 auto;
}

.artist-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 64px;
}

.artist-card {
  width: 100%;
  min-height: 380px;
  background: var(--color-placeholder);
  border-radius: 8px;
}

.call-for-entries {
  max-width: 800px;
  margin: 0 auto;
}

.call-for-entries h1 {
  margin: 0 0 20px;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 2.92vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-maroon);
}

.call-for-entries p {
  margin: 0 0 16px;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #392A2A;
  letter-spacing: 0.35px;
}

.call-for-entries p.lead {
  margin: 8px 0 10px;
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 18px;
}

@media (max-width: 992px) {
  .artist-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .artist-card {
    min-height: 220px;
  }

  .call-for-entries h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .call-for-entries p {
    font-size: 17px;
    line-height: 1.4;
  }
}

.program-howto {
  padding: 4.5rem 1.5rem;
  background: var(--color-white);
}

.howto-card {
  max-width: 920px;
  margin: 0 auto;
  background: #f5f5f5;
  border: 1px solid #bcbcbc;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  padding: 3rem 1.75rem 2.75rem;
}

.howto-title {
  margin: 0 0 1rem;
  color: var(--color-maroon);
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 48px;
  font-weight: 600;
  text-transform: uppercase;
}

.howto-title .fa {
  font-size: 0.9em;
}

.howto-text {
  margin: 0 0 0.9rem;
  font-size: clamp(1rem, 1.1vw, 1.45rem);
  color: #392A2A;
}

.howto-email {
  margin: 0;
  font-size: clamp(1.4rem, 1.7vw, 2.2rem);
  font-weight: 500;
  color: var(--color-maroon);
}

.howto-email a {
  color: inherit;
  text-decoration: underline;
}

.howto-deadline {
  margin: 0.45rem 0 1.25rem;
  font-size: clamp(0.95rem, 1.12vw, 1.35rem);
  color: #392A2A;
}

.howto-divider {
  margin: 1rem auto 1.75rem;
  border: 0;
  border-top: 1px solid #969696;
  max-width: 100%;
  opacity: 1;
}

.howto-subtitle {
  margin: 0 0 0.7rem;
  font-size: clamp(1.12rem, 1.25vw, 1.85rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.howto-list {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 1.12vw, 1.5rem);
  line-height: 1.4;
  color: #392A2A;
  letter-spacing: 0.35px;
}

.howto-format {
  margin: 0 0 0.6rem;
  font-size: clamp(1rem, 1.12vw, 1.45rem);
  color: #392A2A;
  letter-spacing: 0.35px;
  word-break: break-word;
}


@media (max-width: 992px) {
  .program-howto {
    padding-bottom: 3rem;
  }

  .howto-card {
    border-radius: 12px;
    padding: 2rem 1rem 1.75rem;
  }
}

.program-guidelines {
  padding: 4.5rem 1.5rem;
  background: #F8F7F5;
}

.guidelines-title {
  margin: 0 0 3rem;
  font-size: clamp(2rem, 2.78vw, 3.5rem);
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--color-maroon);
}

.guidelines-list {
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid #d0d0d0;
}

.guideline-item {
  border-bottom: 1px solid #d0d0d0;
}

.guideline-summary {
  list-style: none;
  cursor: pointer;
  margin: 0;
  padding: 1.1rem 2rem 1rem 0;
  font-size: clamp(1.13rem, 1.25vw, 1.7rem);
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-text-primary);
  position: relative;
  letter-spacing: 0.35px;
}

.guideline-summary::-webkit-details-marker {
  display: none;
}

.guideline-summary::after {
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9em;
  color: var(--color-text-secondary);
  transition: transform 0.2s ease;
}

.guideline-item[open] .guideline-summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.guideline-content {
  margin: 0;
  padding: 0 2rem 1.1rem 0;
  font-size: clamp(1rem, 1.11vw, 1.35rem);
  line-height: 1.35;
  color: #202020;
  letter-spacing: 0.35px;
}

@media (max-width: 992px) {
  .program-guidelines {
    padding-bottom: 3.25rem;
  }

  .guidelines-title {
    margin-bottom: 2rem;
  }

  .guideline-summary {
    padding-right: 1.5rem;
  }

  .guideline-content {
    padding-right: 1.5rem;
  }
}

.program-memories {
  padding: 4.5rem 1.5rem;
  background: var(--color-white);
}

.memories-title {
  margin: 0;
  font-size: clamp(2rem, 2.78vw, 3.5rem);
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--color-maroon);
}

.memories-subtitle {
  margin: 0.65rem 0 2rem;
  font-size: clamp(1rem, 1.1vw, 1.45rem);
  color: #392A2A;
  letter-spacing: 0.35px;
}

.memories-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-template-areas:
    "left top"
    "left bottom";
}

.memory {
  background: var(--color-placeholder);
  border-radius: 8px;
  min-height: 250px;
}

.memory-large {
  grid-area: left;
  min-height: 670px;
}

.memory-top-right {
  grid-area: top;
  min-height: 420px;
}

.memory-bottom-right {
  grid-area: bottom;
  min-height: 420px;
}

@media (max-width: 992px) {
  .program-memories {
    padding-bottom: 3rem;
  }

  .memories-subtitle {
    margin-bottom: 1.25rem;
  }

  .memories-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "top"
      "bottom";
  }

  .memory-large,
  .memory-top-right,
  .memory-bottom-right {
    min-height: 240px;
  }
}

