/* Bio Page - Modern Professional Redesign */

/* Import Engagement Funnel Components */
@import url('../../components/engagement-funnel.css');

/* ===== HERO BIO ===== */
.hero-bio {
  position: relative;
  min-height: var(--hero-bio-min-h, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bio .hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bio .hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% var(--hero-bio-focus-y, 50%);
  transform: scale(var(--hero-bio-zoom, 1));
  filter: blur(var(--hero-bio-blur, 4px)) brightness(var(--hero-bio-brightness, 0.8));
}

.hero-bio .hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.55) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.hero-bio .hero-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Titolo unificato - eredita da .page-title in base.css */
.hero-bio .hero-title {
  margin: 0 0 1.5rem 0;
  text-shadow: 0 2px 30px rgba(212, 175, 55, 0.3);
  animation: heroFadeIn 0.8s ease-out;
}

/* Sottotitolo unificato - eredita da .page-claim in base.css */
.hero-bio .hero-claim {
  margin: 0 0 2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeIn 1s ease-out 0.2s backwards;
}

.hero-bio .btn-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: heroFadeIn 1.2s ease-out 0.4s backwards, bounce 2s ease-in-out 2s infinite;
}

.hero-bio .btn-anchor:hover {
  background: rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
  transform: translateY(4px);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== BIO PANELS ===== */
.bio-panels {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem 2rem;
  background: #0a0a0a;
}

.panels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  padding-top: 1rem; /* Space for icons */
}

.panel-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  padding-top: 3rem; /* Extra space for icon */
  margin-top: 1.5rem; /* Space for icon overflow */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible; /* Allow icon to overflow */
}

.panel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.panel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1);
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.panel-card:hover::before {
  opacity: 1;
}

/* ===== PANEL ICONS ===== */
.panel-icon {
  position: absolute;
  top: -20px;
  right: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  font-size: 1.4rem;
  color: #d4af37;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  z-index: 2;
}

.panel-card:hover .panel-icon {
  transform: translateY(-4px) scale(1.05);
  border-color: #d4af37;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.panel-icon--download {
  background: linear-gradient(135deg, #d4af37 0%, #c9a135 100%);
  color: #0a0a0a;
  border-color: transparent;
}

.panel-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.panel-title::before {
  content: '';
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #d4af37 0%, #f0d478 100%);
  border-radius: 2px;
}

.panel-body {
  min-height: 150px;
  margin-bottom: 2rem;
}

.panel-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.panel-intro.placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Quote styling for biography */
.panel-quote {
  position: relative;
  padding-left: 1.5rem;
}

.panel-quote .quote-mark {
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.25);
  pointer-events: none;
}

.panel-quote .panel-intro {
  font-style: italic;
  border-left: 3px solid rgba(212, 175, 55, 0.4);
  padding-left: 1rem;
}

/* Narrative intro for story */
.panel-intro--narrative {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid rgba(212, 175, 55, 0.2);
}

.panel-intro--narrative::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  float: left;
  line-height: 1;
  margin-right: 0.3rem;
  margin-top: 0.1rem;
}

/* List intro for curriculum */
.panel-intro--list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panel-intro--list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.panel-intro--list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Panel tags for writings */
.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.panel-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.panel-tags li i {
  font-size: 0.7rem;
  color: #d4af37;
}

/* Panel stats for press kit */
.panel-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.panel-stat i {
  color: #d4af37;
}

.panel-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.panel-footer .btn {
  flex: 1;
  min-width: 140px;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.panel-footer .btn-secondary {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

.panel-footer .btn-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.panel-footer .btn-secondary i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.panel-footer .btn-secondary:hover i {
  transform: translateX(3px);
}

/* Primary button for press kit */
.panel-footer .btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #c9a135 100%);
  border: none;
  color: #0a0a0a;
  font-weight: 700;
}

.panel-footer .btn-primary:hover {
  background: linear-gradient(135deg, #e8c54a 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.panel-footer .btn-primary i {
  transition: transform 0.3s ease;
}

.panel-footer .btn-primary:hover i {
  transform: translateY(-2px);
}

/* ===== PRESS KIT CTA ===== */
.bio-cta {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.bio-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: ctaPulse 4s ease-in-out infinite;
}

.bio-cta .btn-primary {
  position: relative;
  z-index: 1;
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  border: none;
  border-radius: 14px;
  color: #0a0a0a;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.bio-cta .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

/* ===== MODALS ===== */
.modal-target {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s ease-out;
}

.modal-target:target {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1;
}

.modal__close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  color: #d4af37;
  transform: rotate(90deg);
}

.modal__content {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.modal__content .modal-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 2rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.modal__content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal__content p:last-child {
  margin-bottom: 0;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== CARD TYPE VARIATIONS ===== */

/* Biography card - warm gold accent */
.panel-card--biography {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.panel-card--biography:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(20, 20, 20, 0.95) 100%);
}

/* Curriculum card - professional blue-ish accent */
.panel-card--curriculum {
  background: linear-gradient(135deg, rgba(100, 149, 237, 0.04) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.panel-card--curriculum:hover {
  background: linear-gradient(135deg, rgba(100, 149, 237, 0.08) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.panel-card--curriculum .panel-icon {
  color: #6495ed;
  border-color: rgba(100, 149, 237, 0.3);
}

.panel-card--curriculum:hover .panel-icon {
  border-color: #6495ed;
  box-shadow: 0 12px 32px rgba(100, 149, 237, 0.2);
}

/* Story card - warm narrative feel */
.panel-card--story {
  background: linear-gradient(135deg, rgba(205, 133, 63, 0.04) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.panel-card--story:hover {
  background: linear-gradient(135deg, rgba(205, 133, 63, 0.08) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.panel-card--story .panel-icon {
  color: #cd853f;
  border-color: rgba(205, 133, 63, 0.3);
}

.panel-card--story:hover .panel-icon {
  border-color: #cd853f;
  box-shadow: 0 12px 32px rgba(205, 133, 63, 0.2);
}

/* Writings card - scholarly purple */
.panel-card--writings {
  position: relative;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.04) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.panel-card--writings:hover {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.08) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.panel-card--writings .panel-icon {
  color: #9370db;
  border-color: rgba(138, 43, 226, 0.3);
}

.panel-card--writings:hover .panel-icon {
  border-color: #9370db;
  box-shadow: 0 12px 32px rgba(138, 43, 226, 0.2);
}

.panel-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #d4af37 0%, #c9a135 100%);
  color: #1a1a1a;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Titoli responsive gestiti da .page-title e .page-claim in base.css */

  .hero-bio .hero-overlay {
    padding: 3rem 1.5rem;
  }

  .bio-panels {
    padding: 3rem 1rem;
  }

  .panels-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .panel-card {
    padding: 2rem 1.5rem;
    padding-top: 2.5rem;
  }

  .panel-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    top: -16px;
    right: 1.5rem;
  }

  .panel-title {
    font-size: 1.5rem;
  }

  .panel-quote .quote-mark {
    font-size: 3rem;
  }

  .panel-intro--narrative::first-letter {
    font-size: 2rem;
  }

  .panel-tags {
    gap: 0.4rem;
  }

  .panel-tags li {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
  }

  .panel-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .bio-cta {
    margin: 3rem auto;
    padding: 2rem 1.5rem;
  }

  .bio-cta .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.05rem;
  }

  .modal__dialog {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .modal__content .modal-title {
    font-size: 1.8rem;
  }
}

/* Titoli responsive gestiti da .page-title e .page-claim in base.css */

/* ===== PRESS KIT CARD ===== */
.panel-card--presskit {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border-color: rgba(212, 175, 55, 0.25);
}

.panel-card--presskit .panel-title i {
  margin-right: 0.5rem;
  color: #d4af37;
}

.panel-card--presskit:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

/* ===== PRESS KIT MODAL ===== */
.presskit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.presskit-modal.active {
  opacity: 1;
}

.presskit-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.presskit-modal__container {
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.presskit-modal.active .presskit-modal__container {
  transform: translateY(0);
}

.presskit-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.presskit-modal__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.presskit-modal__title i {
  color: #d4af37;
}

.presskit-modal__close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.presskit-modal__close:hover {
  color: #d4af37;
}

.presskit-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

/* Sections */
.presskit-section {
  margin-bottom: 2rem;
}

.presskit-section:last-child {
  margin-bottom: 0;
}

.presskit-section__title {
  font-size: 1rem;
  font-weight: 600;
  color: #d4af37;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.presskit-section__title i {
  font-size: 0.9rem;
}

/* Documents */
.presskit-docs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.presskit-doc {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.presskit-doc:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.presskit-doc__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
}

.presskit-doc__icon i {
  font-size: 1.25rem;
  color: #d4af37;
}

.presskit-doc__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.presskit-doc__title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

.presskit-doc__meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.presskit-doc__action {
  color: #d4af37;
  font-size: 1rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.presskit-doc:hover .presskit-doc__action {
  opacity: 1;
}

/* Photos */
.presskit-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.presskit-photo {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease;
}

.presskit-photo:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.presskit-photo__preview {
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0a0a;
}

.presskit-photo__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.presskit-photo:hover .presskit-photo__preview img {
  transform: scale(1.05);
}

.presskit-photo__info {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.presskit-photo__title {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.presskit-photo__size {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.presskit-photo__download {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  color: #d4af37;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.presskit-photo:hover .presskit-photo__download {
  opacity: 1;
}

.presskit-photo__download:hover {
  background: #d4af37;
  color: #000;
}

/* Footer */
.presskit-modal__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.presskit-footer__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.75rem 0;
}

.presskit-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.presskit-footer__link:hover {
  color: #e8c54a;
}

.presskit-footer__link i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.presskit-footer__link:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 600px) {
  .presskit-modal__container {
    width: 95%;
    max-height: 90vh;
  }

  .presskit-modal__header {
    padding: 1.25rem 1.5rem;
  }

  .presskit-modal__title {
    font-size: 1.25rem;
  }

  .presskit-modal__body {
    padding: 1.5rem;
  }

  .presskit-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .presskit-doc {
    padding: 0.875rem 1rem;
  }
}
