/* ==========================================================
   CORAL — CONFIGURACIÓN GENERAL
   ========================================================== */

.coral-approach,
.coral-approach *,
.coral-process,
.coral-process *,
.coral-home-story,
.coral-home-story * {
	box-sizing: border-box;
}


/* ==========================================================
   CORAL — NUESTRO ENFOQUE
   ========================================================== */

.coral-approach {
	background: var(--coral-bg);
	color: var(--coral-body);
}

.coral-approach__intro {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	padding: clamp(44px, 5vw, 72px) 24px clamp(64px, 7vw, 96px);
	background: var(--coral-bg);
	overflow: hidden;
}

.coral-approach__inner {
	width: min(92vw, 1500px);
	margin-inline: auto;
}

.coral-approach__title,
.coral-process__title {
	margin: 0;
	color: var(--coral-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.15;
	text-align: center;
}

.coral-approach__title {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.coral-approach__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: clamp(36px, 4vw, 68px);
	margin-top: clamp(42px, 5vw, 64px);
}

.coral-approach__feature {
	display: grid;
	grid-template-columns: 108px minmax(0, 1fr);
	align-items: start;
	gap: 24px;
	width: 100%;
	max-width: 410px;
	min-width: 0;
	margin-inline: auto;
}

.coral-approach__icon {
	display: grid;
	width: 108px;
	height: 108px;
	flex-shrink: 0;
	place-items: center;
	border: 2px solid var(--coral-green-soft);
	border-radius: 50%;
	color: var(--coral-green-soft);
}

.coral-approach__icon svg {
	width: 56px;
	height: 56px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.coral-approach__content {
	min-width: 0;
	padding-top: 4px;
}

.coral-approach__feature-title {
	margin: 0 0 8px;
	color: var(--coral-heading);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
}

.coral-approach__feature-text {
	margin: 0;
	color: var(--coral-body);
	font-size: 1rem;
	line-height: 1.65;
}


/* ==========================================================
   CORAL — NUESTRA PROPUESTA
   ========================================================== */

.coral-process {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	padding: clamp(64px, 7vw, 96px) 24px;
	background: var(--coral-section);
	border-top: 1px solid rgba(255, 255, 255, 0.85);
	overflow: hidden;
}

.coral-process__inner {
	width: min(94vw, 1600px);
	margin-inline: auto;
}

.coral-process__title {
	font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.coral-process__steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 20px;
	margin-top: clamp(46px, 6vw, 72px);
}

.coral-process__steps::before {
	position: absolute;
	z-index: 0;
	top: 25px;
	right: calc(100% / 12);
	left: calc(100% / 12);
	height: 2px;
	background: var(--coral-green-soft);
	content: "";
	opacity: 0.5;
}

.coral-process__step {
	position: relative;
	z-index: 1;
	min-width: 0;
	text-align: center;
}

.coral-process__number {
	display: grid;
	width: 52px;
	height: 52px;
	margin: 0 auto 28px;
	place-items: center;
	border: 3px solid var(--coral-section);
	border-radius: 50%;
	background: var(--coral-green-soft);
	box-shadow: 0 0 0 1px rgba(45, 78, 59, 0.15);
	color: var(--coral-white);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1;
}

.coral-process__icon {
	display: grid;
	height: 82px;
	margin-bottom: 14px;
	place-items: center;
	color: var(--coral-green-soft);
}

.coral-process__icon svg {
	width: 68px;
	height: 68px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.coral-process__content {
	min-width: 0;
}

.coral-process__step-title {
	margin: 0 0 9px;
	color: var(--coral-heading);
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.3;
}

.coral-process__step-text {
	max-width: 190px;
	margin: 0 auto;
	color: var(--coral-body);
	font-size: 0.94rem;
	line-height: 1.55;
}


/* ==========================================================
   CORAL — BLOQUE FINAL DEL HOME
   DISTRIBUCIÓN SEGÚN EL DISEÑO ORIGINAL
   ========================================================== */

.coral-home-story,
.coral-home-story * {
	box-sizing: border-box;
}

.coral-home-story {
	position: relative;
	left: 50%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
	width: 100vw;
	margin-left: -50vw;
	background: var(--coral-bg);
	color: var(--coral-body);
	overflow: hidden;
}


/* ==========================================================
   CORAL — ¿CÓMO PODRÍAS SENTIRTE?
   COLUMNA SUPERIOR IZQUIERDA
   ========================================================== */

.coral-feelings {
	display: flex;
	align-items: center;
	min-width: 0;
	padding:
		clamp(46px, 5vw, 76px)
		clamp(34px, 5vw, 76px);
	background: var(--coral-bg);
}

.coral-feelings__inner {
	width: 100%;
	max-width: 760px;
	margin-inline: auto;
}

.coral-feelings__title {
	margin: 0;
	color: var(--coral-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 500;
	line-height: 1.12;
	text-align: center;
}

.coral-feelings__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: clamp(20px, 3vw, 48px);
	row-gap: clamp(38px, 4vw, 58px);
	margin-top: clamp(38px, 4vw, 58px);
}

.coral-feeling {
	min-width: 0;
	text-align: center;
}

.coral-feeling__icon {
	display: grid;
	width: 62px;
	height: 62px;
	margin: 0 auto 13px;
	place-items: center;
	color: var(--coral-gold, #c9a05d);
}

.coral-feeling__icon svg {
	display: block;
	width: 50px;
	height: 50px;
}

.coral-feeling__title {
	margin: 0;
	color: var(--coral-heading);
	font-size: 0.94rem;
	font-weight: 650;
	line-height: 1.43;
}


/* ==========================================================
   CORAL — CONVERSACIÓN
   COLUMNA SUPERIOR DERECHA
   ========================================================== */

.coral-conversation {
	min-width: 0;
	padding: 14px 18px 14px 0;
	background: var(--coral-bg);
}

.coral-conversation__inner {
	display: grid;
	grid-template-columns: minmax(270px, 0.76fr) minmax(340px, 1.24fr);
	width: 100%;
	height: 100%;
	min-height: 500px;
	border-radius: 20px;
	background: var(--coral-section);
	overflow: hidden;
}

.coral-conversation__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
	padding:
		clamp(38px, 4vw, 64px)
		clamp(30px, 3.5vw, 56px);
}

.coral-conversation__title {
	margin: 0;
	color: var(--coral-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 2.75vw, 3rem);
	font-weight: 500;
	line-height: 1.08;
}

.coral-conversation__text {
	max-width: 430px;
	margin: 25px 0 0;
	color: var(--coral-body);
	font-size: 0.98rem;
	line-height: 1.7;
}

.coral-conversation__media {
	min-width: 0;
	min-height: 500px;
	overflow: hidden;
}

.coral-conversation__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* ==========================================================
   CORAL — CONOCÉ A ELIANA
   FILA INFERIOR COMPLETA
   ========================================================== */

.coral-practitioner {
	grid-column: 1 / -1;
	padding:
		clamp(34px, 4vw, 58px)
		clamp(44px, 6vw, 96px);
	background: var(--coral-bg);
	border-top: 1px solid rgba(45, 78, 59, 0.06);
}

.coral-practitioner__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
	align-items: center;
	width: min(94vw, 1500px);
	margin-inline: auto;
}

.coral-practitioner__profile {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	align-items: center;
	gap: clamp(32px, 4vw, 54px);
	min-width: 0;
	padding-right: clamp(42px, 5vw, 80px);
}

.coral-practitioner__photo-wrap {
	position: relative;
	width: 180px;
	height: 180px;
	padding: 7px;
	border: 1px solid rgba(45, 78, 59, 0.13);
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(38, 48, 41, 0.09);
}

.coral-practitioner__photo-wrap::before {
	position: absolute;
	inset: -7px;
	border: 1px solid rgba(201, 160, 93, 0.42);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.coral-practitioner__photo {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	object-position: center top;
}

.coral-practitioner__content {
	min-width: 0;
}

.coral-practitioner__title {
	margin: 0;
	color: var(--coral-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 500;
	line-height: 1.12;
}

.coral-practitioner__text {
	max-width: 680px;
	margin: 17px 0 0;
	color: var(--coral-body);
	font-size: 0.98rem;
	line-height: 1.68;
}

.coral-practitioner__quote {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 210px;
	margin: 0;
	padding:
		24px
		clamp(34px, 5vw, 74px);
	border-left: 1px solid rgba(45, 78, 59, 0.14);
	color: var(--coral-green-soft);
	text-align: center;
}

.coral-practitioner__quote p {
	max-width: 540px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.65rem, 2.35vw, 2.35rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.42;
}

.coral-practitioner__quote-decoration {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 22px;
	color: var(--coral-gold, #c9a05d);
}

.coral-practitioner__quote-decoration > span:not(
	.coral-practitioner__heart
) {
	width: 38px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.coral-practitioner__heart {
	font-size: 1.35rem;
	line-height: 1;
}


/* ==========================================================
   CORAL — BOTONES DEL BLOQUE
   ========================================================== */

.coral-story-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	margin-top: 27px;
	padding: 12px 19px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.coral-story-button--primary {
	border-color: var(--coral-green-soft);
	background: var(--coral-green-soft);
	color: var(--coral-white, #ffffff);
}

.coral-story-button--secondary {
	border-color: rgba(45, 78, 59, 0.35);
	background: transparent;
	color: var(--coral-green-soft);
}

.coral-story-button__icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.coral-story-button__arrow {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
}

@media (hover: hover) {

	.coral-story-button:hover {
		transform: translateY(-2px);
	}

	.coral-story-button--primary:hover {
		border-color: var(--coral-heading);
		background: var(--coral-heading);
		color: var(--coral-white, #ffffff);
	}

	.coral-story-button--secondary:hover {
		border-color: var(--coral-green-soft);
		background: var(--coral-green-soft);
		color: var(--coral-white, #ffffff);
	}
}


/* ==========================================================
   PANTALLAS MEDIANAS
   ========================================================== */

@media (max-width: 1250px) {

	.coral-home-story {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	}

	.coral-feelings {
		padding-inline: 28px;
	}

	.coral-feelings__grid {
		column-gap: 16px;
	}

	.coral-feeling__title {
		font-size: 0.86rem;
	}

	.coral-conversation__inner {
		grid-template-columns: minmax(250px, 0.82fr) minmax(300px, 1.18fr);
	}

	.coral-conversation__content {
		padding-inline: 34px;
	}

	.coral-practitioner__profile {
		grid-template-columns: 155px minmax(0, 1fr);
		gap: 30px;
	}

	.coral-practitioner__photo-wrap {
		width: 155px;
		height: 155px;
	}
}


/* ==========================================================
   TABLET
   A PARTIR DE AQUÍ SE APILAN POR FALTA DE ESPACIO
   ========================================================== */

@media (max-width: 980px) {

	.coral-home-story {
		grid-template-columns: 1fr;
	}

	.coral-feelings {
		padding: 54px 24px 64px;
	}

	.coral-feelings__inner {
		max-width: 760px;
	}

	.coral-feelings__grid {
		column-gap: 24px;
	}

	.coral-conversation {
		padding: 22px 24px 48px;
	}

	.coral-conversation__inner {
		grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
		min-height: 440px;
	}

	.coral-conversation__media {
		min-height: 440px;
	}

	.coral-practitioner {
		grid-column: auto;
		padding-inline: 28px;
	}

	.coral-practitioner__inner {
		grid-template-columns: 1fr;
		max-width: 760px;
	}

	.coral-practitioner__profile {
		padding: 0 0 42px;
	}

	.coral-practitioner__quote {
		min-height: 0;
		padding: 40px 30px 0;
		border-top: 1px solid rgba(45, 78, 59, 0.14);
		border-left: 0;
	}
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

	.coral-feelings {
		padding: 46px 20px 56px;
	}

	.coral-feelings__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 18px;
		row-gap: 34px;
		margin-top: 38px;
	}

	.coral-feeling__icon {
		width: 54px;
		height: 54px;
		margin-bottom: 10px;
	}

	.coral-feeling__icon svg {
		width: 44px;
		height: 44px;
	}

	.coral-feeling__title {
		font-size: 0.9rem;
	}

	.coral-conversation {
		padding: 18px 20px 38px;
	}

	.coral-conversation__inner {
		grid-template-columns: 1fr;
		min-height: 0;
		border-radius: 16px;
	}

	.coral-conversation__content {
		padding: 38px 26px 42px;
	}

	.coral-conversation__media {
		min-height: 310px;
	}

	.coral-conversation__title br {
		display: none;
	}

	.coral-story-button {
		width: 100%;
		max-width: 340px;
	}

	.coral-practitioner {
		padding: 48px 20px 58px;
	}

	.coral-practitioner__inner {
		width: 100%;
	}

	.coral-practitioner__profile {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 40px;
		text-align: center;
	}

	.coral-practitioner__photo-wrap {
		width: 155px;
		height: 155px;
		margin-inline: auto;
	}

	.coral-practitioner__content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.coral-practitioner__quote {
		padding: 36px 10px 0;
	}
}


/* ==========================================================
   MOBILE PEQUEÑO
   ========================================================== */

@media (max-width: 430px) {

	.coral-feelings__grid {
		column-gap: 10px;
		row-gap: 31px;
	}

	.coral-feeling__title {
		font-size: 0.84rem;
	}

	.coral-conversation__media {
		min-height: 255px;
	}

	.coral-conversation__content {
		padding: 32px 22px 36px;
	}

	.coral-conversation__text {
		margin-top: 20px;
		font-size: 0.95rem;
	}

	.coral-story-button {
		font-size: 0.76rem;
	}

	.coral-practitioner__quote p {
		font-size: 1.55rem;
	}
}
/* =========================================================
   CORAL TREATMENTS
   ========================================================= */

.coral-treatments {
	position: relative;
	left: 50%;

	width: 100vw;
	max-width: none;

	margin-left: -50vw;
	margin-right: -50vw;

	padding:
		clamp(72px, 7vw, 105px)
		clamp(24px, 4vw, 64px)
		clamp(74px, 7vw, 108px);

	background: #f8f6f1;
	box-sizing: border-box;
}

.coral-treatments *,
.coral-treatments *::before,
.coral-treatments *::after {
	box-sizing: border-box;
}

.coral-treatments__inner {
	width: min(100%, 1700px);
	margin: 0 auto;
}

.coral-treatments__header {
	max-width: 760px;
	margin:
		0 auto
		clamp(38px, 4vw, 54px);

	text-align: center;
}

.coral-treatments__title {
	margin: 0;

	color: #174f47;
	font-family: var(--coral-font-heading, Georgia, serif);
	font-size: clamp(32px, 2.7vw, 46px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.025em;
	text-wrap: balance;
}


/* =========================================================
   GRID
   ========================================================= */

.coral-treatments__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(18px, 1.45vw, 25px);
	align-items: stretch;
}


/* =========================================================
   CARD
   ========================================================= */

.coral-treatment-card {
	position: relative;

	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;

	background: #ffffff;
	border: 1px solid rgba(23, 79, 71, 0.09);
	border-radius: 20px;

	box-shadow:
		0 12px 28px rgba(24, 58, 51, 0.07);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.coral-treatment-card:hover {
	transform: translateY(-6px);

	border-color: rgba(23, 79, 71, 0.18);

	box-shadow:
		0 20px 42px rgba(24, 58, 51, 0.13);
}


/* =========================================================
   IMAGE
   ========================================================= */

.coral-treatment-card__media {
	position: relative;
	overflow: hidden;

	aspect-ratio: 4 / 4.7;

	background: #e8ece8;
}

.coral-treatment-card__image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	transition: transform 0.5s ease;
}

.coral-treatment-card:hover .coral-treatment-card__image {
	transform: scale(1.04);
}


/* =========================================================
   ICON
   ========================================================= */

.coral-treatment-card__icon {
	position: relative;
	z-index: 2;

	display: grid;
	place-items: center;

	width: 58px;
	height: 58px;
	margin: -29px auto 0;

	background: #174f47;
	border: 4px solid #ffffff;
	border-radius: 50%;

	box-shadow:
		0 7px 17px rgba(23, 79, 71, 0.2);
}

.coral-treatment-card__icon svg {
	width: 27px;
	height: 27px;

	fill: none;
	stroke: #d4b266;
	stroke-width: 2.1;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   CONTENT
   ========================================================= */

.coral-treatment-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;

	padding:
		18px
		clamp(16px, 1.25vw, 21px)
		26px;

	text-align: center;
}

.coral-treatment-card__title {
	margin: 0 0 11px;

	color: #174f47;
	font-family: var(--coral-font-heading, Georgia, serif);
	font-size: clamp(19px, 1.25vw, 23px);
	font-weight: 500;
	line-height: 1.12;
	text-wrap: balance;
}

.coral-treatment-card__text {
	margin: 0;

	color: #626963;
	font-size: clamp(14px, 0.88vw, 15px);
	font-weight: 400;
	line-height: 1.62;
}


/* =========================================================
   FOOTER LINK
   ========================================================= */

.coral-treatments__footer {
	display: flex;
	justify-content: center;

	margin-top: clamp(40px, 4vw, 56px);
}

.coral-treatments__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 12px 2px 9px;

	color: #174f47;
	border-bottom: 1px solid rgba(23, 79, 71, 0.55);

	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.11em;
	text-decoration: none;
	text-transform: uppercase;

	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		gap 0.25s ease;
}

.coral-treatments__link:hover {
	gap: 15px;

	color: #a98143;
	border-color: #a98143;
}

.coral-treatments__arrow {
	width: 20px;
	height: 20px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1380px) {

	.coral-treatments {
		padding-right: 32px;
		padding-left: 32px;
	}

	.coral-treatments__inner {
	width: min(100%, 1380px);
}

	.coral-treatments__grid {
		gap: 17px;
	}

	.coral-treatment-card__content {
		padding-right: 15px;
		padding-left: 15px;
	}

	.coral-treatment-card__title {
		font-size: 20px;
	}

	.coral-treatment-card__text {
		font-size: 14px;
	}

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

	.coral-treatments {
		padding-right: 28px;
		padding-left: 28px;
	}

	.coral-treatments__inner {
		width: min(100%, 930px);
	}

	.coral-treatments__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 25px;
	}

	.coral-treatment-card__media {
		aspect-ratio: 5 / 4;
	}

	.coral-treatment-card__title {
		font-size: 23px;
	}

	.coral-treatment-card__text {
		font-size: 15px;
	}

}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 760px) {

	.coral-treatments {
		padding:
			68px
			20px
			72px;
	}

	.coral-treatments__header {
		margin-bottom: 36px;
	}

	.coral-treatments__title {
		font-size: clamp(30px, 7vw, 39px);
	}

	.coral-treatments__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}

	.coral-treatment-card__media {
		aspect-ratio: 4 / 4.4;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

	.coral-treatments {
		padding:
			60px
			18px
			66px;
	}

	.coral-treatments__header {
		margin-bottom: 32px;
	}

	.coral-treatments__title {
		font-size: 31px;
		line-height: 1.12;
	}

	.coral-treatments__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.coral-treatment-card {
		width: 100%;
		max-width: 410px;
		margin: 0 auto;
	}

	.coral-treatment-card__media {
		aspect-ratio: 4 / 3.35;
	}

	.coral-treatment-card__icon {
		width: 62px;
		height: 62px;
		margin-top: -31px;
	}

	.coral-treatment-card__icon svg {
		width: 29px;
		height: 29px;
	}

	.coral-treatment-card__content {
		padding:
			20px
			23px
			28px;
	}

	.coral-treatment-card__title {
		font-size: 24px;
	}

	.coral-treatment-card__text {
		font-size: 16px;
	}

	.coral-treatments__footer {
		margin-top: 38px;
	}

	.coral-treatments__link {
		font-size: 12px;
		letter-spacing: 0.09em;
	}

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	.coral-treatment-card,
	.coral-treatment-card__image,
	.coral-treatments__link {
		transition: none;
	}

	.coral-treatment-card:hover {
		transform: none;
	}

	.coral-treatment-card:hover .coral-treatment-card__image {
		transform: none;
	}

}