
/* SENSOY24 Update 55 */

.offer-compare-hero {
    padding: 45px 0;
    border-bottom: 1px solid var(--line);
    background: #f7f8fa;
}

.offer-compare-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.offer-compare-hero h1 {
    margin: 5px 0 8px;
}

.offer-compare-hero p {
    margin: 0;
    color: #65717c;
}

.offer-compare-section {
    background: #f8f9fa;
}

.offer-compare-filter {
    margin-bottom: 16px;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px auto auto;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.offer-compare-list {
    display: grid;
    gap: 11px;
}

.offer-compare-list article {
    padding: 17px;
    display: grid;
    grid-template-columns: 90px minmax(0,1fr) auto;
    gap: 15px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.offer-compare-check {
    display: grid;
    place-items: center;
    gap: 5px;
    color: #68747f;
    font-size: 10px;
}

.offer-compare-main h2 {
    margin: 5px 0;
}

.offer-compare-main p {
    margin: 0;
    color: #67737d;
}

.offer-compare-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.offer-compare-tags span {
    padding: 4px 7px;
    border-radius: 999px;
    background: #eef1f3;
    color: #59656f;
    font-size: 10px;
}

.offer-compare-facts {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 8px;
}

.offer-compare-facts > div {
    padding: 10px;
    display: grid;
    gap: 3px;
    border-radius: 9px;
    background: #f7f8fa;
}

.offer-compare-facts strong {
    font-size: 15px;
}

.offer-compare-facts span {
    color: #6b7781;
    font-size: 9px;
}

.offer-compare-main small {
    display: block;
    margin-top: 8px;
    color: #69757f;
}

.offer-compare-actions {
    display: grid;
    gap: 7px;
}

.offer-compare-bar {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.offer-compare-bar span {
    color: #68747f;
    font-size: 11px;
}

.offer-rating-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 320px;
    gap: 18px;
    align-items: start;
}

.offer-rating-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.offer-rating-card h2 {
    margin: 5px 0 10px;
}

.offer-rating-card p {
    color: #68747f;
}

.offer-rating-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.offer-direct-wrap {
    overflow-x: auto;
}

.offer-direct-table {
    width: 100%;
    min-width: 950px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--line);
}

.offer-direct-table th,
.offer-direct-table td {
    padding: 13px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.offer-direct-table th:first-child,
.offer-direct-table td:first-child {
    width: 190px;
    background: #f8f9fa;
    font-weight: 800;
}

.offer-direct-table th strong,
.offer-direct-table th span {
    display: block;
}

.offer-direct-table th span {
    margin-top: 4px;
    color: #68747f;
    font-size: 11px;
}

.offer-direct-table .outline-button {
    margin: 3px 0;
}

.offer-direct-actions {
    margin-top: 14px;
}

@media (max-width: 1000px) {
    .offer-compare-list article {
        grid-template-columns: 80px minmax(0,1fr);
    }

    .offer-compare-actions {
        grid-column: 2;
        display: flex;
        flex-wrap: wrap;
    }

    .offer-rating-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .offer-compare-filter {
        grid-template-columns: 1fr;
    }

    .offer-compare-facts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .offer-compare-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-compare-list article {
        grid-template-columns: 1fr;
    }

    .offer-compare-actions {
        grid-column: auto;
    }

    .offer-compare-check {
        justify-items: start;
    }
}
