main.taxonomy a {
    color: var(--red);
    text-decoration: none;
}

main.taxonomy a:hover {
    text-decoration: none;
    color: var(--dark-red);
}






.section-info-type-portfolio {
    margin-bottom: 32px;
}

.section-info-type-portfolio img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-info-type-portfolio h1,
.section-info-type-portfolio p
{
    margin-bottom: 32px;
}

.section-info-type-portfolio p.offer
{
    margin-bottom: 16px;
    font-weight: bold;
}

.wrapper-img-info-type-portfolio {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.wrapper-btn-type-portfolio {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wrapper-btn-type-portfolio {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 576px) {
    .wrapper-btn-type-portfolio {
        flex-direction: column;
    }

    .wrapper-btn-type-portfolio a {
        width: 100%;
        text-align: center;
    }
 }

.taxonomy-related-terms__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.taxonomy-related-terms__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    text-decoration: none;
    color: var(--light-black);
    font-size: 14px;
    transition: border-color 0.15s, color 0.15s;
}

.taxonomy-related-terms__item:hover {
    border-color: var(--red);
    color: var(--red);
}

.taxonomy-related-terms__count {
    font-size: 12px;
    color: #aaa;
}