.content-page {
  color: var(--raa-charcoal-900);
  background:
    linear-gradient(90deg, rgba(11, 20, 43, .035) 1px, transparent 1px),
    var(--raa-ivory-50);
  background-size: 88px 88px;
}

.content-page--about,
.content-page--contact,
.content-page--articles {
  padding-top: 18px;
}

.content-page.is-loading > :not(.content-skeleton) {
  display: none;
}

.content-page:not(.is-loading) .content-skeleton {
  display: none;
}

.content-hero,
.about-showcase,
.journal-list,
.content-grid,
.content-detail,
.content-skeleton {
  width: min(1480px, calc(100% - 60px));
  margin-inline: auto;
}

.content-skeleton {
  display: grid;
  gap: 28px;
  padding-bottom: 80px;
}

.content-skeleton-hero,
.content-skeleton-tools,
.content-skeleton-cards article,
.content-skeleton-journal article,
.content-skeleton-contact section,
.content-skeleton-contact aside {
  overflow: hidden;
  border: 1px solid rgba(226, 207, 204, .9);
  border-radius: 10px;
  background: rgba(255, 250, 247, .82);
  box-shadow: 0 22px 62px rgba(52, 18, 28, .07);
}

.content-skeleton-hero {
  min-height: clamp(290px, 17vw, 340px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 34%);
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 4vw, 58px);
}

.content-skeleton--articles .content-skeleton-hero,
.content-skeleton--contact .content-skeleton-hero,
.content-skeleton--about .content-skeleton-hero {
  background:
    linear-gradient(90deg, rgba(43, 7, 19, .12), rgba(255, 250, 247, .92) 48%, rgba(139, 30, 63, .1)),
    rgba(255, 250, 247, .9);
}

.content-skeleton-hero__copy,
.content-skeleton-cards article,
.content-skeleton-journal article,
.content-skeleton-contact section,
.content-skeleton-contact aside {
  display: grid;
  align-content: center;
  gap: 13px;
}

.content-skeleton-hero__copy span,
.content-skeleton-hero__copy strong,
.content-skeleton-hero__copy p,
.content-skeleton-hero__media,
.content-skeleton-tools span,
.content-skeleton-cards article div,
.content-skeleton-cards article span,
.content-skeleton-cards article strong,
.content-skeleton-cards article p,
.content-skeleton-journal article div,
.content-skeleton-journal article span,
.content-skeleton-journal article strong,
.content-skeleton-journal article p,
.content-skeleton-contact span,
.content-skeleton-contact strong,
.content-skeleton-contact p,
.content-skeleton-contact aside div,
.content-skeleton-form span {
  overflow: hidden;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, #efe0dc 0%, #fff7f3 42%, #ead7d2 78%);
  background-size: 220% 100%;
  animation: contentSkeletonShimmer 1.15s ease-in-out infinite;
}

.content-skeleton-hero__copy span {
  width: 130px;
  height: 14px;
}

.content-skeleton-hero__copy strong {
  width: min(560px, 82%);
  height: clamp(42px, 5vw, 76px);
  border-radius: 14px;
}

.content-skeleton-hero__copy p {
  width: min(640px, 90%);
  height: 14px;
}

.content-skeleton-hero__copy p.is-short {
  width: min(440px, 62%);
}

.content-skeleton-hero__media {
  min-height: 210px;
  border-radius: 9px;
}

.content-skeleton-cards,
.content-skeleton-journal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.content-skeleton-cards article,
.content-skeleton-journal article {
  min-height: 270px;
  padding: 18px;
}

.content-skeleton-cards article div,
.content-skeleton-journal article div {
  height: 150px;
  border-radius: 8px;
}

.content-skeleton-cards article span,
.content-skeleton-journal article span {
  width: 90px;
  height: 13px;
}

.content-skeleton-cards article strong,
.content-skeleton-journal article strong {
  width: 74%;
  height: 26px;
  border-radius: 10px;
}

.content-skeleton-cards article p,
.content-skeleton-journal article p {
  width: 92%;
  height: 13px;
}

.content-skeleton-tools {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px;
}

.content-skeleton-tools .is-search {
  height: 46px;
  border-radius: 8px;
}

.content-skeleton-tools div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-skeleton-tools div span {
  width: 96px;
  height: 38px;
}

.content-skeleton-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 36%);
  gap: 22px;
}

.content-skeleton-contact section,
.content-skeleton-contact aside {
  min-height: 360px;
  padding: 24px;
}

.content-skeleton-contact section > span,
.content-skeleton-contact aside > span {
  width: 110px;
  height: 14px;
}

.content-skeleton-contact section > strong,
.content-skeleton-contact aside > strong {
  width: 52%;
  height: 30px;
  border-radius: 10px;
}

.content-skeleton-contact section > p,
.content-skeleton-contact aside > p {
  width: 78%;
  height: 13px;
}

.content-skeleton-contact aside div {
  height: 190px;
  border-radius: 9px;
}

.content-skeleton-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.content-skeleton-form span {
  height: 48px;
  border-radius: 8px;
}

.content-skeleton-form span:nth-child(5),
.content-skeleton-form span:nth-child(6) {
  grid-column: 1 / -1;
}

@keyframes contentSkeletonShimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content-skeleton-hero__copy span,
  .content-skeleton-hero__copy strong,
  .content-skeleton-hero__copy p,
  .content-skeleton-hero__media,
  .content-skeleton-tools span,
  .content-skeleton-cards article div,
  .content-skeleton-cards article span,
  .content-skeleton-cards article strong,
  .content-skeleton-cards article p,
  .content-skeleton-journal article div,
  .content-skeleton-journal article span,
  .content-skeleton-journal article strong,
  .content-skeleton-journal article p,
  .content-skeleton-contact span,
  .content-skeleton-contact strong,
  .content-skeleton-contact p,
  .content-skeleton-contact aside div,
  .content-skeleton-form span {
    animation: none;
  }
}

.about-showcase {
  position: relative;
  height: clamp(290px, 17vw, 340px);
  overflow: hidden;
  border-radius: 7px;
  background: #3b101c;
  box-shadow: 0 22px 70px rgba(52, 18, 28, .12);
}

.about-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-showcase--articles img {
  object-position: 42% center;
}

.about-showcase--contact img {
  object-position: 35% center;
}

.about-showcase--articles .about-showcase__shade {
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 230, 218, .18), transparent 32%),
    linear-gradient(90deg, rgba(43, 7, 19, .24), rgba(43, 7, 19, .10) 34%, rgba(43, 7, 19, .78) 72%),
    linear-gradient(0deg, rgba(43, 7, 19, .30), rgba(43, 7, 19, .04));
}

.about-showcase--contact .about-showcase__shade {
  background:
    radial-gradient(circle at 22% 44%, rgba(255, 236, 224, .12), transparent 32%),
    linear-gradient(90deg, rgba(43, 7, 19, .20), rgba(43, 7, 19, .10) 34%, rgba(43, 7, 19, .82) 74%),
    linear-gradient(0deg, rgba(43, 7, 19, .30), rgba(43, 7, 19, .03));
}

.about-showcase__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 236, 224, .22), transparent 28%),
    linear-gradient(90deg, rgba(43, 7, 19, .30), rgba(43, 7, 19, .18) 34%, rgba(43, 7, 19, .78) 72%),
    linear-gradient(0deg, rgba(43, 7, 19, .34), rgba(43, 7, 19, .04));
}

.about-showcase__copy {
  position: absolute;
  right: clamp(42px, 7vw, 120px);
  top: 50%;
  z-index: 2;
  width: min(610px, 48%);
  transform: translateY(-50%);
  color: #fff;
}

.about-showcase__copy .eyebrow {
  color: rgba(255, 255, 255, .78);
}

.about-showcase__copy h1 {
  max-width: 610px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(30px, 2.35vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(43, 7, 19, .56);
}

.about-showcase__copy p {
  max-width: 570px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.75;
  text-shadow: 0 12px 30px rgba(43, 7, 19, .45);
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  padding: clamp(70px, 9vw, 138px) 0 clamp(42px, 6vw, 86px);
  border-bottom: 1px solid rgba(34, 35, 38, .15);
}

.content-hero h1 {
  max-width: 980px;
  margin: 12px 0 0;
  color: var(--raa-navy-950);
  font-size: clamp(44px, 7vw, 112px);
  line-height: .96;
  letter-spacing: 0;
}

.content-hero p {
  max-width: 780px;
  margin: 24px 0 0;
  color: #6f6667;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.9;
}

.content-hero__panel {
  padding: 28px;
  border: 1px solid rgba(11, 20, 43, .14);
  border-radius: var(--raa-radius-card);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 48px rgba(47, 35, 39, .06);
}

.content-hero__panel span,
.content-card span,
.content-detail aside span {
  color: #9a1b45;
  font-size: 12px;
  font-weight: 800;
}

.content-hero__panel strong {
  display: block;
  margin-top: 12px;
  color: var(--raa-navy-950);
  font-family: Georgia, "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.2;
}

.content-hero__panel p,
.content-card p,
.content-detail p {
  color: #73696b;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(34px, 5vw, 72px) 0;
}

.content-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(34, 35, 38, .12);
  border-radius: var(--raa-radius-card);
  background: #fff;
}

.content-card h2 {
  margin: 12px 0 0;
  color: var(--raa-navy-950);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.22;
}

.content-card p {
  margin: auto 0 0;
  padding-top: 28px;
  line-height: 1.8;
}

.content-page--about .content-grid {
  gap: 18px;
  padding-top: clamp(36px, 5vw, 74px);
}

.content-page--about .content-card {
  position: relative;
  overflow: hidden;
  min-height: auto;
  aspect-ratio: 1 / .96;
  padding: 0;
  border-color: rgba(11, 20, 43, .1);
  background: #fff;
  box-shadow: 0 22px 54px rgba(47, 35, 39, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.content-page--about .content-card:hover {
  transform: translateY(-5px);
  border-color: rgba(154, 27, 69, .22);
  box-shadow: 0 30px 68px rgba(47, 35, 39, .12);
}

.content-page--about .content-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(216, 195, 155, .22);
  border-radius: calc(var(--raa-radius-card) - 2px);
  pointer-events: none;
}

.content-page--about .content-card img {
  width: 100%;
  height: 55%;
  display: block;
  object-fit: cover;
  background: var(--raa-pearl-100);
}

.content-page--about .content-card span {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  z-index: 3;
  min-width: 42px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(11, 20, 43, .88);
  box-shadow: 0 12px 26px rgba(11, 20, 43, .18);
  backdrop-filter: blur(10px);
}

.content-page--about .content-card h2,
.content-page--about .content-card p {
  position: relative;
  z-index: 1;
  margin-inline: 22px;
}

.content-page--about .content-card h2 {
  margin-top: 16px;
  color: #14213a;
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 600;
  line-height: 1.35;
}

.content-page--about .content-card p {
  margin-top: 10px;
  padding-top: 0;
  color: #756b6d;
  font-size: 13px;
  line-height: 1.75;
}

.journal-list {
  padding: clamp(36px, 5vw, 74px) 0 clamp(68px, 8vw, 120px);
}

.journal-list__head {
  text-align: right;
  margin-bottom: 22px;
}

.journal-list__head h2 {
  max-width: 760px;
  margin: 0 0 0 auto;
  color: var(--raa-navy-950);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 700;
  line-height: 1.18;
}

.journal-tools {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(34, 35, 38, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 46px rgba(34, 35, 38, .045);
}

.journal-search {
  position: relative;
  display: block;
}

.journal-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 46px 0 16px;
  border: 1px solid rgba(154, 27, 69, .18);
  border-radius: 6px;
  background: #fff;
  color: var(--raa-navy-950);
  font: inherit;
}

.journal-search svg {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #9a1b45;
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.journal-filters button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(154, 27, 69, .16);
  border-radius: 999px;
  background: #fff;
  color: #6f6667;
  font-weight: 600;
  cursor: pointer;
}

.journal-filters button:hover,
.journal-filters button.is-active {
  border-color: #9a1b45;
  background: #9a1b45;
  color: #fff;
}

.journal-per-page {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  color: #6f6667;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.journal-per-page select {
  min-width: 82px;
  height: 40px;
  padding: 0 12px;
  color: var(--raa-navy-950);
  border: 1px solid rgba(154, 27, 69, .18);
  border-radius: 6px;
  background: #fff;
  font: inherit;
  outline: none;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal-card {
  overflow: hidden;
  border: 1px solid rgba(34, 35, 38, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(47, 35, 39, .05);
}

.journal-card img {
  width: 100%;
  aspect-ratio: 1.42;
  display: block;
  object-fit: cover;
}

.journal-card div {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.journal-card span {
  color: #9a1b45;
  font-size: 12px;
  font-weight: 800;
}

.journal-card h3 {
  margin: 12px 0 0;
  color: var(--raa-navy-950);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.25;
}

.journal-card p {
  margin: 14px 0 0;
  color: #73696b;
  line-height: 1.8;
}

.journal-card small {
  margin-top: auto;
  padding-top: 22px;
  color: #9a1b45;
  font-weight: 800;
}

.journal-card[hidden],
.journal-empty[hidden] {
  display: none;
}

.journal-empty {
  margin: 22px 0 0;
  padding: 24px;
  border: 1px solid rgba(154, 27, 69, .16);
  border-radius: 8px;
  background: #fff;
  color: #73696b;
  text-align: center;
  font-weight: 800;
}

.journal-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.journal-pagination[hidden] {
  display: none;
}

.journal-pagination button {
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid #9a1b45;
  border-radius: 999px;
  background: #9a1b45;
  font-weight: 800;
  cursor: pointer;
}

.journal-pagination button:disabled {
  cursor: not-allowed;
  color: #9c8f93;
  border-color: rgba(34, 35, 38, .1);
  background: #fff;
}

.journal-pagination span {
  color: #6f6667;
  font-size: 13px;
  font-weight: 800;
}

.content-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, .62fr);
  gap: 22px;
  align-items: stretch;
  padding-bottom: clamp(64px, 8vw, 124px);
}

.content-detail article,
.content-detail aside {
  border: 1px solid rgba(34, 35, 38, .1);
  border-radius: var(--raa-radius-card);
  background: #fff;
}

.content-detail article {
  padding: clamp(30px, 4vw, 54px);
  box-shadow: 0 22px 56px rgba(34, 35, 38, .05);
}

.content-detail h2 {
  margin: 12px 0 0;
  color: var(--raa-navy-950);
  font-size: clamp(32px, 3.45vw, 62px);
  line-height: 1.1;
}

.content-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}

.content-list p {
  position: relative;
  margin: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(11, 20, 43, .08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(216, 195, 155, .13), transparent 34%),
    #fffdfb;
  box-shadow: 0 12px 30px rgba(34, 35, 38, .035);
  line-height: 1.8;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.content-list p::before {
  content: "";
  position: absolute;
  inset-block: 16px;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--raa-champagne-300);
}

.content-list p:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 27, 69, .18);
  box-shadow: 0 18px 38px rgba(34, 35, 38, .07);
}

.content-list p span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--raa-navy-950);
  border: 1px solid rgba(216, 195, 155, .68);
  border-radius: 50%;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.content-detail aside {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.2vw, 42px);
  background:
    linear-gradient(145deg, rgba(11, 20, 43, .98), rgba(16, 35, 63, .96)),
    var(--raa-navy-950);
  box-shadow: 0 24px 58px rgba(11, 20, 43, .18);
}

.content-detail aside::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216, 195, 155, .18);
  border-radius: calc(var(--raa-radius-card) - 2px);
  pointer-events: none;
}

.content-detail aside::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  inset-inline-end: -74px;
  inset-block-start: -74px;
  border: 1px solid rgba(216, 195, 155, .24);
  border-radius: 50%;
  background: rgba(216, 195, 155, .08);
}

.content-detail aside > span {
  position: relative;
  z-index: 1;
}

.content-detail aside h2,
.content-detail aside p {
  color: #fff;
}

.content-detail aside h2 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  font-size: clamp(34px, 3.1vw, 58px);
}

.content-detail aside p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin-top: 18px;
  line-height: 1.8;
}

.content-detail aside a {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 18px;
  padding: 0 22px;
  color: var(--raa-navy-950);
  border-radius: 6px;
  background: var(--raa-champagne-300);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.content-detail aside a:hover {
  background: #ead9b8;
}

.contact-experience {
  width: min(1480px, calc(100% - 60px));
  margin: clamp(34px, 5vw, 72px) auto clamp(70px, 8vw, 124px);
}

.contact-experience__intro {
  max-width: 780px;
  margin-bottom: 26px;
}

.contact-experience__intro h2 {
  margin: 10px 0 0;
  color: var(--raa-navy-950);
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1.14;
}

.contact-experience__intro p {
  margin: 14px 0 0;
  color: #70676a;
  font-size: 15px;
  line-height: 1.9;
}

.contact-experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.contact-info-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-main-card,
.contact-info-card,
.contact-location-card,
.contact-form-card {
  border: 1px solid rgba(34, 35, 38, .1);
  border-radius: var(--raa-radius-card);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 56px rgba(34, 35, 38, .055);
}

.contact-main-card {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
  padding: clamp(24px, 3vw, 34px);
}

.contact-info-card,
.contact-location-card {
  padding: 28px;
}

.contact-main-card .contact-info-card,
.contact-main-card .contact-form-card {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.contact-info-card h3,
.contact-location-card h3,
.contact-form-card h3 {
  margin: 0;
  color: var(--raa-navy-950);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 650;
  line-height: 1.25;
}

.contact-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 20, 43, .08);
}

.contact-info-list > div {
  padding: 18px;
  border: 1px solid rgba(11, 20, 43, .08);
  border-radius: 7px;
  background: #fffdfb;
}

.contact-info-card span {
  display: block;
  color: #9a1b45;
  font-size: 12px;
  font-weight: 800;
}

.contact-info-card strong,
.contact-location-card strong {
  display: block;
  margin-top: 6px;
  color: #19233b;
  font-size: 16px;
  font-weight: 700;
}

.contact-info-card p,
.contact-location-card p {
  margin: 7px 0 0;
  color: #746a6d;
  line-height: 1.75;
}

.contact-map {
  position: relative;
  height: clamp(280px, 32vw, 430px);
  margin: -6px -6px 24px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--raa-pearl-100);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 44px);
}

.contact-main-card .contact-form-card {
  padding: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.contact-form-card label {
  display: grid;
  gap: 8px;
  color: #4d4548;
  font-size: 13px;
  font-weight: 700;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(34, 35, 38, .12);
  border-radius: 6px;
  background: #fff;
  color: var(--raa-navy-950);
  outline: none;
}

.contact-form-card input,
.contact-form-card select {
  height: 46px;
  padding: 0 14px;
}

.contact-form-card textarea {
  min-height: 145px;
  resize: vertical;
  padding: 14px;
  line-height: 1.7;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(154, 27, 69, .38);
  box-shadow: 0 0 0 4px rgba(154, 27, 69, .08);
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-form-card button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 28px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  background: var(--burgundy);
  font-weight: 800;
}

.contact-form-card button:hover {
  background: var(--burgundy-dark);
}

.contact-form-error {
  margin: 14px 0 0;
  color: #b42332;
  font-size: 13px;
  font-weight: 800;
}

html[dir="ltr"] .content-page {
  text-align: left;
}

html[dir="ltr"] .about-showcase__shade {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 236, 224, .22), transparent 28%),
    linear-gradient(270deg, rgba(43, 7, 19, .30), rgba(43, 7, 19, .18) 34%, rgba(43, 7, 19, .78) 72%),
    linear-gradient(0deg, rgba(43, 7, 19, .34), rgba(43, 7, 19, .04));
}

html[dir="ltr"] .about-showcase--articles .about-showcase__shade {
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 230, 218, .18), transparent 32%),
    linear-gradient(270deg, rgba(43, 7, 19, .24), rgba(43, 7, 19, .10) 34%, rgba(43, 7, 19, .78) 72%),
    linear-gradient(0deg, rgba(43, 7, 19, .30), rgba(43, 7, 19, .04));
}

html[dir="ltr"] .about-showcase--contact .about-showcase__shade {
  background:
    radial-gradient(circle at 78% 44%, rgba(255, 236, 224, .12), transparent 32%),
    linear-gradient(270deg, rgba(43, 7, 19, .20), rgba(43, 7, 19, .10) 34%, rgba(43, 7, 19, .82) 74%),
    linear-gradient(0deg, rgba(43, 7, 19, .30), rgba(43, 7, 19, .03));
}

html[dir="ltr"] .about-showcase__copy {
  right: auto;
  left: clamp(42px, 7vw, 120px);
}

html[dir="ltr"] .journal-list__head {
  text-align: left;
}

html[dir="ltr"] .journal-list__head h2 {
  margin-right: auto;
  margin-left: 0;
}

html[dir="ltr"] .journal-search input {
  padding-right: 16px;
  padding-left: 46px;
}

html[dir="ltr"] .journal-search svg {
  right: auto;
  left: 16px;
}

html[dir="ltr"] .journal-filters {
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .content-hero,
  .content-detail,
  .content-skeleton-hero,
  .content-skeleton-contact {
    grid-template-columns: 1fr;
  }

  .about-showcase {
    height: 430px;
  }

  .about-showcase__copy {
    width: auto;
    right: 28px;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-page--about .content-card {
    aspect-ratio: 1 / 1;
  }

  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-tools,
  .content-skeleton-tools {
    grid-template-columns: 1fr;
  }

  .content-skeleton-cards,
  .content-skeleton-journal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-per-page {
    justify-content: flex-start;
  }

  .contact-experience__grid {
    grid-template-columns: 1fr;
  }

  .contact-main-card {
    grid-template-columns: 1fr;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .content-hero,
  .about-showcase,
  .journal-list,
  .contact-experience,
  .content-grid,
  .content-detail,
  .content-skeleton {
    width: min(100% - 36px, 1480px);
  }

  .content-page--about,
  .content-page--contact,
  .content-page--articles {
    padding-top: 14px;
  }

  .about-showcase {
    height: 430px;
  }

  .about-showcase img {
    object-position: 34% center;
  }

  .about-showcase__shade {
    background:
      linear-gradient(180deg, rgba(43, 7, 19, .82), rgba(43, 7, 19, .28) 58%, rgba(43, 7, 19, .78));
  }

  .about-showcase__copy {
    right: 22px;
    left: 22px;
  }

  .about-showcase__copy h1 {
    font-size: 29px;
    line-height: 1.22;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-page--about .content-card {
    aspect-ratio: auto;
  }

  .content-page--about .content-card img {
    height: auto;
    aspect-ratio: 1.18;
  }

  .journal-list {
    padding-top: 32px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .content-skeleton {
    gap: 20px;
    padding-bottom: 48px;
  }

  .content-skeleton-hero {
    min-height: 360px;
    padding: 24px;
  }

  .content-skeleton-hero__media {
    min-height: 160px;
  }

  .content-skeleton-cards,
  .content-skeleton-journal {
    grid-template-columns: 1fr;
  }

  .content-skeleton-tools div {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .content-skeleton-form {
    grid-template-columns: 1fr;
  }

  .journal-tools {
    padding: 14px;
  }

  .journal-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .journal-filters button {
    flex: 0 0 auto;
  }

  .journal-card div {
    min-height: auto;
    padding: 20px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-location-card,
  .contact-form-card {
    padding: 22px;
  }

  .content-hero__panel,
  .content-card,
  .content-detail article,
  .content-detail aside {
    padding: 22px;
  }
}
