/* Location & Hours Widget — Figma node 291:1089 */

.lh-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

/* Breadcrumb */
.lh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.875rem;
  line-height: 20px;
  color: #45556c;
}

.lh-breadcrumb a {
  color: #45556c;
  text-decoration: none;
}

.lh-breadcrumb a:hover {
  text-decoration: underline;
}

.lh-breadcrumb-current {
  color: var(--foreground, #0f172b);
  font-weight: 500;
}

/* Page header */
.lh-header {
  padding-bottom: 24px;
}

.lh-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground, #0f172b);
  margin: 0 0 8px;
}

.lh-header p {
  font-size: 1.125rem;
  line-height: 1.55;
  color: #45556c;
  margin: 0;
}

/* Main content — two columns */
.lh-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1025px) {
  .lh-content {
    flex-direction: row;
    gap: 24px;
  }
}

/* Map card */
.lh-map-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media (min-width: 1025px) {
  .lh-map-card {
    flex: 1 1 0;
    min-width: 0;
  }
}

.lh-map-frame {
  width: 100%;
  height: 350px;
}

@media (min-width: 769px) {
  .lh-map-frame {
    height: 450px;
  }
}

@media (min-width: 1025px) {
  .lh-map-frame {
    height: 100%;
    min-height: 500px;
  }
}

.lh-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Map overlay card */
.lh-map-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}

.lh-map-overlay-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lh-map-overlay-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172b;
  margin: 0 0 6px;
  line-height: 1.4;
}

.lh-map-overlay-addr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #45556c;
  line-height: 20px;
}

.lh-map-overlay-addr svg {
  flex-shrink: 0;
}

.lh-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
  color: #0a0a0a;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.lh-directions-btn:hover {
  background: #f8fafc;
}

/* Info cards column */
.lh-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lh-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lh-info-cards .lh-card-light {
    flex: 1 1 calc(50% - 12px);
  }

  .lh-info-cards .lh-card-hours {
    flex: 1 1 100%;
  }
}

@media (min-width: 1025px) {
  .lh-info-cards {
    width: 390px;
    flex-shrink: 0;
  }
}

/* Cards — shared */
.lh-card {
  border-radius: 14px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lh-card-light {
  background: #fff;
  padding: 24px;
}

.lh-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.lh-card-head h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.lh-card-light .lh-card-head h3 {
  color: #0f172b;
}

.lh-card-sub {
  font-size: 0.875rem;
  color: #45556c;
  margin: 0;
  line-height: 20px;
}

/* Icon circles */
.lh-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lh-icon-blue {
  background: #dbeafe;
}

.lh-icon-green {
  background: #dcfce7;
}

.lh-icon-glass {
  background: rgba(255, 255, 255, 0.1);
}

/* Card body */
.lh-card-body p {
  font-size: 1rem;
  line-height: 1.625;
  color: #314158;
  margin: 0;
}

.lh-phone-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--accent, #155dfc);
  text-decoration: none;
}

.lh-phone-link:hover {
  text-decoration: underline;
}

.lh-phone-extra {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 1rem;
  color: #314158;
}

.lh-phone-label {
  font-weight: 600;
  color: #0f172b;
}

/* Hours card — dark theme */
.lh-card-hours {
  background: linear-gradient(122deg, #0f172b 0%, #1d293d 100%);
  padding: 24px;
}

.lh-card-hours .lh-card-head h3 {
  color: #fff;
}

.lh-card-hours .lh-card-sub {
  color: #cad5e2;
}

.lh-hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lh-hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lh-hour-row:last-child {
  border-bottom: none;
}

.lh-hour-day {
  font-size: 1rem;
  font-weight: 500;
  color: #cad5e2;
}

.lh-hour-time {
  font-size: 0.875rem;
  color: #90a1b9;
}

.lh-closed {
  color: #ffa2a2;
  font-weight: 500;
}

/* Today highlight */
.lh-today {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
  margin: 0 -12px;
  border-bottom-color: transparent;
}

.lh-today .lh-hour-day {
  color: #fff;
}

.lh-today .lh-hour-time {
  color: #7bf1a8;
  font-weight: 500;
}


/* CTA card grid */
.lh-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 560px) {
  .lh-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .lh-cta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lh-cta {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 24px;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lh-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.lh-cta-blue {
  background: #7A99A5;
}

.lh-cta-blue p { color: rgba(255, 255, 255, 0.85); }

.lh-cta-teal {
  background: #192B3B;
}

.lh-cta-teal p { color: rgba(255, 255, 255, 0.7); }

.lh-cta-dark {
  background: #006883;
}

.lh-cta-dark p { color: rgba(255, 255, 255, 0.85); }

.lh-cta-darker {
  background: #8BA7C7;
}

.lh-cta-darker p { color: rgba(255, 255, 255, 0.85); }

/* Decorative circle */
.lh-cta-circle {
  position: absolute;
  top: -64px;
  right: -16px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.lh-cta-icon {
  margin-bottom: 16px;
  position: relative;
}

.lh-cta h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.55;
  position: relative;
}

.lh-cta p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 20px;
  position: relative;
}
