.ncm-wrapper {
  display: grid;
  gap: 5rem;
  grid-template-columns: 1fr 3fr;
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .ncm-wrapper {
    grid-template-columns: 1fr;
  }
}

.ncm-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.ncm-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.ncm-form input[type=text] {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
}
.ncm-form input[type=text]:focus {
  border-color: #008e8c;
  box-shadow: 0 0 0 3px rgba(0, 142, 140, 0.1);
}
.ncm-form input[type=submit] {
  background-color: #008e8c;
  color: #fff;
  border: none;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.ncm-form input[type=submit]:hover {
  background-color: rgb(0, 91, 89.7183098592);
}

.club {
  background-color: #f9f9f9;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.club:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}
.club:not(:last-child) {
  margin-bottom: 1rem;
}
.club h4 {
  margin-top: 0;
  margin-bottom: 0 !important;
  color: #2c3e50;
}
.club p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #777;
}
.club p strong {
  color: #2c3e50;
}

.ncm-content #nearest-club-map {
  width: 100%;
  height: 600px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .ncm-content #nearest-club-map {
    height: 400px;
  }
}

/*# sourceMappingURL=fmc_styles.css.map */
