/**
 * Results Page Styles
 *
 * @package Inspire_Resources
 */

/* ==========================================================================
   Results Page
   ========================================================================== */

.results-page .resource-hero {
    text-align: center;
}

.resource-hero--results {
    padding-bottom: 240px !important;
}

.results-content {
    padding: 0 0 60px;
}

section.results-content.section-padding {
    padding-top: 0px;
}

/* Results Panels - Two column card overlapping hero */
.results-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: unset;
    border-radius: var(--border-radius);
    overflow: visible;
    margin-top: -160px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.results-panel {
    padding: 40px 35px;
}

.results-panel.results-panel--intro,
.results-panel--recommendations {
    padding: 6rem 5rem;
}

/* Left Panel - Intro with mint background and arrow */
.results-panel--intro {
    background-color: #d7ede8;
    background-image: url('/wp-content/uploads/2025/12/accordian-arrow.png');
    background-size: 350px auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.results-panel--intro .results-panel__content {
    position: relative;
    z-index: 2;
}

.results-panel__content h3 {
    color: #57499e;
    line-height: 1.5em;
}

.results-panel__content hr {
    height: 3px;
    border: unset;
    background: #000;
    margin: 1rem 0 2rem;
    max-width: 70%;
}

.results-panel--intro p {
    line-height: 1.7;
    color: #333;
    font-family: var(--font-primary);
    font-size: 15px;
    margin-bottom: 15px;
}

.results-panel--intro p:last-child {
    margin-bottom: 0;
}

/* Bold intro heading */
.results-panel--intro .results-intro-heading {
    font-weight: 700;
    color: #57499e;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.25em;
}

.results-panel--intro .results-intro-heading + hr {
    max-width: 330px;
    border: none;
    border-top: 3px solid #000;
    margin: 0 0 20px;
}

.results-panel--intro a {
    color: #00A5B5;
    text-decoration: underline;
}

/* Right Panel - Recommendations */
.results-panel--recommendations {
    background: #fff;
    padding: 40px 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.results-bucket {
    margin-bottom: 25px;
}

.results-bucket:last-child {
    margin-bottom: 0;
}

.results-bucket__title {
    color: #57499e;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: var(--font-weight-black);
    margin-bottom: 12px;
}

.results-bucket__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.results-bucket__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00A5B5;
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.results-bucket__link::after {
    content: '→';
    font-size: 18px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.results-bucket__link:hover {
    background: #009494;
    color: #fff;
}

.results-bucket__link:hover::after {
    transform: translateX(5px);
}

/* Easier Wins links - purple color */
.results-bucket--1 .results-bucket__link {
    background: #57499e;
}

.results-bucket--1 .results-bucket__link:hover {
    background: #453a7d;
}

/* Bigger Lifts links - teal color */
.results-bucket--2 .results-bucket__link {
    background: #00A5B5;
}

.results-bucket--2 .results-bucket__link:hover {
    background: #009494;
}

/* How to Use Section */
.results-how-to-use {
    background: #f0f5f5;
    padding: 40px 45px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.results-how-to-use__title {
    color: #57499e;
    font-family: var(--font-primary);
    font-size: var(--step-1);
    font-weight: 700;
    margin-bottom: 20px;
}

.results-how-to-use__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-how-to-use__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    line-height: 1.6;
}

.results-how-to-use__item:last-child {
    margin-bottom: 0;
}

.results-how-to-use__icon {
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 2px;
}

.results-how-to-use__icon svg {
    width: 24px;
    height: 24px;
}

.results-how-to-use__icon svg circle {
    fill: #57499e;
}

.results-how-to-use__text {
    font-family: var(--font-primary);
    font-size: var(--step-0);
    color: #333;
    line-height: 1.6;
}

/* CTA Section */
.results-cta * {
    font-size: var(--step-1) !important;
    font-weight: 600 !important;
    text-wrap: balance;
}

.results-cta {
    text-align: center;
    padding: 30px 0 50px;
}

.results-cta p {
    margin: 0 auto;
    line-height: 1.7;
    font-family: var(--font-primary);
    font-size: 15px;
    color: #333;
}

.results-cta a {
    color: #00A5B5;
    font-weight: 600;
    text-decoration: underline;
}

/* Download Section - Full Width */
.results-download {
    background-color: #00ac90;
    padding: 5rem 0 80px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.results-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/wp-content/plugins/inspire-resources/assets/images/e-asset.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    z-index: 1;
}

.results-download__inner {
    position: relative;
    z-index: 2;
    max-width: 80%;
    max-width: min(80%, 1475px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* Cards - matching results-panel style */
.results-download__card {
    background-color: #d7ede8;
    background-size: 350px auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Right card - purple background */
.results-download__card:last-child {
    background-color: #57499e;
    color: #fff;
    background-image: url(https://cacpstage.wpengine.com/wp-content/uploads/2025/12/practice-library-backgrounmd.png);
    background-position: center;
}

.results-download__card:last-child h3.results-download__card-title {
    color: #fff;
    font-size: var(--step-2);
}

.results-download__card-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #57499e;
    margin: 0 0 20px;
    line-height: 1.4;
}

.results-download__card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #57499e;
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.results-download__card-btn::after {
    content: '→';
    font-size: 18px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.results-download__card-btn:hover {
    background: #453a7d;
    color: #fff;
}

.results-download__card-btn:hover::after {
    transform: translateX(5px);
}

/* Secondary button style (teal) for right card */
.results-download__card:last-child .results-download__card-btn {
    background: #00A5B5;
}

.results-download__card:last-child .results-download__card-btn:hover {
    background: #009494;
}

/* Divider with text */
.results-download__divider {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.results-download__divider::before,
.results-download__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(87, 73, 158, 0.2);
}

.results-download__divider span {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #57499e;
    padding: 0 15px;
    white-space: nowrap;
}

.results-download__label {
    display: none;
}

.results-download__form {
    display: flex;
    gap: 0;
}

.results-download__input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
}

.results-download__input::placeholder {
    color: #999;
}

.results-download__btn {
    background: #57499e;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.results-download__btn:hover {
    background: #453a7d;
}

.results-download__message {
    font-family: var(--font-primary);
    font-size: 14px;
    margin-top: 10px;
    color: #fff;
}

.results-download__message.success {
    color: #fff;
}

.results-download__message.error {
    color: #ffcccc;
}

/* Gravity Form in Results Download Section */
.results-download__gform {
    width: 100%;
}

.results-download__gform .gform_wrapper {
    margin: 0;
    padding: 0;
}

/* Inline layout: input and button side by side */
.results-download__gform .gform_wrapper form {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.results-download__gform .gform_wrapper .gform_body {
    flex: 1;
    margin: 0;
}

.results-download__gform .gform_wrapper .gform_fields {
    display: flex;
    gap: 0;
}

.results-download__gform .gform_wrapper .gfield {
    margin-bottom: 0;
    padding: 0;
    flex: 1;
}

/* Hide Gravity Forms label - we use our own above */
.results-download__gform .gform_wrapper .gfield_label {
    display: none;
}

.results-download__gform .gform_wrapper .ginput_container input[type="email"],
.results-download__gform .gform_wrapper .ginput_container input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    background: #fff;
    margin: 0;
    height: 46px;
    box-sizing: border-box;
}

.results-download__gform .gform_wrapper .ginput_container input::placeholder {
    color: #999;
}

.results-download__gform .gform_wrapper .gform_footer,
.results-download__gform .gform_wrapper .gform_footer.top_label {
    margin: 0;
    padding: 0;
}

.results-download__gform .gform_wrapper .gform_footer input[type="submit"],
.results-download__gform .gform_wrapper .gform_button {
    background: #57499e;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    height: 46px;
    box-sizing: border-box;
    white-space: nowrap;
}

.results-download__gform .gform_wrapper .gform_footer input[type="submit"]:hover,
.results-download__gform .gform_wrapper .gform_button:hover {
    opacity: 0.85;
    background: #57499e;
    color: #fff;
    transform: none;
    box-shadow: none;
    border-radius: unset !important;
    padding: 12px 25px !important;
    border: none !important;
}

.results-download__gform .gform_wrapper .gform_confirmation_message {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    padding: 15px 0;
}

.results-download__gform .gform_wrapper .validation_error,
.results-download__gform .gform_wrapper .validation_message {
    color: #ffcccc;
    font-size: 12px;
}

/* Resource Search Section */
.results-search {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.results-search__title {
    color: #57499e;
    font-family: var(--font-primary);
    font-size: var(--step-1);
    font-weight: 700;
    margin: 0 0 8px;
}

.results-search__subtitle {
    color: #666;
    font-family: var(--font-primary);
    font-size: 14px;
    margin: 0 0 20px;
}

.results-search__form {
    display: flex;
    gap: 0;
    max-width: 500px;
}

.results-search__input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: var(--font-primary);
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.results-search__input:focus {
    outline: none;
    border-color: #57499e;
}

.results-search__input::placeholder {
    color: #999;
}

.results-search__btn {
    background: #57499e;
    color: #fff;
    border: none;
    padding: 14px 18px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-search__btn:hover {
    background: #453a7d;
}

.results-search__btn svg {
    width: 20px;
    height: 20px;
}

.results-search__results {
    margin-top: 25px;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
}

.results-search__loading {
    color: #666;
    font-family: var(--font-primary);
    font-size: 14px;
    padding: 20px 0;
}

.results-search__empty {
    color: #666;
    font-family: var(--font-primary);
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
}

.results-search__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.results-search__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 18px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.results-search__item:hover {
    background: #f0f0f0;
    border-left-color: #57499e;
}

.results-search__item-content {
    flex: 1;
}

.results-search__item-category {
    display: inline-block;
    background: #00A5B5;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.results-search__item-title {
    color: #57499e;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
}

.results-search__item-excerpt {
    color: #666;
    font-family: var(--font-primary);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.results-search__item-arrow {
    color: #57499e;
    font-size: 20px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.results-search__item:hover .results-search__item-arrow {
    transform: translateX(5px);
}


/* Legacy Results Styles (for backwards compatibility) */
.ir_results_first_section {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.ir_result_buckets_container,
.ir_thankyou_note_container {
    width: 100%;
    padding: 80px 60px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3) !important;
}

.ir_thankyou_note_container {
    background-color: #d7ede8;
}

.ir_result_buckets_container {
    background-color: #fff !important;
}

.thankyou-heading {
    font-size: 17px !important;
    font-family: AreaNormal !important;
    color: #57499e !important;
    letter-spacing: 0.1px !important;
    padding-bottom: 0 !important;
}

.ir-thankyou-heading-underline {
    height: 2px;
    width: 70%;
    margin: 30px 0 !important;
    background-color: #000;
}

.thankyou-text {
    font-size: 14px !important;
    font-family: AreaNormal !important;
    letter-spacing: 0.1px !important;
}

.ir-results-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -150px !important;
}

.ir-results-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.ir-bucket-title {
    font-size: 20px !important;
    font-family: AreaNormal !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #57499e !important;
}

.ir-bucket-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.5;
}

.ir-resource-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.ir-resource-item {
    padding: 8px 15px !important;
    margin: 8px 0 !important;
    background-color: #57499e !important;
}

.ir-bucket-2 .ir-resource-item {
    background-color: #00ac90 !important;
}

.ir-resource-item a {
    font-size: 14px !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.ir-resource-item a:hover {
    color: #fff;
    text-decoration: none !important;
}

.ir-resource-excerpt {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}

.ir-no-results {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.ir-no-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.ir-debug {
    margin-top: 30px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

.ir-debug strong {
    color: #856404;
}

.ir-debug pre {
    white-space: pre-wrap;
    margin: 10px 0 0;
    color: #333;
}

.ir-use-results-container {
    margin-top: 80px;
    background: #d7ede88c;
    padding: 60px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3) !important;
}

.ir-use-results-container .ir-use-results-heading {
    font-size: 26px !important;
    font-family: AreaNormal !important;
    color: #57499e !important;
}

.ir-use-results-container .ir-use-results-points-ul {
    margin-top: 30px !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
}

.ir-use-results-container .ir-use-results-points-li {
    font-size: 17px !important;
    font-family: AreaNormal;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.ir-bottom-text {
    text-align: center !important;
    font-size: 18px !important;
    font-family: AreaNormal;
    margin-top: 50px;
}

/* ==========================================================================
   Results Page Responsive
   ========================================================================== */

@media screen and (max-width: 980px) {
    .results-panels {
        grid-template-columns: 1fr;
        margin-top: -60px;
        gap: 20px;
    }

    .results-download {
        padding: 40px 20px 60px;
    }

    .results-download__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 90%;
    }

    .results-download__card {
        padding: 2.5rem 2rem;
    }

    .results-download__form {
        flex-direction: row;
        max-width: 400px;
        margin: 0 auto;
    }

    .results-how-to-use {
        padding: 35px 30px;
    }

    .results-search {
        padding: 30px 25px;
    }

    .results-search__form {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .results-panels {
        margin-top: -40px;
    }

    .results-panel {
        padding: 30px 25px;
    }

    .results-panel--intro {
        background-image: none;
    }

    .results-panel--intro .results-intro-heading {
        font-size: 15px;
    }

    .results-bucket__link {
        padding: 12px 16px;
        font-size: 13px;
    }

    .results-how-to-use__title {
        font-size: 18px;
    }

    .results-how-to-use__item {
        flex-direction: column;
        gap: 10px;
    }

    .results-how-to-use__icon {
        margin-right: 0;
    }

    .results-download__inner {
        gap: 25px;
    }

    .results-download__title,
    .results-download__title-link a {
        font-size: 18px;
    }

    .results-download__form {
        flex-direction: column;
    }

    .results-download__input {
        border-radius: var(--border-radius);
    }

    .results-download__btn {
        border-radius: var(--border-radius);
    }

    .results-no-results {
        margin-top: -40px;
        padding: 40px 25px;
    }

    .results-how-to-use,
    .results-download {
        padding: 30px 20px;
    }

    .results-search {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .results-search__form {
        flex-direction: column;
    }

    .results-search__input {
        border-right: 2px solid #e0e0e0;
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .results-search__btn {
        border-radius: var(--border-radius);
        padding: 14px;
        justify-content: center;
    }

    .results-search__item {
        padding: 15px;
    }

    .results-search__item-title {
        font-size: 14px;
    }

    .results-search__item-excerpt {
        font-size: 12px;
    }

    .ir-results-container {
        padding: 20px 15px;
    }

    .ir-results-title {
        font-size: 24px;
    }

    .ir-bucket {
        padding: 20px 15px;
    }

    .ir-bucket-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .ir-results-title {
        font-size: 20px;
    }

    .ir-bucket-title {
        font-size: 18px;
    }

    .ir-resource-item a {
        font-size: 15px;
    }
}

/* ==========================================================================
   No Results State - User answered Agree/Strongly Agree to everything
   ========================================================================== */
.results-no-results {
    margin-top: -160px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* Left column: Content */
.results-no-results__content {
    background: #d7ede8;
    border-radius: var(--border-radius, 12px);
    padding: 50px 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    text-align: left;
}

.results-no-results__content p {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 15px 0;
}

.results-no-results__content p:last-of-type {
    margin-bottom: 10px;
}

.results-no-results__content a {
    color: #00A5B5;
    font-weight: 600;
    text-decoration: underline;
}

.results-no-results__content a:hover {
    color: #008a99;
}

/* Teal dot bullets - matching single resource styling */
.results-no-results__content ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.results-no-results__content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 0.75em;
    line-height: 1.6;
    font-family: var(--font-primary);
    font-size: 15px;
    color: #333;
}

.results-no-results__content ul li:last-child {
    margin-bottom: 0;
}

.results-no-results__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    background-color: #00ac90;
    border-radius: 50%;
}

/* Right column: Purple card */
.results-no-results__card {
    background-color: #57499e;
    background-image: url(/wp-content/uploads/2025/12/practice-library-backgrounmd.png);
    background-position: center;
    background-size: cover;
    border-radius: var(--border-radius, 12px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.results-no-results__card-title {
    font-family: var(--font-primary);
    font-size: var(--step-2, 24px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 25px;
    line-height: 1.4;
}

.results-no-results__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00A5B5;
    color: #fff;
    padding: 14px 25px;
    border-radius: var(--border-radius, 12px);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.results-no-results__card-btn::after {
    content: '→';
    font-size: 18px;
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.results-no-results__card-btn:hover {
    background: #009494;
    color: #fff;
}

.results-no-results__card-btn:hover::after {
    transform: translateX(5px);
}

/* Mobile adjustments for no-results */
@media screen and (max-width: 980px) {
    .results-no-results {
        grid-template-columns: 1fr;
        margin-top: -80px;
        gap: 20px;
    }

    .results-no-results__content,
    .results-no-results__card {
        padding: 35px 30px;
    }
}
