.sr-result-list {
    width: 100%;
    color: inherit;
}

.sr-result-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: clamp(8px, 1.5vw, 22px);
    margin-bottom: 24px;
}

.sr-result-logo-slot {
    display: flex;
    min-width: 0;
    min-height: 70px;
    align-items: center;
    justify-content: center;
}

.sr-result-logo-slot img {
    display: block;
    width: 100%;
    max-width: 180px;
    max-height: 120px;
    object-fit: contain;
}

.sr-result-heading {
    margin: 0 0 24px;
    text-align: center;
}

.sr-result-heading h1 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
}

.sr-result-heading p {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
}

.sr-result-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
    margin-bottom: 20px;
}

.sr-result-fact {
    min-width: 0;
    padding: 14px 16px;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.sr-result-fact h2,
.sr-result-extra h2,
.sr-result-sublist h2 {
    margin: 0 0 6px;
    font-size: 1rem;
    line-height: 1.25;
}

.sr-result-fact-value {
    overflow-wrap: anywhere;
}

.sr-result-extra {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid #d8d8d8;
}

.sr-result-extra p {
    margin: 0;
}

.sr-result-actions {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.sr-result-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid #333;
    border-radius: 3px;
    background: #fff;
    color: #222;
    font: inherit;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.sr-result-button:hover,
.sr-result-button:focus {
    background: #222;
    color: #fff;
    text-decoration: none;
}

.sr-result-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sr-result-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: clamp(.78rem, 1.25vw, 1rem);
    line-height: 1.35;
}

.sr-result-table th,
.sr-result-table td {
    padding: 8px 9px;
    border: 1px solid #d2d2d2;
    vertical-align: top;
    white-space: nowrap;
    text-align: left;
}

.sr-result-table th {
    background: #efefef;
    font-weight: 700;
}

.sr-result-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, .035);
}

.sr-result-table a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sr-result-sublist {
    margin-top: 26px;
}

.sr-result-timing {
    margin: 22px 0 0;
    text-align: center;
}

.sr-result-message {
    padding: 14px 16px;
    border: 1px solid;
    border-radius: 3px;
}

.sr-result-message--warning {
    border-color: #ffecb5;
    background: #fff3cd;
    color: #664d03;
}

.sr-result-message--error {
    border-color: #f5c2c7;
    background: #f8d7da;
    color: #842029;
}

.sr-print-frame {
    position: fixed;
    left: -10000px;
    top: 0;
    width: 1200px;
    height: 800px;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 900px) {
    .sr-result-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sr-result-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .sr-result-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sr-result-facts {
        grid-template-columns: 1fr;
    }

    .sr-result-actions {
        justify-content: stretch;
    }

    .sr-result-button {
        flex: 1 1 100%;
    }

    .sr-result-table,
    .sr-result-table thead,
    .sr-result-table tbody,
    .sr-result-table tr,
    .sr-result-table th,
    .sr-result-table td {
        display: block;
        width: 100%;
    }

    .sr-result-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .sr-result-table tr {
        margin-bottom: 12px;
        border: 1px solid #d2d2d2;
    }

    .sr-result-table td {
        display: grid;
        grid-template-columns: minmax(105px, 38%) minmax(0, 1fr);
        gap: 10px;
        border: 0;
        border-bottom: 1px solid #e5e5e5;
        white-space: normal;
    }

    .sr-result-table td:last-child {
        border-bottom: 0;
    }

    .sr-result-table td::before {
        content: attr(data-label);
        font-weight: 700;
    }
}
