.dslf-screen-reader {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.dslf-search-widget,
.dslf-cards-widget,
.dslf-search-widget *,
.dslf-cards-widget * {
    box-sizing: border-box;
}

.dslf-search-shell {
    width: 100%;
}

.dslf-search-form {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
}

.dslf-search-input-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.dslf-search-input {
    width: 100%;
    min-height: 52px;
    padding: 15px 18px;
    color: #111111;
    background: #ffffff;
    border: 1px solid #d7dce3;
    border-radius: 6px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.dslf-search-input:focus {
    border-color: #102a83;
    box-shadow: 0 0 0 3px rgba(16, 42, 131, .13);
}

.dslf-search-submit,
.dslf-search-clear {
    flex: 0 0 auto;
    width: auto;
    min-height: 52px;
    padding: 15px 30px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.2;
    transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.dslf-search-submit {
    color: #ffffff;
    background: #c90000;
}

.dslf-search-submit:hover,
.dslf-search-submit:focus {
    color: #ffffff;
    background: #a60000;
}

.dslf-search-submit:hover,
.dslf-search-clear:hover {
    transform: translateY(-1px);
}

.dslf-search-clear {
    color: #1d2b45;
    background: #eef1f6;
}

.dslf-search-clear[hidden],
.dslf-no-results[hidden],
.dslf-location-card[hidden],
.dslf-location-item[hidden],
.dslf-state-group[hidden] {
    display: none !important;
}

.dslf-search-status {
    min-height: 1.4em;
    margin-top: 10px;
    font-size: 14px;
}

.dslf-cards-content {
    width: 100%;
}

.dslf-state-title,
.dslf-card-state {
    margin-top: 0;
    margin-bottom: 10px;
    color: #102a83;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.dslf-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    column-gap: 24px;
    row-gap: 28px;
}

.dslf-state-group + .dslf-state-group {
    margin-top: 52px;
}

.dslf-location-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dslf-location-card {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(18, 31, 53, .1);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}

.dslf-location-card:hover {
    border-color: #102a83;
    box-shadow: 0 16px 38px rgba(18, 31, 53, .16);
}

.dslf-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.dslf-card-title {
    margin: 0 0 5px;
    font-size: clamp(24px, 2vw, 31px);
    line-height: 1.12;
    overflow-wrap: anywhere;
}


.dslf-card-title a {
    color: inherit;
    text-decoration: none !important;
}

.dslf-card-company {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.dslf-card-details {
    display: grid;
    gap: 9px;
    margin-top: 2px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.dslf-card-details a {
    text-decoration: none;
    transition: color .2s ease;
}

.dslf-card-address {
    display: grid;
    gap: 2px;
}

.dslf-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 22px;
    padding: 12px 18px;
    color: #ffffff;
    background: #102a83;
    border-radius: 4px;
    text-align: center;
    text-decoration: none !important;
    font-weight: 700;
    line-height: 1.2;
    transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.dslf-card-button:hover,
.dslf-card-button:focus {
    color: #ffffff;
    background: #c90000;
    transform: translateY(-1px);
}

.dslf-no-results {
    width: 100%;
    padding: 22px 24px;
    border: 1px solid #e2e6ee;
    border-radius: 10px;
    background: #f7f9fc;
    text-align: center;
}

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

@media (max-width: 767px) {
    .dslf-search-form {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .dslf-search-input-wrap {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }

    .dslf-search-submit,
    .dslf-search-clear {
        flex: 0 0 auto;
        width: auto;
        padding-right: 18px;
        padding-left: 18px;
    }

    .dslf-cards-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .dslf-location-card {
        min-height: 0 !important;
    }
}

/* Dynamic Google Maps widget */
.dslf-map-widget,
.dslf-map-widget * {
    box-sizing: border-box;
}

.dslf-map-widget {
    width: 100%;
}

.dslf-map-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eef1f5;
    border-radius: 10px;
}

.dslf-map-frame {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.dslf-map-open-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: #102a83;
    text-decoration: none !important;
    font-weight: 700;
    transition: color .2s ease;
}

.dslf-map-open-link:hover,
.dslf-map-open-link:focus {
    color: #c90000;
}

@media (max-width: 1024px) {
    .dslf-map-frame {
        height: 330px;
    }
}

@media (max-width: 767px) {
    .dslf-map-frame {
        height: 300px;
    }
}
