.pm-specs {
    width: 100%;
    margin: 0 0 32px;
    color: #1f2937;
    font-family: inherit;
}

.pm-specs,
.pm-specs * {
    box-sizing: border-box;
}

.pm-specs__card {
    overflow: hidden;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.pm-specs__header {
    padding: 24px 28px 10px;
}

.pm-specs__title {
    margin: 0;
    color: #202633;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.pm-specs__rows {
    width: 100%;
}

.pm-specs__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    min-height: 58px;
    padding: 18px 28px;
    border-top: 1px solid #edf1f6;
    background: #ffffff;
}

.pm-specs__row:hover {
    background: #fbfdff;
}

.pm-specs__label {
    position: relative;
    flex: 0 0 42%;
    padding-left: 24px;
    color: #222b3a;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.pm-specs__label::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #1f9df2;
    border-radius: 3px;
    opacity: 0.9;
}

.pm-specs__value {
    flex: 1 1 auto;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    text-align: right;
    word-break: break-word;
}

.pm-specs__link {
    color: #118ee8;
    font-weight: 650;
    text-decoration: none;
}

.pm-specs__link:hover,
.pm-specs__link:focus {
    color: #0b74c4;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pm-specs__separator {
    color: #6b7280;
}

@media (max-width: 767px) {
    .pm-specs__header {
        padding: 20px 20px 8px;
    }

    .pm-specs__title {
        font-size: 18px;
    }

    .pm-specs__row {
        display: block;
        min-height: 0;
        padding: 16px 20px;
    }

    .pm-specs__label {
        margin-bottom: 6px;
        padding-left: 20px;
        font-size: 13px;
    }

    .pm-specs__value {
        padding-left: 20px;
        font-size: 14px;
        text-align: left;
    }
}
