:root {
  --comp-tile-square-px:60px;
  --comp-tile-square-mobile-px:60px;
}


.tile-image-minify .tw-tiles-grid .tw-tile .tw-tile-inner .tw-tile-top .tw-tile-image-wrap,
	.tile-image-minify .tw-tiles-grid .tw-tile .tw-tile-inner .tw-tile-top .tw-tile-image-wrap .tw-tile-image {
  height:50px !important;
  width:50px !important;
}

.tile-default .tw-tiles-grid .tw-tile {
	background-color:#00599c;
}
.tile-default .tw-tile-inner .tw-tile-body .tw-tile-title {
	color:white;
}
.tile-default .tw-tile-inner .tw-tile-body .tw-tile-description {
	color:white;
}
.tile-default-ghost .tw-tiles-grid .tw-tile {
	background-color:white;
	border:2px solid #00599c;
}
.tile-default-ghost .tw-tile-inner .tw-tile-body .tw-tile-title {
	color:#333;
}
.tile-default-ghost .tw-tile-inner .tw-tile-body .tw-tile-description {
	color:#333;
}
.tile-default-ghost .tw-tile-inner .tw-tile-top .tw-tile-icon {
	background-color: #ccc;
}

.tile-secondary-ghost .tw-tiles-grid .tw-tile {
	background-color:white;
	border:1px solid #aaa;
}
.tile-secondary-ghost .tw-tile-inner .tw-tile-body .tw-tile-title {
	color:#333;
}
.tile-secondary-ghost .tw-tile-inner .tw-tile-body .tw-tile-description {
	color:#333;
}
.tile-secondary-ghost .tw-tile-inner .tw-tile-top .tw-tile-icon {
	background-color: #ccc;
}



.tile-clear {
	padding-left:0;
	padding-right:0;
}
.tile-clear .tw-tiles-grid {
	justify-content:space-evenly !important;
}
.tile-clear .tw-tiles-grid .tw-tile {
	background-color:rgba(255,255,255,0);
	background-color:transparent !important;
	border:none;
}
.tile-clear .tw-tiles-grid .tw-tile .tw-tile-inner {
	background-color:transparent !important;
}
.tile-clear .tw-tile-inner .tw-tile-top {
	width:100%;
}
.tile-clear .tw-tile-inner .tw-tile-top .tw-tile-image-wrap {
	margin-left:auto;
	margin-right:auto;
	background-color:transparent !important; 
}
.tile-clear .tw-tile-inner .tw-tile-body h3.tw-tile-title {
	font-size: clamp(0.95rem, 1.45vw, 1.0rem);
	color:#333;
	text-align:center;
	font-weight:600;
}
.tile-clear .tw-tile-inner .tw-tile-body .tw-tile-description {
	color:#333;
}










.tile-steprow-ghost .tw-tiles-grid .tw-tile {
	background-color:white;
	border:1px solid #aaa;
	border:1px solid #153c6d;	
}
.tile-steprow-ghost .tw-tile-inner .tw-tile-body .tw-tile-title {
	color:var(--global-follett-blue); 
}
.tile-steprow-ghost .tw-tile-inner .tw-tile-body .tw-tile-description {
	color:#444; 
}
.tile-steprow-ghost .tw-tile-inner .tw-tile-top .tw-tile-icon {
	background-color: #ccc;
}

/* Stack the tiles vertically */
.tile-steprow-ghost .tw-tiles-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 1rem;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
/* Make each tile a horizontal rectangle */
.tile-steprow-ghost .tw-tile {
  width: 100%;
  max-width: none !important;
  min-height: 145px !important;
  padding: 0 !important;
  border-radius: var(--tw-tile-radius, 18px);
  overflow: hidden;
  text-align: left;
}
/* Put image and text side by side */
.tile-steprow-ghost .tw-tile-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
/* Image column */
.tile-steprow-ghost .tw-tile-top {
  flex: 0 0 220px;
  width: 220px;
  min-height: 145px;
}
/* Image wrapper fills the left side */
.tile-steprow-ghost .tw-tile-image-wrap {
  display: block;
  width: 100%;
  height: 100%;
  background-color:transparent !important;
}
/* Crop image nicely */
.tile-steprow-ghost .tw-tile-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 145px;
  object-fit: cover;
  filter:none !important;
}
/* Text area on the right */
.tile-steprow-ghost .tw-tile-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
}
/* Tile title */
.tile-steprow-ghost .tw-tile-title {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .tile-steprow-ghost .tw-tile-inner {
    flex-direction: column;
  }
  .tile-steprow-ghost .tw-tile-top {
    width: 100%;
    flex-basis: auto;
    min-height: 180px;
  }
  .tile-steprow-ghost .tw-tile-image {
    min-height: 180px;
  }
  .tile-steprow-ghost .tw-tile-body {
    padding: 1rem;
  }
}



/* Stack all tiles vertically */
.tile-steprow-ghost .tw-tiles-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Make each tile a full-width horizontal rectangle */
.tile-steprow-ghost .tw-tile {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: var(--comp-tile-square-px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-align: left !important;
}

/* Force image and text into left/right columns */
.tile-steprow-ghost .tw-tile-inner {
  display: grid !important;
  grid-template-columns: var(--comp-tile-square-px) minmax(0, 1fr) !important;
  grid-template-areas: "tileimage tilebody" !important;
  align-items: stretch !important;
  width: 100% !important;
  min-height: var(--comp-tile-square-px) !important;
}

/* Left image area */
.tile-steprow-ghost .tw-tile-top {
  grid-area: tileimage !important;
  width: 90px !important;
  height: 100% !important;
  min-width: var(--comp-tile-square-px) !important;
  min-height: var(--comp-tile-square-px) !important; 
  max-width: var(--comp-tile-square-px) !important;
  max-height: var(--comp-tile-square-px) !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

/* Image wrapper */
.tile-steprow-ghost .tw-tile-image-wrap {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

/* Image itself */
.tile-steprow-ghost .tw-tile-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: var(--comp-tile-square-px) !important;
  min-height: var(--comp-tile-square-px) !important; 
  max-width: var(--comp-tile-square-px) !important;
  max-height: var(--comp-tile-square-px) !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

/* Right text area */
.tile-steprow-ghost .tw-tile-body {
  grid-area: tilebody !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  height: 100% !important;
  padding: 1.25rem 1.5rem !important;
  margin: 0 !important;
  text-align: left !important;
}

/* Text */
.tile-steprow-ghost .tw-tile-title {
  margin: 0 !important;
  text-align: left !important;
}

@media (max-width: 575.98px) {
  /***
  .tile-steprow-ghost .tw-tile-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "tileimage"
      "tilebody" !important;
  }
  ***/
	
  .tile-steprow-ghost .tw-tile-inner {
 	grid-template-columns: var(--comp-tile-square-mobile-px) minmax(0, 1fr) !important;
  }
	
  .tile-steprow-ghost .tw-tile-top {
    width: 100% !important;
	max-width: 100% !important;
	min-height: var(--comp-tile-square-mobile-px) !important;
	max-height: var(--comp-tile-square-mobile-px) !important;
  }

  .tile-steprow-ghost .tw-tile-image-wrap {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
	max-width: 100% !important;
	min-height: var(--comp-tile-square-mobile-px) !important;
	max-height: var(--comp-tile-square-mobile-px) !important;
  }

  /* Image itself */
  .tile-steprow-ghost .tw-tile-image {
    min-width: var(--comp-tile-square-mobile-px) !important;
    min-height: var(--comp-tile-square-mobile-px) !important; 
    max-width: var(--comp-tile-square-mobile-px) !important;
    max-height: var(--comp-tile-square-mobile-px) !important;
  }

  .tile-steprow-ghost .tw-tile-body {
    min-height: auto !important;
    padding: 1rem 1.25rem !important;
  }
}

/*** Steprow gradient ***/

.tile-steprow-ghost {
  --step-navy: #12355f;
  --step-navy-dark: #071b33;
  --step-coral: #ff735c;
  --step-aqua: #2ec7c9;
  --step-cream: #fffaf3;
  --step-shadow: rgba(7, 27, 51, 0.16);
}

/* Stack the step tiles */
.tile-steprow-ghost .tw-tiles-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Main step card */
.tile-steprow-ghost .tw-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.35rem;

  width: 100%;
  min-height: 104px;
  padding: 1.15rem 1.5rem;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,243,0.9));
  border: 1.5px solid rgba(18, 53, 95, 0.85);
  border-radius: 18px;

  box-shadow: 0 12px 28px rgba(7, 27, 51, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

/* Soft brand glow */
.tile-steprow-ghost .tw-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 7% 50%, rgba(255, 115, 92, 0.22), transparent 10%),
    radial-gradient(circle at 18% 50%, rgba(46, 199, 201, 0.18), transparent 20%);
  opacity: 0.65;
  transition: opacity 220ms ease;
}

/* Left color rail */
.tile-steprow-ghost .tw-tile::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--step-coral), var(--step-aqua));
  opacity: 0.65;
}

/* Icon/photo area */
.tile-steprow-ghost .tw-tile img,
.tile-steprow-ghost .tw-tile svg {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  object-fit: contain;

  filter: drop-shadow(0 5px 8px rgba(7, 27, 51, 0.18));
  transition: transform 220ms ease;
}

/* Text */
.tile-steprow-ghost .tw-tile-title,
.tile-steprow-ghost .tw-tile h3,
.tile-steprow-ghost .tw-tile .tw-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--step-navy-dark);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Hover/focus */
.tile-steprow-ghost .tw-tile:hover,
.tile-steprow-ghost .tw-tile:focus-visible {
  transform: translateY(-3px);
  border-color: var(--step-aqua);
  box-shadow:
    0 18px 40px rgba(7, 27, 51, 0.16),
    0 0 0 4px rgba(46, 199, 201, 0.12);
}

.tile-steprow-ghost .tw-tile:hover::before,
.tile-steprow-ghost .tw-tile:focus-visible::before {
  opacity: 1;
}

.tile-steprow-ghost .tw-tile:hover img,
.tile-steprow-ghost .tw-tile:hover svg,
.tile-steprow-ghost .tw-tile:focus-visible img,
.tile-steprow-ghost .tw-tile:focus-visible svg {
  transform: scale(1.06);
}

/* Optional: make each step feel slightly distinct */
.tile-steprow-ghost .tw-tile:nth-child(2)::after {
  background: linear-gradient(180deg, #ff8b66, #2ec7c9);
}

.tile-steprow-ghost .tw-tile:nth-child(3)::after {
  background: linear-gradient(180deg, #2ec7c9, #f2b84b);
}

.tile-steprow-ghost .tw-tile:nth-child(4)::after {
  background: linear-gradient(180deg, #f2b84b, #ff735c);
}

/* Mobile */
@media (max-width: 640px) {
  .tile-steprow-ghost .tw-tile {
    min-height: 92px;
    padding: 1rem 1.15rem;
    gap: 1rem;
  }

  .tile-steprow-ghost .tw-tile img,
  .tile-steprow-ghost .tw-tile svg {
    width: 50px;
    height: 50px;
  }

  .tile-steprow-ghost .tw-tile-title,
  .tile-steprow-ghost .tw-tile h3,
  .tile-steprow-ghost .tw-tile .tw-title {
    font-size: 1rem;
  }
}

.tile-steps-ghost .tw-tiles-grid .tw-tile {
	background-color:white;
	border:1px solid #aaa;
	border:1px solid #153c6d;	
}
.tile-steps-ghost .tw-tile-inner .tw-tile-body .tw-tile-title {
	color:var(--global-follett-blue); 
}
.tile-steps-ghost .tw-tile-inner .tw-tile-body .tw-tile-description {
	color:#444; 
}
.tile-steps-ghost .tw-tile-inner .tw-tile-top .tw-tile-icon {
	background-color: #ccc;
}

/* Stack the tiles vertically */
.tile-steps-ghost .tw-tiles-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 1rem;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
/* Make each tile a horizontal rectangle */
.tile-steps-ghost .tw-tile {
  width: 100%;
  max-width: none !important;
  min-height: 145px !important;
  padding: 0 !important;
  border-radius: var(--tw-tile-radius, 18px);
  overflow: hidden;
  text-align: left;
}
/* Put image and text side by side */
.tile-steps-ghost .tw-tile-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
/* Image column */
.tile-steps-ghost .tw-tile-top {
  flex: 0 0 220px;
  width: 220px;
  min-height: 145px;
}
/* Image wrapper fills the left side */
.tile-steps-ghost .tw-tile-image-wrap {
  display: block;
  width: 100%;
  height: 100%;
  background-color:transparent !important;
}
/* Crop image nicely */
.tile-steps-ghost .tw-tile-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 145px;
  object-fit: cover;
  filter:none !important;
}
/* Text area on the right */
.tile-steps-ghost .tw-tile-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
}
/* Tile title */
.tile-steps-ghost .tw-tile-title {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .tile-steps-ghost .tw-tile-inner {
    flex-direction: column;
  }
  .tile-steps-ghost .tw-tile-top {
    width: 100%;
    flex-basis: auto;
    min-height: 180px;
  }
  .tile-steps-ghost .tw-tile-image {
    min-height: 180px;
  }
  .tile-steps-ghost .tw-tile-body {
    padding: 1rem;
  }
}

/* Stack all tiles vertically */
.tile-steps-ghost .tw-tiles-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Make each tile a full-width horizontal rectangle */
.tile-steps-ghost .tw-tile {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: var(--comp-tile-square-px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-align: left !important;
}

/* Force image and text into left/right columns */
.tile-steps-ghost .tw-tile-inner {
  display: grid !important;
  grid-template-columns: var(--comp-tile-square-px) minmax(0, 1fr) !important;
  grid-template-areas: "tileimage tilebody" !important;
  align-items: stretch !important;
  width: 100% !important;
  min-height: var(--comp-tile-square-px) !important;
}

/* Left image area */
.tile-steps-ghost .tw-tile-top {
  grid-area: tileimage !important;
  width: 90px !important;
  height: 100% !important;
  min-width: var(--comp-tile-square-px) !important;
  min-height: var(--comp-tile-square-px) !important; 
  max-width: var(--comp-tile-square-px) !important;
  max-height: var(--comp-tile-square-px) !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

/* Image wrapper */
.tile-steps-ghost .tw-tile-image-wrap {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

/* Image itself */
.tile-steps-ghost .tw-tile-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: var(--comp-tile-square-px) !important;
  min-height: var(--comp-tile-square-px) !important; 
  max-width: var(--comp-tile-square-px) !important;
  max-height: var(--comp-tile-square-px) !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

/* Right text area */
.tile-steps-ghost .tw-tile-body {
  grid-area: tilebody !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  height: 100% !important;
  padding: 1.25rem 1.5rem !important;
  margin: 0 !important;
  text-align: left !important;
}

/* Text */
.tile-steps-ghost .tw-tile-title {
  margin: 0 !important;
  text-align: left !important;
}

@media (max-width: 575.98px) {
  /***
  .tile-steps-ghost .tw-tile-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "tileimage"
      "tilebody" !important;
  }
  ***/
	
  .tile-steps-ghost .tw-tile-inner {
 	grid-template-columns: var(--comp-tile-square-mobile-px) minmax(0, 1fr) !important;
  }
	
  .tile-steps-ghost .tw-tile-top {
    width: 100% !important;
	max-width: 100% !important;
	min-height: var(--comp-tile-square-mobile-px) !important;
	max-height: var(--comp-tile-square-mobile-px) !important;
  }

  .tile-steps-ghost .tw-tile-image-wrap {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
	max-width: 100% !important;
	min-height: var(--comp-tile-square-mobile-px) !important;
	max-height: var(--comp-tile-square-mobile-px) !important;
  }

  /* Image itself */
  .tile-steps-ghost .tw-tile-image {
    min-width: var(--comp-tile-square-mobile-px) !important;
    min-height: var(--comp-tile-square-mobile-px) !important; 
    max-width: var(--comp-tile-square-mobile-px) !important;
    max-height: var(--comp-tile-square-mobile-px) !important;
  }

  .tile-steps-ghost .tw-tile-body {
    min-height: auto !important;
    padding: 1rem 1.25rem !important;
  }
}

/*** GHOST STEP TILES CHEVRON ***/
/* Right-side chevron for the step tiles */
.tile-steps-ghost .tw-tile-modal-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;

  width: 0.7rem;
  height: 0.7rem;

  border-top: 2px solid #00529c;
  border-right: 2px solid #00529c;

  transform: translateY(-50%) rotate(45deg);
  z-index: 4;
  pointer-events: none;

  transition:
    right 180ms ease,
    border-color 180ms ease;
}

/* Reserve space so longer titles do not overlap the chevron */
.tile-steps-ghost .tw-tile-inner {
  padding-right: 3.75rem;
}

/* Optional movement on hover/focus */
.tile-steps-ghost .tw-tile-modal-button:hover::before,
.tile-steps-ghost .tw-tile-modal-button:focus-visible::before {
  right: 1.15rem;
}







/* ============================================================
   Tiles quote display variants
   Use in Widget class:
   - tile-blockquote-square
   - tile-blockquote-round
   ============================================================ */

/* Shared quote behavior */
.tile-blockquote-square,
.tile-blockquote-round {
  --tw-quote-mark-color: currentColor;
  --tw-quote-source-color: currentColor;
}

.tile-blockquote-square .tw-tile,
.tile-blockquote-round .tw-tile {
  background: var(--tw-tile-bg, var(--tw-default-bg, transparent));
}

.tile-blockquote-square .tw-tile-top,
.tile-blockquote-round .tw-tile-top {
  display: none;
}

.tile-blockquote-square .tw-tile-inner,
.tile-blockquote-round .tw-tile-inner {
  justify-content: center;
}

.tile-blockquote-square .tw-tile-body,
.tile-blockquote-round .tw-tile-body {
  margin-top: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tile-blockquote-square .tw-tile-description,
.tile-blockquote-round .tw-tile-description {
  order: 1;
  color: var(--tw-tile-text);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.45;
  font-size: clamp(0.8rem, 1.15vw, 1.0rem);
  line-height: 1.28;
  font-weight: 400;
} 
 
.tile-blockquote-square .tw-tile-title,
.tile-blockquote-round .tw-tile-title {
  order: 2;
  margin: 1rem 0 0;
  color: var(--tw-quote-source-color);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 750;
  opacity: 0.82;
}

.tile-blockquote-square .tw-tile-title::before,
.tile-blockquote-round .tw-tile-title::before {
  content: "— ";
}

/* ============================================================
   1) Square blockquote display
   Widget class: tile-blockquote-square
   ============================================================ */

.tile-blockquote-square .tw-tile {
  overflow: visible;
}

.tile-blockquote-square .tw-tile-inner {
  padding-left: calc(var(--tw-tile-padding, 1.25rem) + 2.1rem);
  padding-top: calc(var(--tw-tile-padding, 1.25rem) + 1rem);
  padding-bottom: calc(var(--tw-tile-padding, 1.25rem) + 1rem);
}

.tile-blockquote-square .tw-tile-body::before {
  content: "“";
  position: absolute;
  left: -2.55rem;
  top: -0.25rem;
  color: var(--tw-quote-mark-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.25rem;
  line-height: 0.85;
  font-weight: 800;
  opacity: 0.95;
}

/***
.tile-blockquote-square .tw-tile-body::after {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: -4rem;
  bottom: -3.5rem;
  width: 1px;
  background: currentColor;
  opacity: 0.32;
  pointer-events: none;
}
***/

/* Optional subtle quote-card polish */
.tile-blockquote-square .tw-tile {
  border-color: rgba(15, 23, 42, 0.14);
}

.tile-blockquote-square .tw-tile-description {
  max-width: 36ch;
}

/* ============================================================
   2) Round blockquote display
   Widget class: tile-blockquote-round
   ============================================================ */

.tile-blockquote-round .tw-tiles-grid {
  align-items: center;
}

.tile-blockquote-round .tw-tile {
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  max-width: var(--tw-tile-max-width, 360px);
  min-height: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  overflow: visible;
}

.tile-blockquote-round .tw-tile-inner {
  min-height: 100%;
  height: 100%;
  padding: 0;
  align-items: center;
  text-align: center;
}

.tile-blockquote-round .tw-tile-body {
  align-items: center;
  justify-content: center;
  max-width: 78%;
  margin-inline: auto;
}

.tile-blockquote-round .tw-tile-body::before,
.tile-blockquote-round .tw-tile-body::after {
  position: absolute;
  color: var(--tw-quote-mark-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.8;
  font-weight: 800;
  opacity: 0.9;
}

.tile-blockquote-round .tw-tile-body::before {
  content: "“";
  left: -2.35rem;
  top: -2.2rem;
}

.tile-blockquote-round .tw-tile-body::after {
  content: "”";
  right: -2.35rem;
  bottom: -2.6rem;
}

.tile-blockquote-round .tw-tile-description {
  text-align: center;
  max-width: 24ch;
}

.tile-blockquote-round .tw-tile-title {
  text-align: center;
}

/* Keep round tiles sane on smaller screens */
@media (max-width: 640px) {
  .tile-blockquote-round .tw-tile {
    width: min(100%, var(--tw-tile-max-width, 360px));
  }

  .tile-blockquote-round .tw-tile-body {
    max-width: 82%;
  }

  .tile-blockquote-round .tw-tile-body::before {
    left: -1.65rem;
  }

  .tile-blockquote-round .tw-tile-body::after {
    right: -1.65rem;
  }
}

