.ty-header {
    background-color: var(--dark-green);
    color: #fff;
}
.ty-header h1 {
    color: var(--beige);
}
.ty-footer p {
    font-weight: 800;
    color: var(--green);
    font-style: italic;
    margin-top: 40px;
}
#ty_global .main-global {
    padding-top: 60px;
    padding-bottom: 60px;
}

.ty-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.ty-item p {
    position: relative;
    padding-left: 20px;
    font-size: .95rem;
    font-style: italic;
}
.ty-item p::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--green);
    top: 7px;
    left: 0;
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

@media (max-width: 550px) {
    .ty-body .inline-link {
        display: block;
    }
}