.tribute-section {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-light);
  padding: 2rem 0;
}

.tribute-container {
  max-width: 75rem;
  width: calc(100% - 4rem);
  margin: 1.5rem 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

.tribute-image-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tribute-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 20rem;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tribute-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  transition: transform 0.4s ease;
}

.tribute-photo-wrapper:hover img {
  transform: scale(1.05);
}

.tribute-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.tribute-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.tribute-header h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-black);
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--neutral-dark);
  margin: 0;
  text-transform: uppercase;
}

.tribute-header h2 span {
  display: inline-block;
}

.tribute-in {
  font-weight: var(--fw-medium);
  font-size: 0.5em;
  display: block;
}

.tribute-loving {
  font-style: italic;
  color: var(--primary-2);
  display: block;
}

.tribute-of {
  font-weight: var(--fw-medium);
  font-size: 0.5em;
  display: block;
}

.tribute-bishop {
  color: var(--primary-2);
  display: block;
}

.tribute-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  font-style: italic;
}

.tribute-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.tribute-bishop,
.tribute-mother {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tribute-bishop h3,
.tribute-mother h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h3);
  color: var(--primary-2);
  margin: 0;
}

.script-name {
  font-style: italic;
}

.tribute-bishop p,
.tribute-mother p {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
}

.tribute-legacy {
  padding: 0.875rem;
  background: rgba(0, 0, 0, 0.03);
  border-left: 0.25rem solid var(--primary-2);
  border-radius: 0.5rem;
}

.legacy-quote {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  font-style: italic;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}

.tribute-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  padding-top: 0.75rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.15);
}

.tribute-church-name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-base);
  color: var(--primary-2);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tribute-tagline {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  line-height: var(--lh-base);
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.divider-dot {
  margin: 0 0.5rem;
  color: var(--primary-2);
}

@media (max-width: 1024px) {
  .tribute-section {
    padding: 1.5rem 0;
  }

  .tribute-container {
    gap: 1.5rem;
    width: calc(100% - 3rem);
    margin: 1.5rem;
  }

  .tribute-photo-wrapper {
    max-width: 18rem;
  }

  .tribute-header h2 {
    font-size: var(--fs-h4);
  }

  .tribute-text-side {
    gap: 0.75rem;
  }
}

@media (max-width: 900px) {
  .tribute-section {
    padding: 1.4rem 0;
  }

  .tribute-container {
    gap: 1.75rem;
    width: calc(100% - 2.5rem);
    margin: 1.4rem;
  }

  .tribute-photo-wrapper {
    max-width: 19rem;
  }

  .tribute-header h2 {
    font-size: var(--fs-h4);
  }

  .tribute-text-side {
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .tribute-section {
    padding: 1.25rem 0;
    min-height: 40vh;
  }

  .tribute-container {
    gap: 1.25rem;
    width: calc(100% - 2rem);
    margin: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .tribute-photo-wrapper {
    max-width: 16rem;
  }

  .tribute-header {
    text-align: center;
  }

  .tribute-header h2 {
    font-size: var(--fs-h5);
  }

  .tribute-text-side {
    gap: 0.625rem;
    align-items: center;
  }

  .tribute-content {
    gap: 0.75rem;
    text-align: center;
  }

  .tribute-bishop,
  .tribute-mother {
    text-align: center;
  }

  .tribute-bishop h3,
  .tribute-mother h3 {
    font-size: var(--fs-h6);
  }

  .tribute-bishop p,
  .tribute-mother p {
    font-size: var(--fs-small);
  }
}

@media (max-width: 480px) {
  .tribute-section {
    padding: 1rem 0;
    min-height: 35vh;
  }

  .tribute-container {
    gap: 1rem;
    width: calc(100% - 2rem);
    margin: 1rem;
  }

  .tribute-photo-wrapper {
    max-width: 14rem;
  }

  .tribute-header h2 {
    font-size: 1.65rem;
  }

  .tribute-text-side {
    gap: 0.5rem;
  }

  .tribute-content {
    gap: 0.625rem;
  }

  .tribute-bishop h3,
  .tribute-mother h3 {
    font-size: 1.3rem;
  }

  .tribute-bishop p,
  .tribute-mother p {
    font-size: 1.1rem;
  }

  .legacy-quote {
    font-size: 1.05rem;
  }

  .tribute-legacy {
    padding: 0.75rem;
  }
}

@media (max-width: 400px) {
  .tribute-section {
    padding: 0.75rem 0;
    min-height: 30vh;
  }

  .tribute-container {
    width: calc(100% - 1.5rem);
    margin: 0.75rem;
    gap: 0.875rem;
  }

  .tribute-photo-wrapper {
    max-width: 12rem;
  }

  .tribute-header h2 {
    font-size: 1.5rem;
  }

  .tribute-text-side {
    gap: 0.5rem;
  }

  .tribute-content {
    gap: 0.5rem;
  }

  .tribute-bishop h3,
  .tribute-mother h3 {
    font-size: 1.2rem;
  }

  .tribute-bishop p,
  .tribute-mother p {
    font-size: 1.05rem;
  }

  .legacy-quote {
    font-size: 1rem;
  }

  .tribute-legacy {
    padding: 0.625rem;
  }
}

@media (max-width: 375px) {
  .tribute-section {
    padding: 1rem 0;
    min-height: 35vh;
  }

  .tribute-container {
    width: calc(100% - 1.25rem);
    margin: 0.625rem;
    gap: 0.875rem;
  }

  .tribute-photo-wrapper {
    max-width: 13rem;
  }

  .tribute-header h2 {
    font-size: 1.4rem;
  }

  .tribute-text-side {
    gap: 0.5rem;
  }

  .tribute-content {
    gap: 0.5rem;
  }

  .tribute-bishop h3,
  .tribute-mother h3 {
    font-size: 1.15rem;
  }

  .tribute-bishop p,
  .tribute-mother p {
    font-size: 1rem;
  }

  .legacy-quote {
    font-size: 0.95rem;
  }

  .tribute-legacy {
    padding: 0.625rem;
  }
}
