@layer components {
.psw-address {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
    border-radius: var(--radius-lg);
}

.psw-address__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
    word-break: break-word;
}

.psw-address__content > h3 {
    margin: 0;
    color: var(--color-content-high);
    font-family: var(--font-sans);
    font-size: var(--text-label-md);
    font-weight: var(--font-weight-bold);
    line-height: var(--text-label-md--line-height);
    letter-spacing: 0;
}

.psw-address__content > p {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--color-content-medium);
    font-family: var(--font-sans);
    font-size: var(--text-paragraph-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--text-paragraph-md--line-height);
    letter-spacing: 0;
}

.psw-address__line {
    display: block;
}

.psw-address__map-link {
    display: block;
    width: 100%;
    height: 108px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-subtle);
}

.psw-address__map {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 769px) {
    .psw-address {
        gap: var(--space-6);
    }

    .psw-address__content > p {
        display: block;
    }

    .psw-address__line {
        display: inline;
    }

    .psw-address__line:not(:last-child)::after {
        content: ", ";
    }

    .psw-address__map-link {
        height: 160px;
    }
}
}
