.card-location {
    border-radius: 8px;
    overflow: hidden!important;
    border: 8px solid transparent;
    outline: 1px solid #43B0FF;
    transition: transform 0.25s ease;
    transform-origin: center center;
    color: var(--color-black);
}
.card-location:hover {
  transform: rotate(-3deg);
  cursor: pointer;
  color: var(--color-black);
  outline: 1px solid #43B0FF!important;
}
.card-location > .card-location-content {
    position: absolute !important;
    bottom: 0;
    left: 0;
    padding: 0.75rem !important;
    gap: 4px !important;
    max-width: 336px;
    border-bottom-left-radius: 8px;
    width: calc(100% - 32px);
}
.location-table > div {
    display: flex;
}
.location-table > div > div {
    flex-shrink: 0;
}
.card-location > .card-location-content p {
    font-size: 1rem!important;
    line-height: 130%;
}
.location-table {
    width: 100%;
}
.card-location-content::after {
    content: "";
    width: 24px;
    height: calc(100% + 1px);
    position: absolute;
    top: 0;
    right: -20px;
    background: url('/wp-content/themes/astra-child/images/svg/card-location-content-bg.svg') no-repeat top right / cover;
}
.card-location > .card-location-image {
    border-radius: 8px;
    overflow: hidden;
}
.card-location-content > p.card-location-content-headline {
    background: url('/wp-content/themes/astra-child/images/svg/marker-orange.svg') no-repeat bottom left;
    padding: 0 2px 2px 2px;
    background-size: 100% auto;
    font-size: 1.125rem!important;
    line-height: 1.2em!important;
    font-family: 'Days One', sans-serif!important;
    color: #6e695a!important;
}
.card-location-image::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url('/wp-content/themes/astra-child/images/svg/card-location-overlay.svg') no-repeat center center;
    background-size: 80% auto;
    position: absolute;
    mix-blend-mode: multiply;
    opacity: 0;
}
.card-location:hover {
  transform: rotate(-3deg);
  cursor: pointer;
}
.card-location:hover .card-location-content-headline {
  background: url('/wp-content/themes/astra-child/images/svg/marker-green.svg') no-repeat bottom left;
  background-size: 100% auto;
}
.card-location:hover .card-location-image::before {
  opacity: 1;
}
@media (min-width: 550px) {
    .card-location > .card-location-content {
        padding: 1rem !important;
    }
}