.full-block > .title {
    font-size: 70px;
    line-height: 60px;
}

.list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding-bottom: 50px;
}

.list-link {
    color: #3c3c3c;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.list-link:not(:has(b)):hover {
    text-decoration: underline;
}

.list-media {
    display: flex;
    width: 100%;
    max-width: 600px;
    border: 1px solid black;
    margin: 0 auto;
    margin-top: 10px;
}

.list-media > img, .list-media > video {
    width: 100%;
    object-fit: contain;
}

.full-block.contact-body {
    padding-top: 0;
}

.full-block.contact-body a {
    color: inherit;
}

.full-block.contact-body b {
    padding-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .list {
        gap: 30px;
    }
}

@media screen and (max-width: 500px) {
    .full-block > .title {
        font-size: 50px;
        line-height: 50px;
    }
}