.cl-widget-container-3876d3bc {
    font-family: sans-serif;
}
.cl-map-section {
    padding: 4rem 0;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}
.cl-map-wrapper, .cl-cards-section > div {
    max-width: 92%;
    margin: 0 auto;
    padding: 0 1rem;
}
.cl-map-box {
    width: 100%;
    height: 400px;
    position: relative;
    background-color: #1e293b;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #334155;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media (min-width: 768px) {
    .cl-map-box { height: 600px; }
}
.cl-map-graphic-text {
    color: #475569;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: absolute;
}
.cl-map-pin-group {
    position: absolute;
    cursor: pointer;
}
.cl-pin-indicator {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    position: relative;
}
.cl-pin-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background-color: #f87171;
    opacity: 0.75;
    animation: cl-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.cl-pin-dot {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 1.5rem;
    width: 1.5rem;
    background-color: #dc2626;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
@keyframes cl-ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
.cl-pin-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.75rem;
    width: 10rem;
    background-color: #fff;
    color: #000;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    z-index: 10;
    border: 1px solid #e5e7eb;
}
.cl-map-pin-group:hover .cl-pin-tooltip {
    opacity: 1;
}
.cl-pin-subtitle {
    font-size: 0.75rem;
    color: #dc2626;
}
.cl-cards-section {
    padding: 6rem 0;
    background-color: #fff;
}
.cl-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 92%;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .cl-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
.cl-card {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.cl-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.cl-card-image-box {
    height: 16rem;
    background-color: #e5e7eb;
    position: relative;
    overflow: hidden;
}
.cl-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.cl-card:hover .cl-card-img {
    transform: scale(1.05);
}
.cl-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #dc2626;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.125rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.cl-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.cl-card-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.cl-card-divider {
    height: 0.25rem;
    width: 3rem;
    background-color: #dc2626;
    margin-bottom: 1.5rem;
}
.cl-card-body {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.cl-card-address1 {
    color: #111827;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}
.cl-card-address2 {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 0;
}
.cl-card-desc {
    color: #374151;
    line-height: 1.625;
}
.cl-card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 640px) {
    .cl-card-footer { flex-direction: row; }
}
.cl-card-stat {
    color: #dc2626;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
@media (min-width: 640px) {
    .cl-card-stat { margin-bottom: 0; }
}
.cl-card-btn {
    background-color: #111827;
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-align: center;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.2s;
}
@media (min-width: 640px) {
    .cl-card-btn { width: auto; }
}
.cl-card-btn:hover {
    background-color: #dc2626;
}