body.inner-page {
  background-color: #f7f5f0;
  color: #1c1a17;
}

.inner-page .site-header {
  background-color: rgba(247, 245, 240, 0.9);
}

.page-body.inner-container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--layout-side-padding) 8rem;
}

.page-heading {
  margin-bottom: 4rem;
  position: relative;
}

.page-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #8b2635, transparent);
  margin-top: 1.4rem;
}

.page-heading .eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #3b3934;
  margin-bottom: 0.75rem;
}

.page-heading h1 {
  font-size: 3.3rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.page-heading p {
  max-width: 760px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #3b3934;
  margin-top: 1.2rem;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.bio-content .bio-block {
  padding: 0 0 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid rgba(28, 26, 23, 0.1);
}

.bio-content .bio-block:last-child {
  margin-bottom: 0;
}

.bio-content h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.bio-content p {
  line-height: 1.8;
  margin: 0;
  color: #272520;
}

.bio-side {
  position: sticky;
  top: 18vh;
}

.bio-side img {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.bio-keyfacts {
  margin-top: 1.3rem;
  padding: 1.25rem;
  background-color: #efe9dd;
}

.bio-keyfacts h3 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.bio-keyfacts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bio-keyfacts li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(28, 26, 23, 0.08);
  color: #272520;
}

.bio-keyfacts li:last-child {
  border-bottom: 0;
}

.films-table-wrap {
  border: 1px solid rgba(28, 26, 23, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  overflow-x: auto;
}

.films-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.films-table th,
.films-table td {
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(28, 26, 23, 0.1);
}

.films-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3b3934;
  background-color: #efe9dd;
}

.films-table tbody tr:hover {
  background-color: rgba(139, 38, 53, 0.06);
}

.films-table td {
  color: #1c1a17;
}

.film-poster-cell {
  width: 90px;
}

.film-poster-cell a {
  display: inline-block;
  line-height: 0;
}

.film-poster {
  width: 58px;
  height: 82px;
  object-fit: cover;
  border: 1px solid rgba(28, 26, 23, 0.12);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.film-poster:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
}

.film-link-cell a {
  color: #8b2635;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.news-list {
  display: grid;
  gap: 2.5rem;
}

.news-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.8rem;
  align-items: start;
  border-top: 1px solid rgba(28, 26, 23, 0.12);
  padding-top: 2rem;
}

.news-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.news-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-content .news-date {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b3934;
  margin-bottom: 0.6rem;
}

.news-content h2 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.25;
}

.news-content p {
  margin: 0;
  color: #2f2c27;
  line-height: 1.7;
}

.news-content .external-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: #8b2635;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 1024px) {
  .page-body.inner-container {
    padding-inline: 2rem;
    padding-bottom: 4rem;
  }

  .page-heading h1 {
    font-size: 2.6rem;
  }

  .bio-grid,
  .news-item {
    grid-template-columns: 1fr;
  }

  .bio-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-heading h1 {
    font-size: 2.15rem;
  }

  .news-content h2 {
    font-size: 1.45rem;
  }
}
