/* PASYAKIN SYSTEM - ARTE Page Styles */

.arte-page {
  background: #F1F1F1;
  min-height: 100vh;
}

/* ── Hero ── */
.arte-hero {
  max-width: 941px;
  margin: 0 auto;
  padding: 80px 0 60px;
}

.arte-hero-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0;
}

.arte-hero-title {
  font-family: 'Luxerie', serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 3.84px;
  color: #000;
  line-height: normal;
}

.arte-hero-subtitle {
  font-family: 'Maven Pro', sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.92px;
  color: #000;
  line-height: 232%;
}

.arte-hero-divider {
  width: 100%;
  height: 1px;
  background: #979B9E;
  margin: 0;
}

.arte-hero-tags {
  display: flex;
  align-items: center;
  gap: 65px;
  padding: 24px 0;
}

.arte-hero-tag {
  font-family: 'Maven Pro', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.5px;
}

.arte-hero-description {
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #252525;
  line-height: 200%;
  padding: 40px 47px 0;
}

/* ── Record section ── */
.arte-record-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 80px 0;
}

.arte-block-image {
  width: 100%;
  display: block;
}

.arte-record-caption {
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  padding: 40px 0 60px;
}

/* ── Photo section ── */
.arte-photo-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px 80px;
}

.arte-photo-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.arte-photo-title {
  font-family: 'Luxerie', serif;
  font-size: 40px;
  font-weight: 400;
  color: #000;
  line-height: normal;
}

.arte-photo-title-line {
  width: 100%;
  height: 1px;
  background: #989CA0;
  margin-top: 8px;
}

.arte-photo-gallery {
  display: flex;
  align-items: center;
  gap: 68px;
}

.arte-photo-item {
  flex: 1;
  aspect-ratio: 46 / 53;
  overflow: hidden;
  background: #ddd;
}

.arte-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .arte-record-section { padding: 20px 20px 0; }
  .arte-photo-section { padding: 0 20px 60px; }
  .arte-hero { padding: 40px 20px; }
}

@media (max-width: 768px) {
  .arte-hero-heading {
    flex-direction: column;
    gap: 10px;
  }

  .arte-hero-title { font-size: 40px; }
  .arte-hero-subtitle { font-size: 20px; }

  .arte-hero-tags {
    flex-wrap: wrap;
    gap: 15px;
  }

  .arte-hero-description {
    font-size: 16px;
    padding: 24px 0 0;
  }

  .arte-photo-gallery {
    flex-direction: column;
    gap: 20px;
  }

  .arte-photo-item {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}
