/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 06 2026 | 05:29:03 */
/* ==========================================================================
   SMCC FOOTER / CONTACT LOCATION SECTION
   Color System: Premium Bright Gold & High-Contrast Jet Black
   ========================================================================== */

.smcc-location-section {
  padding: 5rem 0;
  background-color: #ffffff; /* Pure white base */
  border-top: 1px solid #e5e7eb;
}

.location-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .location-split-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

/* Left Column Styling */
.location-editorial-info {
  max-width: 480px;
}

.location-meta-tag {
  display: inline-block;
  color: #e6b326; /* Bright Gold */
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.location-coop-name {
  font-size: 2rem;
  font-weight: 900;
  color: #111111; /* Sharp Jet Black */
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.location-address-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background-color: #f9fafb; /* Soft slate isolation gray */
  padding: 1.75rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.3s ease;
}

.location-address-card:hover {
  border-color: #e6b326; /* Glow border on hover */
}

.location-icon-pin {
  color: #e6b326; /* Bright Gold pin */
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.location-address-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #111111; /* Jet Black copy */
  margin: 0;
  font-weight: 500;
}

/* Right Column: Responsive Map Frame */
.map-frame-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding-bottom: 56.25%; /* Responsive 16:9 aspect ratio */
  height: 0;
  transition: border-color 0.3s ease;
}

.map-frame-container:hover {
  border-color: #e6b326;
}

.map-frame-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}