.taller-pqe {
    --tpqe-accent: #d52b32;
    --tpqe-text: #171717;
    --tpqe-desc: #4f4f4f;
    --tpqe-bg: #ffffff;
    --tpqe-max-width: 1240px;
    width: 100%;
    box-sizing: border-box;
    background: var(--tpqe-bg);
    padding: 34px 24px;
    font-family: Arial, Helvetica, sans-serif;
}

.taller-pqe *,
.taller-pqe *::before,
.taller-pqe *::after {
    box-sizing: border-box;
}

.taller-pqe__inner {
    width: 100%;
    max-width: var(--tpqe-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(190px, 0.9fr) minmax(0, 4fr);
    align-items: stretch;
}

.taller-pqe__heading {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 32px 6px 0;
    margin-right: 8px;
    line-height: 1.08;
}

.taller-pqe__heading::before {
    content: '';
    width: 17px;
    height: 2px;
    margin-bottom: 8px;
    background: var(--tpqe-accent);
}

.taller-pqe__heading::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 0;
    width: 1px;
    background: #d8d8d8;
}

.taller-pqe__title-main,
.taller-pqe__title-highlight {
    display: block;
    margin: 0;
    font-size: clamp(18px, 1.6vw, 27px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--tpqe-text);
}

.taller-pqe__title-highlight {
    color: var(--tpqe-accent);
}

.taller-pqe__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    align-items: stretch;
}

.taller-pqe__feature {
    position: relative;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-content: center;
    gap: 12px;
    min-width: 0;
    padding: 10px 26px;
    margin: 0;
}

.taller-pqe__feature:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 13%;
    bottom: 13%;
    right: 0;
    width: 1px;
    background: #dedede;
}

.taller-pqe__icon.dashicons {
    width: 32px;
    height: 32px;
    font-size: 29px;
    line-height: 32px;
    color: var(--tpqe-accent);
}

.taller-pqe__content {
    min-width: 0;
}

.taller-pqe__feature-title {
    margin: 0 0 7px;
    color: var(--tpqe-text);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.18;
    text-transform: uppercase;
}

.taller-pqe__description {
    margin: 0;
    color: var(--tpqe-desc);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.45;
}

@media (max-width: 1050px) {
    .taller-pqe__inner {
        grid-template-columns: 220px minmax(0, 1fr);
    }
    .taller-pqe__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .taller-pqe__feature:nth-child(2n)::after {
        display: none;
    }
    .taller-pqe__feature:nth-child(n+3) {
        border-top: 1px solid #e5e5e5;
    }
}

@media (max-width: 720px) {
    .taller-pqe {
        padding: 28px 20px;
    }
    .taller-pqe__inner {
        display: block;
    }
    .taller-pqe__heading {
        padding: 0 0 22px;
        margin: 0 0 8px;
    }
    .taller-pqe__heading::after {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        height: 1px;
    }
    .taller-pqe__features {
        grid-template-columns: 1fr;
    }
    .taller-pqe__feature {
        padding: 20px 0;
    }
    .taller-pqe__feature:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        height: 1px;
        display: block;
    }
    .taller-pqe__feature:nth-child(n+3) {
        border-top: 0;
    }
    .taller-pqe__feature-title {
        font-size: 13px;
    }
    .taller-pqe__description {
        font-size: 12px;
    }
}
