/* .pt-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 18px;
} */
.pt-compact-block {
    border: 1px solid #e2e6ee;
    border-radius: 20px;
    background: #f5f7fa;
    padding: 22px 22px 24px;
    margin-top: 40px;
}
.pt-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.pt-header h2 {
    margin: 0;
    font-weight: 350;
    color: #0d3b5d;
    font-size: 1.6rem;
    line-height: 1.2;
}
.pt-header p {
    margin: 0;
    color: #4b5a6a;
    font-size: 0.96rem;
    line-height: 1.6;
    max-width: 580px;
}
.pt-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
}
.pt-cat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #e2e6ee;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}
.pt-cat::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex: 0 0 auto;
}
.pt-footer {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}
.pt-footer p {
    color: #4b5a6a;
    font-size: 0.96rem;
    line-height: 1.6;
}
.pt-cta {
    text-decoration: none;
    background: #005896;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.96rem;
    padding: 10px 18px;
    border-radius: 999px;
    white-space: nowrap;
}
.pt-cat a {
    text-decoration: none !important;
    font-size: 1.02rem;
    color: #0d3b5d;
    font-weight: 600;
}
@media (min-width: 700px) {
    .pt-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 900px) {
    .pt-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 479px) {
    .pt-categories {
        grid-template-columns: repeat(1, 1fr);
    }
}