.rossa-template{
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    background-color: #fff;
    font-size: 16px;
    padding: 1.5em;
    max-width: 600px;
    align-self: center;
}

.rossa-template.rossa-template--box{
    border-radius: .5em;
    border: 1px solid var(--rossa-gray-color);
}

.rossa-template__header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.rossa-template__icon{
    background-color: var(--rossa-color-bg-gray);
    border-radius: 50%;
    padding: 1em;
}

.rossa-template__icon svg{
    width: 24px;
    height: 24px;
    color: var(--rossa-black-color);
}

.rossa-template__title{
    all: unset;
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    color: var(--rossa-black-color);
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: normal;
}


.rossa-template__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.rossa-template__dates{
    display: flex;
    padding: 1em 2em;
    border-radius: .5em;
    background-color: var(--rossa-color-bg-gray);
    justify-content: center;
    gap: 1em;
    width: fit-content;
}

.rossa-template__dates__item{
    display: flex;
    flex-direction: column;
}

.rossa-template__dates__item__title{
    display: flex;
    align-items: center;
    font-size: .8em;
    color: var(--rossa-dark-gray-color);
    justify-content: center;
}

.rossa-template__dates__item__title svg{
    width: .8em;
    height: .8em;
    color: inherit;
}

.rossa-template__dates__item__value{
    font-size: 1.2em;
    font-weight: 600;
    color: var(--rossa-black-color);
}

.rossa-template__description{
    all: unset;
    display: block;
    font-size: 1em;
    font-weight: 400;
    color: var(--rossa-dark-gray-color);
    margin: 0;
    padding: 0;
    line-height: 1.5;
    text-align: center;
}


.rossa-template__footer{
    display: flex;
    justify-content: center;
}

.rossa-template__footer .rossa-link-button{
    all: unset;
    display: block;
    width: fit-content;
    text-align: center;
    padding: .5em 1.5em;
    border-radius: .5em;
    background-color: var(--rossa-primary-color);
    color: var(--rossa-white-color);
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

@media (hover: hover) {
    .rossa-template__footer .rossa-link-button:hover{
        color: var(--rossa-white-color);
        background-color: var(--rossa-secondary-color);
    }
}

.rossa-template__footer .rossa-link-button:active,
.rossa-template__footer .rossa-link-button:focus,
.rossa-template__footer .rossa-link-button:focus-visible{
    color: var(--rossa-white-color);
    background-color: var(--rossa-secondary-color);
    text-decoration: none;
}