/* ******************************************** */
/** COMPONENT: HEADINGS
/* ******************************************** */

/* TITLES */

.c-title{
    font-weight: 200;
    font-size: clamp(2.8rem, 3.6vw, 5.2rem);
    line-height: 1.1;
}

.c-kicker{
    display: inline-block;
    color: var(--color-darkgreen);
    text-transform: uppercase;
    font-size: clamp(1.6rem, 1.5vw, 2.1rem);
    margin-bottom: 0.9em;
    opacity: .8;
    letter-spacing: 1px;
}

.c-title.c-title--arrow{
    position: relative;
}

.c-title.c-title--arrow:before{
    content: "";
    display: block;
    position: absolute;
    width: clamp(65px,8.58vw,120px);
    aspect-ratio: 120/143;
    top: calc(100% - var(--section-y) + 4px);
    right: 30%;
    background-image: url(../../images/static/video-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}