.tartan-text-feature {
  position: relative;
  display: flex;
  justify-content: center;
  padding: var(--pa-space-2xl) var(--pa-space-3xl);
  border-radius: var(--pa-radius-md);
  overflow: hidden;
  background: url("../../images/pa-tartan.jpg") center/cover no-repeat, var(--pa-color-navy);
  text-align: center;
}
.tartan-text-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 47, 78, 0.16) 0%, rgba(14, 47, 78, 0.8) 83.125%);
}
.tartan-text-feature__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pa-space-lg);
  max-width: 45.75rem;
}
.tartan-text-feature__heading {
  font-family: "Ancizar Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .tartan-text-feature__heading {
    font-size: 2.625rem;
  }
}
.tartan-text-feature__heading {
  color: var(--pa-color-white);
}
.tartan-text-feature__quote {
  font-family: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.35;
  margin: 0;
  color: var(--pa-color-white);
}
.tartan-text-feature__attribution {
  font-family: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 1.5px;
  color: var(--pa-color-white);
  text-transform: uppercase;
}
.tartan-text-feature__cta {
  display: flex;
  align-items: center;
  gap: var(--pa-space-2xs);
  text-decoration: none;
}
.tartan-text-feature__cta-label {
  font-family: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 1.5px;
  color: var(--pa-color-white);
  text-transform: uppercase;
}
.tartan-text-feature__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--pa-radius-pill);
  background: var(--pa-color-blue);
  color: var(--pa-color-light-blue);
  font-size: 0.875rem;
}
