.header-cta {
position: absolute;
right: 50%;
top: 50%;
text-align: center;
background-color: #d55816;
z-index: 100;
color: #fff;
border-radius: 50%;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transform: translate(50%, -50%);
width: 14rem;
height: 14rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}
.header-cta__content {
font-size: 1.2rem;
font-weight: 800;
margin-top: 1rem;
margin-bottom: 1.4rem;
}
.header-cta__link p {
font-size: 1rem;
text-decoration: underline;
text-underline-offset: 8px;
}
.header-cta__link p::after {
content: "→";
display: inline;
font-size: 1rem;
}
@media (min-width: 680px) {
.header-cta {
width: 16rem;
height: 16rem;
right: 25%;
transform: translate(50%, -52%) rotate(4deg); 
}
.header-cta__content {
margin-top: 1.4rem;
font-size: 1.4rem;
}
.header-cta__link p {
font-size: 1.2rem;
}
.header-cta__link p::after {
font-size: 1.2rem;
}
}