/* @group Single
------------------------------------ */

.single-header {
    padding-top: 6rem;
}
.single-header .breadcrumbs-box {
    margin: 0 0 2.1rem;
    color: var(--tower-red);
}
.single-header .breadcrumbs-box p {
    --fs: 1.5rem;
    --lh: 1.45em;
}
.single-header .title-box {
    margin: 0 0 3rem;
    color: var(--tower-red);
}
.single-header .image-box .img-box {
    height: 35rem;
    margin: 0 0 1rem;
}
.single-header .image-box .has-paragraph-footline-font-size {
    color: var(--tower-grey);
    text-decoration: underline;
}

.single-content {
    margin-block: 6rem 10rem;
}

.single-links {
    text-align: center;
    margin: 0 0 10rem;
}
.single-links .links-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-top: 1.6rem;
}
.single-links .links-wrapper button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 100%;
    background: var(--white);
    color: var(--flat-black);
}
.single-links .links-wrapper button i {
    font-size: 1.8rem;
}
.single-links .links-wrapper button i:is(.icon-x) {
    font-size: 1.6rem;
}
.single-links .links-wrapper button i:is(.icon-fb) {
    font-size: 2.1rem;
}

@media only screen
and (min-width : 961px) {
    .single-header {
        padding-top: 10rem;
    }
    .single-header .breadcrumbs-box {
        margin: 0 0 5rem;
    }
    .single-header .breadcrumbs-box p {
        --ls: .013em;
    }
    .single-header .title-box {
        margin: 0 0 2.5rem;
    }
    .single-header .image-box .img-box {
        height: 49.8rem;
        margin: 0 0 .5rem;
    }
    .single-header .image-box .has-paragraph-footline-font-size {
        text-decoration: none;
        --fs: 1.4rem;
        --lh: 2em;
        --ls: .014em;
    }
    .single-content {
        margin-block: 5rem 10rem;
    }
    .single-links .links-wrapper button {
        width: 3.5rem;
        height: 3.5rem;
    }
    .single-links .links-wrapper button:hover {
        color: var(--tower-red);
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .single-header .single-links .has-paragraph-small-font-size {
        --lh: 1.45em;
        --ls: 0;
    } 
}

/* @end */


/* Animations
------------------------------------ */
:where(#wrapper) .contenedor .elemento {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .contenedor.animateActive .elemento {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .contenedor.animateActive .elemento {
    --delay: 0.3s;
}