.nav-bar>ul>a:nth-child(2) {
	text-decoration: underline var(--red);
	text-decoration-thickness: 8px;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
    margin-top: 152px;
}
.jornadas-hero{
    display: flex;
}
h1{
    color: var(--red);
	font-style: italic;
	font-stretch: 25%;
	font-weight: 300;
	font-size: clamp(5rem, 3.947rem + 5.614vw, 9rem);
	margin-left: -5%;
	position: relative;
    line-height: 40%;
    margin-top: 90%;
}
h2{
    color: var(--white);
    font-style: italic;
	font-stretch: 25%;
    font-weight: 800;
    font-size: clamp(2rem, 1.605rem + 2.105vw, 3.5rem);
    line-height: 90%;
    position: relative;
    height: fit-content;
    box-sizing: border-box;
    white-space: nowrap;
    margin-left: 20%;
}
.jornadas-poster>img{
    width: 50vw;
    max-width: 400px;
    height: auto;
}
@media (max-width: 450px) {
    main{
        margin-top: 120px;
    }
    .jornadas-hero {
        display: block;
    }
    h1{
        margin-top: 0;
    }
    .jornadas-poster>img{
        width: 70vw;
        max-width: 300px;
        height: auto;
        margin-top: -12px;
    }
}

.jornadas-content {
	width: 90%;
	max-width: 1000px;
	padding: 30px 0 90px 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.jornadas-content p {
	font-family: "Acumin", sans-serif;
	font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
	line-height: 1.3;
	font-weight: 300;
	text-align: justify;
	color: var(--white);
	margin: 0;
}

.jornadas-content p strong {
	font-weight: 600;
	font-style: italic;
	color: var(--red);
	display: block;
	text-align: center;
	margin-bottom: 15px;
	font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
}

.jornadas-content p em {
	font-style: italic;
	color: var(--red);
	font-weight: 400;
}

.jornadas-highlight-box {
	background-color: rgba(236, 103, 98, 0.06);
	border-left: 3px solid var(--red);
	padding: 25px 30px;
	margin: 20px 0;
	font-family: "Acumin", sans-serif;
	font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
	font-weight: 300;
	font-style: italic;
	line-height: 1.7;
	color: var(--white);
}

.jornadas-cta-floating {
	position: fixed;
	bottom: 30px;
	right: 60px;
	z-index: 100;
	font-family: "Acumin", sans-serif;
	display: inline-block;
	padding: 15px 55px;
	background-color: var(--hover-red);
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	font-style: italic;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	transform: skewX(-10deg);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	backface-visibility: hidden;
}

.jornadas-cta-floating::before,
.jornadas-cta-floating::after {
	content: '';
	position: absolute;
	width: 5px;
	height: 100%;
	background-color: var(--white);
	top: 0;
}

.jornadas-cta-floating::before {
	left: -15px;
}

.jornadas-cta-floating::after {
	right: -15px;
}

.jornadas-cta-floating span {
	display: inline-block;
	transform: skewX(10deg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.jornadas-cta-floating:hover {
	background-color: var(--red);
	transform: skewX(-10deg) translateY(-3px);
	box-shadow: 0 6px 20px rgba(236, 103, 98, 0.5);
}

@media (max-width: 768px) {
	.jornadas-content {
		width: 85%;
		padding: 40px 0 80px 0;
	}

	.jornadas-content p {
		text-align: left;
	}
}

@media (max-width: 450px) {
	.jornadas-content {
		width: 90%;
		gap: 20px;
	}

	.jornadas-highlight-box {
		padding: 20px 15px;
	}

	.jornadas-cta-floating {
		bottom: 20px;
		right: 40px;
		padding: 12px 25px;
		font-size: 0.9rem;
	}
}
