.tc-page{}

.tc-hero{
border-bottom:1px dashed var(--color-border);
}

.tc-hero-block{
max-width:720px;
margin-inline:auto;
text-align:center;
display:flex;
flex-direction:column;
gap:var(--space-2);
}

.tc-section{
border-bottom:1px dashed var(--color-border);
}

.tc-section:last-child{
border-bottom:none;
}

.tc-block{
display:flex;
flex-direction:column;
gap:var(--space-2);
margin-bottom:var(--space-4);
}

.tc-list{
padding-left:0;
}

.tc-list li{
position:relative;
padding-left:1rem;
color:var(--color-text-secondary);
}

.tc-list li::before{
content:"";
position:absolute;
left:0;
top:0.6em;
width:6px;
height:1px;
background:var(--color-accent);
}

.tc-wide{
max-width:900px;
}

@media (max-width:768px){
.tc-hero-block{
text-align:left;
}

.tc-wide{
max-width:100%;
}
}