
.ttor,
.ttor * {
    box-sizing: border-box;
}

.ttor {
    width: min(1120px, calc(100% - 36px));
    margin: 42px auto 70px;
    font-family: Poppins, Arial, sans-serif;
    color: #071a44;
}

.ttor-header {
    margin-bottom: 24px;
}

.ttor-kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #0872ff;
    font-size: 12px;
    font-weight: 700;
}

.ttor-header h1 {
    margin: 8px 0 4px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.ttor-header p {
    margin: 0;
    color: #65738a;
    font-size: 15px;
    line-height: 1.65;
}

.ttor-content {
    padding: 24px;
    border: 1px solid #dbe5f2;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(25, 55, 95, .05);
}

.ttor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ttor-card {
    position: relative;
    padding: 20px;
    border: 1px solid #dbe5f2;
    border-radius: 14px;
    background: #fff;
}

.ttor-place {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5ff;
    color: #0872ff;
    font-size: 13px;
    font-weight: 700;
}

.ttor-card__top {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-right: 30px;
}

.ttor-card__top img {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border: 1px solid #dce6f2;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f7fb;
}

.ttor-company {
    min-width: 0;
}

.ttor-company h3 {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.35;
}

.ttor-verified {
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0872ff;
    color: #fff;
    font-size: 10px;
    vertical-align: 2px;
}

.ttor-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.ttor-rating > span:last-child {
    color: #8190a5;
}

.ttor-stars {
    display: inline-flex;
    gap: 1px;
}

.ttor-stars span {
    color: #d7dee8;
}

.ttor-stars span.is-filled {
    color: #ffad00;
}

.ttor-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 18px 0;
    border: 1px solid #e1e8f2;
    border-radius: 10px;
    overflow: hidden;
}

.ttor-stats > div {
    padding: 12px 8px;
    text-align: center;
}

.ttor-stats > div + div {
    border-left: 1px solid #e1e8f2;
}

.ttor-stats strong,
.ttor-stats span {
    display: block;
}

.ttor-stats strong {
    font-size: 17px;
}

.ttor-stats span {
    margin-top: 2px;
    color: #8390a3;
    font-size: 10px;
}

.ttor-button {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #0872ff;
    color: #fff !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none !important;
}

.ttor-empty {
    padding: 38px;
    border: 1px dashed #cad8e8;
    border-radius: 12px;
    color: #68768b;
    text-align: center;
}

@media (max-width: 900px) {
    .ttor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ttor {
        width: min(100% - 22px, 1120px);
    }

    .ttor-content {
        padding: 14px;
    }

    .ttor-grid {
        grid-template-columns: 1fr;
    }
}
