:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #211c18;
  --muted: #756d64;
  --line: #e9e2d8;
  --accent: #8f2636;
  --accent-strong: #6f1b29;
  --gold: #c99a42;
  --green: #2e7d4f;
  --red: #a8323a;
  --shadow: 0 20px 50px rgba(44, 33, 22, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

.app-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
}

.side-panel {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100vh;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #fbfaf8;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(143, 38, 54, 0.24);
  border-radius: 8px;
  background: #fff8ed;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.date-card,
.reference-card,
.ordinary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.date-card {
  padding: 20px;
}

.date-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.date-card-head span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.date-card-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

input[type="date"] {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf2;
  color: var(--ink);
}

.date-picker-field {
  position: relative;
}

.date-picker-field::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--accent);
  pointer-events: none;
  content: "";
  background: currentColor;
  mask:
    linear-gradient(#000 0 0) 4px 2px / 2px 4px no-repeat,
    linear-gradient(#000 0 0) 12px 2px / 2px 4px no-repeat,
    linear-gradient(#000 0 0) 3px 6px / 12px 2px no-repeat,
    linear-gradient(#000 0 0) 3px 9px / 3px 3px no-repeat,
    linear-gradient(#000 0 0) 8px 9px / 3px 3px no-repeat,
    linear-gradient(#000 0 0) 13px 9px / 3px 3px no-repeat,
    linear-gradient(#000 0 0) 3px 14px / 3px 3px no-repeat,
    linear-gradient(#000 0 0) 8px 14px / 3px 3px no-repeat,
    linear-gradient(#000 0 0) 13px 14px / 3px 3px no-repeat,
    linear-gradient(#000 0 0) 1px 4px / 16px 14px no-repeat;
}

.date-picker-input {
  width: 100%;
  height: 46px;
  padding: 0 62px 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  background: #ffffff;
  color: var(--ink);
  font: 600 14px/1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.date-picker-input:hover {
  border-color: rgba(143, 38, 54, 0.42);
  background: #fffdf8;
}

.date-picker-input:focus {
  border-color: rgba(143, 38, 54, 0.74);
  box-shadow: 0 0 0 3px rgba(143, 38, 54, 0.12);
}

.flatpickr-calendar.liturgia-calendar,
.flatpickr-calendar {
  width: min(360px, calc(100vw - 40px));
  padding: 0 16px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-sizing: border-box;
  box-shadow: 0 24px 58px rgba(44, 33, 22, 0.18);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
  display: none;
}

.flatpickr-months {
  padding: 10px 0 4px;
}

.flatpickr-months .flatpickr-month {
  height: 42px;
  color: var(--ink);
}

.flatpickr-current-month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.flatpickr-current-month .cur-month,
.flatpickr-current-month input.cur-year {
  color: var(--ink);
  font: inherit;
}

.flatpickr-current-month input.cur-year {
  border-radius: 5px;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  top: 11px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 6px;
  color: var(--accent);
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: #fff4e2;
  color: var(--accent-strong);
}

.flatpickr-months svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flatpickr-weekdays {
  height: 32px;
  padding: 0;
}

.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-weekdaycontainer,
.flatpickr-days,
.dayContainer {
  width: 100%;
  min-width: 0;
  max-width: none;
}

span.flatpickr-weekday {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.flatpickr-days {
  padding: 0;
}

.dayContainer {
  row-gap: 3px;
}

.flatpickr-day {
  width: calc(100% / 7);
  max-width: calc(100% / 7);
  height: 37px;
  border: 0;
  border-radius: 7px;
  color: #3d3731;
  font-size: 14px;
  font-weight: 600;
  line-height: 37px;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  border: 0;
  background: #fff4e2;
  color: var(--accent-strong);
}

.flatpickr-day.today {
  border: 1px solid rgba(143, 38, 54, 0.38);
  color: var(--accent);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  border: 0;
  background: var(--accent);
  color: #ffffff;
  box-shadow: none;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #bbb4ac;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  background: transparent;
  color: #d2ccc4;
  cursor: not-allowed;
}

.date-actions {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  margin-top: 12px;
}

.date-actions button {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf2;
  color: var(--accent);
  cursor: pointer;
}

.date-actions button:hover {
  border-color: rgba(143, 38, 54, 0.5);
  background: #fff4e2;
}

.date-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.reference-card,
.ordinary-card {
  padding: 20px;
}

.reference-card h2,
.ordinary-card h2 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.reference-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-card li {
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: #fff8ed;
  color: #ff322b;
  font-size: 14px;
  line-height: 1.35;
}

.view-actions {
  display: grid;
  gap: 8px;
}

.view-actions button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf2;
  color: #4f463d;
  font-weight: 700;
  cursor: pointer;
}

.view-actions button.active,
.view-actions button:hover {
  border-color: rgba(143, 38, 54, 0.45);
  background: #fff4e2;
  color: var(--accent);
}

.ordinary-select-label {
  display: block;
  margin: 16px 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ordinary-select {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: 600 13px/1.2 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.content {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 38px 56px 88px;
}

.missal-header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 86px;
}

#sourceLabel {
  display: none;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

#secondaryTitle {
  margin: 8px 0 0;
  color: #8d8985;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
}

.saint-button {
  display: grid;
  gap: 2px;
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 16px 0 0;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(143, 38, 54, 0.34);
  background: transparent;
  color: var(--accent);
  text-align: left;
  cursor: pointer;
}

.saint-button span {
  color: #9e988f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.saint-button strong {
  color: #7f2532;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}

.saint-button:hover,
.saint-button:focus-visible {
  border-bottom-color: var(--accent);
}

.hero-date {
  margin: 0;
  color: #a9a5a1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.liturgical-ribbon {
  display: block;
  width: 40px;
  height: 62px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 7px 18px rgba(44, 33, 22, 0.14);
}

.hero-readings {
  margin-top: 48px;
  color: #4e4a46;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.08;
}

.hero-readings strong {
  display: block;
  font-weight: 600;
}

.hero-readings ul {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.hero-readings li {
  margin: 0;
  color: #ff322b;
}

.color-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #4f463d;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}

.color-badge.verde {
  color: var(--green);
}

.color-badge.vermelho,
.color-badge.roxo {
  color: var(--red);
}

.color-badge.branco {
  color: #6b5a45;
}

.message {
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid #e4c7a3;
  border-radius: 8px;
  background: #fff4e2;
  color: #6b4a1f;
}

.readings {
  display: grid;
  gap: 54px;
}

.celebration {
  display: grid;
  gap: 24px;
}

.celebration-title {
  margin: 0;
  color: #4b4641;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.celebration-note {
  max-width: 720px;
  margin: -18px auto 18px;
  color: #ff322b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.celebration-readings {
  display: grid;
  gap: 26px;
}

.mass-parts {
  display: grid;
  gap: 22px;
  max-width: 680px;
}

.mass-parts-after {
  margin-top: 8px;
}

.mass-part {
  display: grid;
  gap: 6px;
}

.mass-part h2 {
  margin: 0;
  color: #ff322b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
}

.mass-part-reference {
  margin: 0;
  color: #ff322b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.2;
}

.mass-part-option {
  display: grid;
  gap: 6px;
}

.mass-part-option + .mass-part-option {
  margin-top: 8px;
}

.mass-part-option-header {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 20px;
}

.mass-part-option-header-alternative {
  justify-content: space-between;
}

.mass-part-alternative-label {
  color: #ff322b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
}

.mass-part-text {
  margin: 0;
  color: #3b352f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.2;
}

.reading {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ordinary-section {
  width: min(960px, 100%);
  margin: 0 auto;
}

.ordinary-section h2 {
  margin: 0 0 6px;
  color: #ff322b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.ordinary-meta {
  margin: 0 0 22px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.ordinary-text {
  color: #2f2923;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.34;
}

.ordinary-text p {
  margin: 0 0 8px;
}

.ordinary-block {
  max-width: 720px;
  overflow-wrap: break-word;
  white-space: pre-line;
}

.ordinary-block-heading {
  max-width: 760px;
  margin: 18px auto 10px;
  color: #ff322b;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
}

.ordinary-block-rubric {
  max-width: 760px;
  margin: 9px 0 9px min(42px, 7vw);
  color: #ff322b;
  font-size: 14px;
  font-style: italic;
  line-height: 1.32;
  white-space: normal;
}

.ordinary-block-dialogue,
.ordinary-block-response {
  display: flex;
  gap: 8px;
  max-width: 560px;
  margin: 4px 0 4px min(42px, 7vw);
  font-weight: 600;
  line-height: 1.24;
}

.ordinary-block-response {
  color: #4a433c;
}

.ordinary-block-text {
  margin-left: min(42px, 7vw);
}

.ordinary-block-number {
  float: left;
  width: 34px;
  margin: 4px 8px 0 0;
  color: #ff322b;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.ordinary-marker {
  flex: 0 0 auto;
  min-width: 28px;
  color: #ff322b;
  font-weight: 700;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(33, 28, 24, 0.48);
}

.modal-overlay[hidden] {
  display: none;
}

.saint-modal {
  position: relative;
  width: min(960px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(143, 38, 54, 0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.saint-image {
  float: left;
  width: 285px;
  height: 285px;
  margin: 4px 30px 18px 0;
  border-radius: 6px;
  object-fit: cover;
  background: #f5efe6;
  box-shadow: 0 10px 28px rgba(55, 40, 28, 0.14);
}

.saint-modal-copy {
  padding: 38px 42px 34px;
}

.saint-date {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.saint-modal h2 {
  margin: 0 34px 18px 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
}

.saint-text {
  color: #3b352f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.42;
}

.saint-text p {
  margin: 0 0 12px;
}

.saint-text-heading {
  clear: both;
  padding-top: 4px;
  color: #7f2532;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.saint-source {
  clear: both;
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.reading h2 {
  margin: 0 0 20px;
  color: #ff322b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.reading-intro {
  width: min(500px, 48%);
  margin: 0 0 18px auto;
  color: #5f5650;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  text-align: right;
}

.reading-text {
  margin: 0;
  color: #2f2923;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.18;
  max-width: 620px;
}

.reading-intro p,
.reading-text p {
  margin: 0;
}

.reading-intro-inline {
  width: auto;
  margin-right: auto;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.reading-intro-inline p + p {
  margin-top: 2px;
}

.intro-reference {
  color: #ff322b;
}

.biblical-reference {
  color: #ff322b;
}

.proclamation {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.25;
}

.announcement {
  color: #4b4641;
}

.proclamation-reference,
.red-text {
  color: #ff322b;
}

.alternative-reading-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 16px !important;
  color: #ff322b;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.alternative-reading-label::before,
.alternative-reading-label::after {
  height: 1px;
  background: var(--line);
  content: "";
  flex: 1;
}

.alternative-reading-intro {
  width: min(500px, 80%);
  margin: 0 0 10px auto !important;
  color: #5f5650;
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  text-align: right;
}

.alternative-reading-note {
  color: #5f5650;
  font-size: 0.9em;
  font-style: italic;
  text-align: center;
}

.alternative-proclamation {
  margin-top: 4px;
}

.gospel-cross {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-right: 4px;
  color: #ef3f22;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.verses {
  display: grid;
  gap: 7px;
}

.verse {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.verse-number {
  color: #ff322b;
  font-size: 23px;
  line-height: 1;
  text-align: left;
}

.verse-text {
  display: block;
}

.plain-line,
.response-line {
  padding-left: 52px;
}

.response-line {
  margin-top: 7px;
}

.loading {
  opacity: 0.62;
}

@media (max-width: 860px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
    height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .content {
    padding: 28px 20px 48px;
  }

  .missal-header {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 44px;
  }

  .color-badge {
    grid-column: 2;
    justify-self: start;
    margin-top: 12px;
  }

  .hero-date {
    font-size: 20px;
  }

  h1 {
    font-size: 39px;
    line-height: 1;
  }

  #secondaryTitle {
    font-size: 20px;
  }

  .saint-button {
    max-width: 100%;
    margin-top: 12px;
  }

  .saint-button strong {
    font-size: 20px;
  }

  .hero-readings {
    margin-top: 28px;
    font-size: 17px;
  }

  .reading {
    padding: 22px;
  }

  .reading h2 {
    font-size: 18px;
  }

  .reading-text {
    font-size: 18px;
  }

  .reading-intro {
    width: 100%;
    font-size: 18px;
  }

  .proclamation {
    flex-wrap: wrap;
  }

  .alternative-reading-intro {
    width: 100%;
  }

  .gospel-cross {
    width: 34px;
    height: 34px;
    font-size: 32px;
  }

  .verse {
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 12px;
  }

  .plain-line,
  .response-line {
    padding-left: 38px;
  }

  .saint-modal {
    max-height: calc(100vh - 32px);
  }

  .saint-image {
    width: 198px;
    height: 198px;
    margin: 3px 18px 12px 0;
  }

  .saint-modal-copy {
    padding: 26px 22px;
  }

  .saint-modal h2 {
    font-size: 25px;
  }
}

@media (max-width: 720px) {
  .saint-image {
    float: none;
    display: block;
    width: min(330px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 20px;
  }

  .saint-text {
    font-size: 17px;
    line-height: 1.48;
  }

  .saint-text-heading {
    clear: none;
  }
}
