.calendar{
margin-bottom: 60px;
}
.timeline__more-btn{
background-color: transparent;
color: var(--color-red);
text-transform: uppercase;
font-weight: 600;
text-decoration: underline;
text-underline-offset: 4px;
margin-inline: auto;
margin-top: 40px;
display: flex;
justify-content: center;
}
.timeline__more-btn:hover{
color: var(--color-primary);
}
.timeline{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
}
.timeline-ele-wrapper{
position: relative;
}
.timeline-ele-wrapper:before{
content: '';
display: block;
width: 16px;
height: 16px;
border: 1px solid var(--color-text);	
border-radius: 50%;
margin-bottom: 32px;
flex-shrink: 0;
}
.timeline-ele-wrapper:not(:last-child):after{
content: "";
display: block;
border-top: 1px solid #707070;
width: calc(100% - 32px);
position: absolute;
left: 32px;
top: 0.5rem;
}
.timeline-ele__date{
font-weight: 600;
color: var(--color-primary);
}
.timeline-ele-wrapper:first-child:before{
background-color: var(--color-red);
border-color: var(--color-red);
}
@media screen and (max-width: 992px){
.timeline{
grid-template-columns: 1fr;
}
.timeline-ele-wrapper{
display: flex;
gap: 32px;
}
.timeline-ele__date{
margin-top: 0;
line-height: 1.2rem;
}
.timeline-ele-wrapper:not(:last-child):after{
border-left: 1px solid #707070;
width: 1px;
height: calc(100% - 32px);
position: absolute;
left: 0.5rem;
top: 2.5rem;
}
}