/* =========================================================
   EDITOR LOCATION
========================================================= */

.editor-block-icon.location {
    background: #fff4e8;
}

.location-preview-card {
    margin-top: 7px;
    padding: 8px;

    display: flex;
    align-items: flex-start;
    gap: 7px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.location-preview-icon {
    width: 26px;
    height: 26px;

    flex: none;

    display: grid;
    place-items: center;

    color: #ea580c;
    background: #fff4e8;

    border-radius: 7px;

    font-size: 12px;
}

.location-preview-copy {
    min-width: 0;
}

.location-preview-copy strong {
    display: block;

    color: #0f172a;

    font-size: 7px;
}

.location-preview-copy span {
    display: block;

    margin-top: 2px;

    color: #64748b;

    font-size: 6px;
    line-height: 1.4;
}


/* =========================================================
   PUBLIC LOCATION
========================================================= */

.public-location-section {
    margin-top: 23px;

    text-align: left;
}

.public-location-heading {
    margin-bottom: 11px;
}

.public-location-heading h2 {
    margin: 0;

    color: #0f172a;

    font-size: 15px;
    letter-spacing: -.02em;
}

.public-location-heading p {
    margin: 5px 0 0;

    color: #64748b;

    font-size: 10px;
    line-height: 1.55;
}

.public-location-card {
    padding: 15px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffaf5
        );

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    box-shadow:
        0 8px 22px
        rgba(15, 23, 42, .045);
}

.public-location-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.public-location-icon {
    width: 43px;
    height: 43px;

    flex: none;

    display: grid;
    place-items: center;

    color: #ea580c;
    background: #fff4e8;

    border-radius: 12px;

    font-size: 20px;
}

.public-location-copy {
    min-width: 0;
}

.public-location-copy strong {
    display: block;

    color: #0f172a;

    font-size: 11px;
}

.public-location-address {
    margin-top: 5px;

    color: #64748b;

    font-size: 10px;
    line-height: 1.55;

    white-space: pre-line;
}

.public-location-button {
    width: 100%;
    min-height: 46px;

    margin-top: 14px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f97316,
            #ea580c
        );

    border-radius: 11px;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;

    box-shadow:
        0 7px 16px
        rgba(234, 88, 12, .14);
}