@charset "UTF-8";
.local-business-search-container {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #eee;
}
.local-business-search-container .local-business-search-form .search-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .local-business-search-container .local-business-search-form .search-fields-grid {
    grid-template-columns: 1fr;
  }
}
.local-business-search-container .local-business-search-form .search-fields-grid .field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.local-business-search-container .local-business-search-form .search-fields-grid .field-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}
.local-business-search-container .local-business-search-form .search-fields-grid .field-group label.hidden-label {
  visibility: hidden;
}
@media (max-width: 768px) {
  .local-business-search-container .local-business-search-form .search-fields-grid .field-group label.hidden-label {
    display: none;
  }
}
.local-business-search-container .local-business-search-form .search-fields-grid .field-group input, .local-business-search-container .local-business-search-form .search-fields-grid .field-group select {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.local-business-search-container .local-business-search-form .search-fields-grid .field-group input:focus, .local-business-search-container .local-business-search-form .search-fields-grid .field-group select:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary, #007cba);
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}
.local-business-search-container .local-business-search-form .search-fields-grid .field-group button.lb-search-submit {
  padding: 0.8rem 1.5rem;
  background: var(--wp--preset--color--primary, #007cba);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: filter 0.3s;
}
.local-business-search-container .local-business-search-form .search-fields-grid .field-group button.lb-search-submit:hover {
  filter: brightness(1.1);
}

.local-businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.local-businesses-grid .local-business-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.local-businesses-grid .local-business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.local-businesses-grid .local-business-card .card-image {
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
  text-decoration: none;
}
.local-businesses-grid .local-business-card .card-image a {
  text-decoration: none;
}
.local-businesses-grid .local-business-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.local-businesses-grid .local-business-card .card-image .placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.local-businesses-grid .local-business-card .card-image .placeholder-image .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  text-decoration: none;
}
.local-businesses-grid .local-business-card:hover .card-image img {
  transform: scale(1.05);
}
.local-businesses-grid .local-business-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.local-businesses-grid .local-business-card .card-content .card-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  line-height: 1.4;
}
.local-businesses-grid .local-business-card .card-content .card-title a {
  text-decoration: none;
  color: inherit;
}
.local-businesses-grid .local-business-card .card-content .card-title a:hover {
  color: var(--wp--preset--color--primary, #007cba);
}
.local-businesses-grid .local-business-card .card-content .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}
.local-businesses-grid .local-business-card .card-content .card-meta .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: text-bottom;
}
.local-businesses-grid .local-business-card .card-content .card-focus-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.local-businesses-grid .local-business-card .card-content .card-focus-areas .tag {
  background: #f0f0f0;
  color: #666;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.local-businesses-grid .local-business-card .card-content .card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.local-businesses-grid .local-business-card .card-content .card-footer {
  margin-top: auto;
}
.local-businesses-grid .local-business-card .card-content .card-footer .read-more {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--wp--preset--color--primary, #007cba);
}
.local-businesses-grid .local-business-card .card-content .card-footer .read-more:after {
  content: " →";
  transition: margin-left 0.3s;
}
.local-businesses-grid .local-business-card .card-content .card-footer .read-more:hover:after {
  margin-left: 5px;
}

.nexhub-local-business-form,
.nexhub-registration-form,
.nexhub-login-form,
.nexhub-publishing-form,
.nexhub-post-preview-container,
.nexhub-type-of-publishing-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}
.nexhub-local-business-form h2,
.nexhub-registration-form h2,
.nexhub-login-form h2,
.nexhub-publishing-form h2,
.nexhub-post-preview-container h2,
.nexhub-type-of-publishing-form h2 {
  margin-bottom: 2rem;
  text-align: center;
}
.nexhub-local-business-form h3,
.nexhub-registration-form h3,
.nexhub-login-form h3,
.nexhub-publishing-form h3,
.nexhub-post-preview-container h3,
.nexhub-type-of-publishing-form h3 {
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
}
.nexhub-local-business-form .input-container,
.nexhub-registration-form .input-container,
.nexhub-login-form .input-container,
.nexhub-publishing-form .input-container,
.nexhub-post-preview-container .input-container,
.nexhub-type-of-publishing-form .input-container {
  margin-bottom: 1.5rem;
}
.nexhub-local-business-form .input-container label,
.nexhub-registration-form .input-container label,
.nexhub-login-form .input-container label,
.nexhub-publishing-form .input-container label,
.nexhub-post-preview-container .input-container label,
.nexhub-type-of-publishing-form .input-container label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.nexhub-local-business-form .input-container input[type=text],
.nexhub-local-business-form .input-container input[type=email],
.nexhub-local-business-form .input-container input[type=password],
.nexhub-local-business-form .input-container input[type=url],
.nexhub-local-business-form .input-container input[type=file],
.nexhub-local-business-form .input-container select,
.nexhub-local-business-form .input-container textarea,
.nexhub-registration-form .input-container input[type=text],
.nexhub-registration-form .input-container input[type=email],
.nexhub-registration-form .input-container input[type=password],
.nexhub-registration-form .input-container input[type=url],
.nexhub-registration-form .input-container input[type=file],
.nexhub-registration-form .input-container select,
.nexhub-registration-form .input-container textarea,
.nexhub-login-form .input-container input[type=text],
.nexhub-login-form .input-container input[type=email],
.nexhub-login-form .input-container input[type=password],
.nexhub-login-form .input-container input[type=url],
.nexhub-login-form .input-container input[type=file],
.nexhub-login-form .input-container select,
.nexhub-login-form .input-container textarea,
.nexhub-publishing-form .input-container input[type=text],
.nexhub-publishing-form .input-container input[type=email],
.nexhub-publishing-form .input-container input[type=password],
.nexhub-publishing-form .input-container input[type=url],
.nexhub-publishing-form .input-container input[type=file],
.nexhub-publishing-form .input-container select,
.nexhub-publishing-form .input-container textarea,
.nexhub-post-preview-container .input-container input[type=text],
.nexhub-post-preview-container .input-container input[type=email],
.nexhub-post-preview-container .input-container input[type=password],
.nexhub-post-preview-container .input-container input[type=url],
.nexhub-post-preview-container .input-container input[type=file],
.nexhub-post-preview-container .input-container select,
.nexhub-post-preview-container .input-container textarea,
.nexhub-type-of-publishing-form .input-container input[type=text],
.nexhub-type-of-publishing-form .input-container input[type=email],
.nexhub-type-of-publishing-form .input-container input[type=password],
.nexhub-type-of-publishing-form .input-container input[type=url],
.nexhub-type-of-publishing-form .input-container input[type=file],
.nexhub-type-of-publishing-form .input-container select,
.nexhub-type-of-publishing-form .input-container textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1rem;
}
.nexhub-local-business-form .input-container.checkbox-container label,
.nexhub-registration-form .input-container.checkbox-container label,
.nexhub-login-form .input-container.checkbox-container label,
.nexhub-publishing-form .input-container.checkbox-container label,
.nexhub-post-preview-container .input-container.checkbox-container label,
.nexhub-type-of-publishing-form .input-container.checkbox-container label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  cursor: pointer;
}
.nexhub-local-business-form .input-container.checkbox-container label input[type=checkbox],
.nexhub-registration-form .input-container.checkbox-container label input[type=checkbox],
.nexhub-login-form .input-container.checkbox-container label input[type=checkbox],
.nexhub-publishing-form .input-container.checkbox-container label input[type=checkbox],
.nexhub-post-preview-container .input-container.checkbox-container label input[type=checkbox],
.nexhub-type-of-publishing-form .input-container.checkbox-container label input[type=checkbox] {
  margin-top: 0.2rem;
  width: auto;
}
.nexhub-local-business-form .input-container .preview-image img,
.nexhub-registration-form .input-container .preview-image img,
.nexhub-login-form .input-container .preview-image img,
.nexhub-publishing-form .input-container .preview-image img,
.nexhub-post-preview-container .input-container .preview-image img,
.nexhub-type-of-publishing-form .input-container .preview-image img {
  max-width: 150px;
  height: auto;
  border-radius: 4px;
  border: 1px solid #eee;
}
.nexhub-local-business-form .lb-focus-areas-container,
.nexhub-registration-form .lb-focus-areas-container,
.nexhub-login-form .lb-focus-areas-container,
.nexhub-publishing-form .lb-focus-areas-container,
.nexhub-post-preview-container .lb-focus-areas-container,
.nexhub-type-of-publishing-form .lb-focus-areas-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  min-height: 45px;
  align-items: center;
  cursor: text;
}
.nexhub-local-business-form .lb-focus-areas-container:focus-within,
.nexhub-registration-form .lb-focus-areas-container:focus-within,
.nexhub-login-form .lb-focus-areas-container:focus-within,
.nexhub-publishing-form .lb-focus-areas-container:focus-within,
.nexhub-post-preview-container .lb-focus-areas-container:focus-within,
.nexhub-type-of-publishing-form .lb-focus-areas-container:focus-within {
  border-color: var(--wp--preset--color--primary, #007cba);
  box-shadow: 0 0 0 1px var(--wp--preset--color--primary, #007cba);
}
.nexhub-local-business-form .lb-focus-areas-container .lb-focus-areas-list,
.nexhub-registration-form .lb-focus-areas-container .lb-focus-areas-list,
.nexhub-login-form .lb-focus-areas-container .lb-focus-areas-list,
.nexhub-publishing-form .lb-focus-areas-container .lb-focus-areas-list,
.nexhub-post-preview-container .lb-focus-areas-container .lb-focus-areas-list,
.nexhub-type-of-publishing-form .lb-focus-areas-container .lb-focus-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nexhub-local-business-form .lb-focus-areas-container .lb-focus-area,
.nexhub-registration-form .lb-focus-areas-container .lb-focus-area,
.nexhub-login-form .lb-focus-areas-container .lb-focus-area,
.nexhub-publishing-form .lb-focus-areas-container .lb-focus-area,
.nexhub-post-preview-container .lb-focus-areas-container .lb-focus-area,
.nexhub-type-of-publishing-form .lb-focus-areas-container .lb-focus-area {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #444;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #343090;
}
.nexhub-local-business-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove,
.nexhub-registration-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove,
.nexhub-login-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove,
.nexhub-publishing-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove,
.nexhub-post-preview-container .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove,
.nexhub-type-of-publishing-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove {
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: #999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.nexhub-local-business-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove:hover,
.nexhub-registration-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove:hover,
.nexhub-login-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove:hover,
.nexhub-publishing-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove:hover,
.nexhub-post-preview-container .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove:hover,
.nexhub-type-of-publishing-form .lb-focus-areas-container .lb-focus-area .lb-focus-area-remove:hover {
  background: #343090;
  color: #ffffff;
}
.nexhub-local-business-form .lb-focus-areas-container .lb-focus-area-input-field,
.nexhub-registration-form .lb-focus-areas-container .lb-focus-area-input-field,
.nexhub-login-form .lb-focus-areas-container .lb-focus-area-input-field,
.nexhub-publishing-form .lb-focus-areas-container .lb-focus-area-input-field,
.nexhub-post-preview-container .lb-focus-areas-container .lb-focus-area-input-field,
.nexhub-type-of-publishing-form .lb-focus-areas-container .lb-focus-area-input-field {
  border: none !important;
  padding: 0.3rem !important;
  margin: 0 !important;
  flex-grow: 1;
  min-width: 120px;
  font-size: 0.95rem !important;
  outline: none !important;
  box-shadow: none !important;
  height: auto !important;
}
.nexhub-local-business-form .button,
.nexhub-registration-form .button,
.nexhub-login-form .button,
.nexhub-publishing-form .button,
.nexhub-post-preview-container .button,
.nexhub-type-of-publishing-form .button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--wp--preset--color--primary, #007cba);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.3s;
  text-align: center;
  text-decoration: none;
}
.nexhub-local-business-form .button:hover,
.nexhub-registration-form .button:hover,
.nexhub-login-form .button:hover,
.nexhub-publishing-form .button:hover,
.nexhub-post-preview-container .button:hover,
.nexhub-type-of-publishing-form .button:hover {
  filter: brightness(1.1);
}
.nexhub-local-business-form .button.button-secondary,
.nexhub-registration-form .button.button-secondary,
.nexhub-login-form .button.button-secondary,
.nexhub-publishing-form .button.button-secondary,
.nexhub-post-preview-container .button.button-secondary,
.nexhub-type-of-publishing-form .button.button-secondary {
  background: #f0f0f0;
  color: #444;
  margin-top: 1rem;
}
.nexhub-local-business-form .links,
.nexhub-registration-form .links,
.nexhub-login-form .links,
.nexhub-publishing-form .links,
.nexhub-post-preview-container .links,
.nexhub-type-of-publishing-form .links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.nexhub-local-business-form .links a,
.nexhub-registration-form .links a,
.nexhub-login-form .links a,
.nexhub-publishing-form .links a,
.nexhub-post-preview-container .links a,
.nexhub-type-of-publishing-form .links a {
  color: var(--wp--preset--color--primary, #007cba);
  text-decoration: none;
}
.nexhub-local-business-form .links a:hover,
.nexhub-registration-form .links a:hover,
.nexhub-login-form .links a:hover,
.nexhub-publishing-form .links a:hover,
.nexhub-post-preview-container .links a:hover,
.nexhub-type-of-publishing-form .links a:hover {
  text-decoration: underline;
}
.nexhub-local-business-form .post-preview-table,
.nexhub-registration-form .post-preview-table,
.nexhub-login-form .post-preview-table,
.nexhub-publishing-form .post-preview-table,
.nexhub-post-preview-container .post-preview-table,
.nexhub-type-of-publishing-form .post-preview-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.nexhub-local-business-form .post-preview-table th, .nexhub-local-business-form .post-preview-table td,
.nexhub-registration-form .post-preview-table th,
.nexhub-registration-form .post-preview-table td,
.nexhub-login-form .post-preview-table th,
.nexhub-login-form .post-preview-table td,
.nexhub-publishing-form .post-preview-table th,
.nexhub-publishing-form .post-preview-table td,
.nexhub-post-preview-container .post-preview-table th,
.nexhub-post-preview-container .post-preview-table td,
.nexhub-type-of-publishing-form .post-preview-table th,
.nexhub-type-of-publishing-form .post-preview-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}
.nexhub-local-business-form .post-preview-table th,
.nexhub-registration-form .post-preview-table th,
.nexhub-login-form .post-preview-table th,
.nexhub-publishing-form .post-preview-table th,
.nexhub-post-preview-container .post-preview-table th,
.nexhub-type-of-publishing-form .post-preview-table th {
  width: 30%;
  font-weight: 600;
  background: #f9f9f9;
}
.nexhub-local-business-form .post-preview-table img,
.nexhub-registration-form .post-preview-table img,
.nexhub-login-form .post-preview-table img,
.nexhub-publishing-form .post-preview-table img,
.nexhub-post-preview-container .post-preview-table img,
.nexhub-type-of-publishing-form .post-preview-table img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}
.nexhub-local-business-form .buttons,
.nexhub-registration-form .buttons,
.nexhub-login-form .buttons,
.nexhub-publishing-form .buttons,
.nexhub-post-preview-container .buttons,
.nexhub-type-of-publishing-form .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .nexhub-local-business-form .buttons,
.nexhub-registration-form .buttons,
.nexhub-login-form .buttons,
.nexhub-publishing-form .buttons,
.nexhub-post-preview-container .buttons,
.nexhub-type-of-publishing-form .buttons {
    grid-template-columns: 1fr;
  }
}
.nexhub-local-business-form .type-of-publishing-grid,
.nexhub-local-business-form .premium-products-grid,
.nexhub-local-business-form .publishing-sites-grid,
.nexhub-registration-form .type-of-publishing-grid,
.nexhub-registration-form .premium-products-grid,
.nexhub-registration-form .publishing-sites-grid,
.nexhub-login-form .type-of-publishing-grid,
.nexhub-login-form .premium-products-grid,
.nexhub-login-form .publishing-sites-grid,
.nexhub-publishing-form .type-of-publishing-grid,
.nexhub-publishing-form .premium-products-grid,
.nexhub-publishing-form .publishing-sites-grid,
.nexhub-post-preview-container .type-of-publishing-grid,
.nexhub-post-preview-container .premium-products-grid,
.nexhub-post-preview-container .publishing-sites-grid,
.nexhub-type-of-publishing-form .type-of-publishing-grid,
.nexhub-type-of-publishing-form .premium-products-grid,
.nexhub-type-of-publishing-form .publishing-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.nexhub-local-business-form .publishing-type-item label,
.nexhub-local-business-form .premium-product-item label,
.nexhub-local-business-form .publishing-site-item label,
.nexhub-registration-form .publishing-type-item label,
.nexhub-registration-form .premium-product-item label,
.nexhub-registration-form .publishing-site-item label,
.nexhub-login-form .publishing-type-item label,
.nexhub-login-form .premium-product-item label,
.nexhub-login-form .publishing-site-item label,
.nexhub-publishing-form .publishing-type-item label,
.nexhub-publishing-form .premium-product-item label,
.nexhub-publishing-form .publishing-site-item label,
.nexhub-post-preview-container .publishing-type-item label,
.nexhub-post-preview-container .premium-product-item label,
.nexhub-post-preview-container .publishing-site-item label,
.nexhub-type-of-publishing-form .publishing-type-item label,
.nexhub-type-of-publishing-form .premium-product-item label,
.nexhub-type-of-publishing-form .publishing-site-item label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  height: 100%;
  box-sizing: border-box;
}
.nexhub-local-business-form .publishing-type-item label:hover,
.nexhub-local-business-form .premium-product-item label:hover,
.nexhub-local-business-form .publishing-site-item label:hover,
.nexhub-registration-form .publishing-type-item label:hover,
.nexhub-registration-form .premium-product-item label:hover,
.nexhub-registration-form .publishing-site-item label:hover,
.nexhub-login-form .publishing-type-item label:hover,
.nexhub-login-form .premium-product-item label:hover,
.nexhub-login-form .publishing-site-item label:hover,
.nexhub-publishing-form .publishing-type-item label:hover,
.nexhub-publishing-form .premium-product-item label:hover,
.nexhub-publishing-form .publishing-site-item label:hover,
.nexhub-post-preview-container .publishing-type-item label:hover,
.nexhub-post-preview-container .premium-product-item label:hover,
.nexhub-post-preview-container .publishing-site-item label:hover,
.nexhub-type-of-publishing-form .publishing-type-item label:hover,
.nexhub-type-of-publishing-form .premium-product-item label:hover,
.nexhub-type-of-publishing-form .publishing-site-item label:hover {
  border-color: var(--wp--preset--color--primary, #007cba);
  background: #f0f8ff;
}
.nexhub-local-business-form .publishing-type-item label input[type=radio],
.nexhub-local-business-form .publishing-type-item label input[type=checkbox],
.nexhub-local-business-form .premium-product-item label input[type=radio],
.nexhub-local-business-form .premium-product-item label input[type=checkbox],
.nexhub-local-business-form .publishing-site-item label input[type=radio],
.nexhub-local-business-form .publishing-site-item label input[type=checkbox],
.nexhub-registration-form .publishing-type-item label input[type=radio],
.nexhub-registration-form .publishing-type-item label input[type=checkbox],
.nexhub-registration-form .premium-product-item label input[type=radio],
.nexhub-registration-form .premium-product-item label input[type=checkbox],
.nexhub-registration-form .publishing-site-item label input[type=radio],
.nexhub-registration-form .publishing-site-item label input[type=checkbox],
.nexhub-login-form .publishing-type-item label input[type=radio],
.nexhub-login-form .publishing-type-item label input[type=checkbox],
.nexhub-login-form .premium-product-item label input[type=radio],
.nexhub-login-form .premium-product-item label input[type=checkbox],
.nexhub-login-form .publishing-site-item label input[type=radio],
.nexhub-login-form .publishing-site-item label input[type=checkbox],
.nexhub-publishing-form .publishing-type-item label input[type=radio],
.nexhub-publishing-form .publishing-type-item label input[type=checkbox],
.nexhub-publishing-form .premium-product-item label input[type=radio],
.nexhub-publishing-form .premium-product-item label input[type=checkbox],
.nexhub-publishing-form .publishing-site-item label input[type=radio],
.nexhub-publishing-form .publishing-site-item label input[type=checkbox],
.nexhub-post-preview-container .publishing-type-item label input[type=radio],
.nexhub-post-preview-container .publishing-type-item label input[type=checkbox],
.nexhub-post-preview-container .premium-product-item label input[type=radio],
.nexhub-post-preview-container .premium-product-item label input[type=checkbox],
.nexhub-post-preview-container .publishing-site-item label input[type=radio],
.nexhub-post-preview-container .publishing-site-item label input[type=checkbox],
.nexhub-type-of-publishing-form .publishing-type-item label input[type=radio],
.nexhub-type-of-publishing-form .publishing-type-item label input[type=checkbox],
.nexhub-type-of-publishing-form .premium-product-item label input[type=radio],
.nexhub-type-of-publishing-form .premium-product-item label input[type=checkbox],
.nexhub-type-of-publishing-form .publishing-site-item label input[type=radio],
.nexhub-type-of-publishing-form .publishing-site-item label input[type=checkbox] {
  margin: 0;
}
.nexhub-local-business-form .publishing-type-item .type-content,
.nexhub-local-business-form .publishing-type-item .product-content,
.nexhub-local-business-form .publishing-type-item .site-content,
.nexhub-local-business-form .premium-product-item .type-content,
.nexhub-local-business-form .premium-product-item .product-content,
.nexhub-local-business-form .premium-product-item .site-content,
.nexhub-local-business-form .publishing-site-item .type-content,
.nexhub-local-business-form .publishing-site-item .product-content,
.nexhub-local-business-form .publishing-site-item .site-content,
.nexhub-registration-form .publishing-type-item .type-content,
.nexhub-registration-form .publishing-type-item .product-content,
.nexhub-registration-form .publishing-type-item .site-content,
.nexhub-registration-form .premium-product-item .type-content,
.nexhub-registration-form .premium-product-item .product-content,
.nexhub-registration-form .premium-product-item .site-content,
.nexhub-registration-form .publishing-site-item .type-content,
.nexhub-registration-form .publishing-site-item .product-content,
.nexhub-registration-form .publishing-site-item .site-content,
.nexhub-login-form .publishing-type-item .type-content,
.nexhub-login-form .publishing-type-item .product-content,
.nexhub-login-form .publishing-type-item .site-content,
.nexhub-login-form .premium-product-item .type-content,
.nexhub-login-form .premium-product-item .product-content,
.nexhub-login-form .premium-product-item .site-content,
.nexhub-login-form .publishing-site-item .type-content,
.nexhub-login-form .publishing-site-item .product-content,
.nexhub-login-form .publishing-site-item .site-content,
.nexhub-publishing-form .publishing-type-item .type-content,
.nexhub-publishing-form .publishing-type-item .product-content,
.nexhub-publishing-form .publishing-type-item .site-content,
.nexhub-publishing-form .premium-product-item .type-content,
.nexhub-publishing-form .premium-product-item .product-content,
.nexhub-publishing-form .premium-product-item .site-content,
.nexhub-publishing-form .publishing-site-item .type-content,
.nexhub-publishing-form .publishing-site-item .product-content,
.nexhub-publishing-form .publishing-site-item .site-content,
.nexhub-post-preview-container .publishing-type-item .type-content,
.nexhub-post-preview-container .publishing-type-item .product-content,
.nexhub-post-preview-container .publishing-type-item .site-content,
.nexhub-post-preview-container .premium-product-item .type-content,
.nexhub-post-preview-container .premium-product-item .product-content,
.nexhub-post-preview-container .premium-product-item .site-content,
.nexhub-post-preview-container .publishing-site-item .type-content,
.nexhub-post-preview-container .publishing-site-item .product-content,
.nexhub-post-preview-container .publishing-site-item .site-content,
.nexhub-type-of-publishing-form .publishing-type-item .type-content,
.nexhub-type-of-publishing-form .publishing-type-item .product-content,
.nexhub-type-of-publishing-form .publishing-type-item .site-content,
.nexhub-type-of-publishing-form .premium-product-item .type-content,
.nexhub-type-of-publishing-form .premium-product-item .product-content,
.nexhub-type-of-publishing-form .premium-product-item .site-content,
.nexhub-type-of-publishing-form .publishing-site-item .type-content,
.nexhub-type-of-publishing-form .publishing-site-item .product-content,
.nexhub-type-of-publishing-form .publishing-site-item .site-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nexhub-local-business-form .publishing-type-item .type-content strong,
.nexhub-local-business-form .publishing-type-item .product-content strong,
.nexhub-local-business-form .publishing-type-item .site-content strong,
.nexhub-local-business-form .premium-product-item .type-content strong,
.nexhub-local-business-form .premium-product-item .product-content strong,
.nexhub-local-business-form .premium-product-item .site-content strong,
.nexhub-local-business-form .publishing-site-item .type-content strong,
.nexhub-local-business-form .publishing-site-item .product-content strong,
.nexhub-local-business-form .publishing-site-item .site-content strong,
.nexhub-registration-form .publishing-type-item .type-content strong,
.nexhub-registration-form .publishing-type-item .product-content strong,
.nexhub-registration-form .publishing-type-item .site-content strong,
.nexhub-registration-form .premium-product-item .type-content strong,
.nexhub-registration-form .premium-product-item .product-content strong,
.nexhub-registration-form .premium-product-item .site-content strong,
.nexhub-registration-form .publishing-site-item .type-content strong,
.nexhub-registration-form .publishing-site-item .product-content strong,
.nexhub-registration-form .publishing-site-item .site-content strong,
.nexhub-login-form .publishing-type-item .type-content strong,
.nexhub-login-form .publishing-type-item .product-content strong,
.nexhub-login-form .publishing-type-item .site-content strong,
.nexhub-login-form .premium-product-item .type-content strong,
.nexhub-login-form .premium-product-item .product-content strong,
.nexhub-login-form .premium-product-item .site-content strong,
.nexhub-login-form .publishing-site-item .type-content strong,
.nexhub-login-form .publishing-site-item .product-content strong,
.nexhub-login-form .publishing-site-item .site-content strong,
.nexhub-publishing-form .publishing-type-item .type-content strong,
.nexhub-publishing-form .publishing-type-item .product-content strong,
.nexhub-publishing-form .publishing-type-item .site-content strong,
.nexhub-publishing-form .premium-product-item .type-content strong,
.nexhub-publishing-form .premium-product-item .product-content strong,
.nexhub-publishing-form .premium-product-item .site-content strong,
.nexhub-publishing-form .publishing-site-item .type-content strong,
.nexhub-publishing-form .publishing-site-item .product-content strong,
.nexhub-publishing-form .publishing-site-item .site-content strong,
.nexhub-post-preview-container .publishing-type-item .type-content strong,
.nexhub-post-preview-container .publishing-type-item .product-content strong,
.nexhub-post-preview-container .publishing-type-item .site-content strong,
.nexhub-post-preview-container .premium-product-item .type-content strong,
.nexhub-post-preview-container .premium-product-item .product-content strong,
.nexhub-post-preview-container .premium-product-item .site-content strong,
.nexhub-post-preview-container .publishing-site-item .type-content strong,
.nexhub-post-preview-container .publishing-site-item .product-content strong,
.nexhub-post-preview-container .publishing-site-item .site-content strong,
.nexhub-type-of-publishing-form .publishing-type-item .type-content strong,
.nexhub-type-of-publishing-form .publishing-type-item .product-content strong,
.nexhub-type-of-publishing-form .publishing-type-item .site-content strong,
.nexhub-type-of-publishing-form .premium-product-item .type-content strong,
.nexhub-type-of-publishing-form .premium-product-item .product-content strong,
.nexhub-type-of-publishing-form .premium-product-item .site-content strong,
.nexhub-type-of-publishing-form .publishing-site-item .type-content strong,
.nexhub-type-of-publishing-form .publishing-site-item .product-content strong,
.nexhub-type-of-publishing-form .publishing-site-item .site-content strong {
  display: block;
  font-size: 1rem;
}
.nexhub-local-business-form .publishing-type-item .type-content span,
.nexhub-local-business-form .publishing-type-item .product-content span,
.nexhub-local-business-form .publishing-type-item .site-content span,
.nexhub-local-business-form .premium-product-item .type-content span,
.nexhub-local-business-form .premium-product-item .product-content span,
.nexhub-local-business-form .premium-product-item .site-content span,
.nexhub-local-business-form .publishing-site-item .type-content span,
.nexhub-local-business-form .publishing-site-item .product-content span,
.nexhub-local-business-form .publishing-site-item .site-content span,
.nexhub-registration-form .publishing-type-item .type-content span,
.nexhub-registration-form .publishing-type-item .product-content span,
.nexhub-registration-form .publishing-type-item .site-content span,
.nexhub-registration-form .premium-product-item .type-content span,
.nexhub-registration-form .premium-product-item .product-content span,
.nexhub-registration-form .premium-product-item .site-content span,
.nexhub-registration-form .publishing-site-item .type-content span,
.nexhub-registration-form .publishing-site-item .product-content span,
.nexhub-registration-form .publishing-site-item .site-content span,
.nexhub-login-form .publishing-type-item .type-content span,
.nexhub-login-form .publishing-type-item .product-content span,
.nexhub-login-form .publishing-type-item .site-content span,
.nexhub-login-form .premium-product-item .type-content span,
.nexhub-login-form .premium-product-item .product-content span,
.nexhub-login-form .premium-product-item .site-content span,
.nexhub-login-form .publishing-site-item .type-content span,
.nexhub-login-form .publishing-site-item .product-content span,
.nexhub-login-form .publishing-site-item .site-content span,
.nexhub-publishing-form .publishing-type-item .type-content span,
.nexhub-publishing-form .publishing-type-item .product-content span,
.nexhub-publishing-form .publishing-type-item .site-content span,
.nexhub-publishing-form .premium-product-item .type-content span,
.nexhub-publishing-form .premium-product-item .product-content span,
.nexhub-publishing-form .premium-product-item .site-content span,
.nexhub-publishing-form .publishing-site-item .type-content span,
.nexhub-publishing-form .publishing-site-item .product-content span,
.nexhub-publishing-form .publishing-site-item .site-content span,
.nexhub-post-preview-container .publishing-type-item .type-content span,
.nexhub-post-preview-container .publishing-type-item .product-content span,
.nexhub-post-preview-container .publishing-type-item .site-content span,
.nexhub-post-preview-container .premium-product-item .type-content span,
.nexhub-post-preview-container .premium-product-item .product-content span,
.nexhub-post-preview-container .premium-product-item .site-content span,
.nexhub-post-preview-container .publishing-site-item .type-content span,
.nexhub-post-preview-container .publishing-site-item .product-content span,
.nexhub-post-preview-container .publishing-site-item .site-content span,
.nexhub-type-of-publishing-form .publishing-type-item .type-content span,
.nexhub-type-of-publishing-form .publishing-type-item .product-content span,
.nexhub-type-of-publishing-form .publishing-type-item .site-content span,
.nexhub-type-of-publishing-form .premium-product-item .type-content span,
.nexhub-type-of-publishing-form .premium-product-item .product-content span,
.nexhub-type-of-publishing-form .premium-product-item .site-content span,
.nexhub-type-of-publishing-form .publishing-site-item .type-content span,
.nexhub-type-of-publishing-form .publishing-site-item .product-content span,
.nexhub-type-of-publishing-form .publishing-site-item .site-content span {
  font-size: 0.85rem;
  color: #666;
}
.nexhub-local-business-form .publishing-type-item .type-content small,
.nexhub-local-business-form .publishing-type-item .product-content small,
.nexhub-local-business-form .publishing-type-item .site-content small,
.nexhub-local-business-form .premium-product-item .type-content small,
.nexhub-local-business-form .premium-product-item .product-content small,
.nexhub-local-business-form .premium-product-item .site-content small,
.nexhub-local-business-form .publishing-site-item .type-content small,
.nexhub-local-business-form .publishing-site-item .product-content small,
.nexhub-local-business-form .publishing-site-item .site-content small,
.nexhub-registration-form .publishing-type-item .type-content small,
.nexhub-registration-form .publishing-type-item .product-content small,
.nexhub-registration-form .publishing-type-item .site-content small,
.nexhub-registration-form .premium-product-item .type-content small,
.nexhub-registration-form .premium-product-item .product-content small,
.nexhub-registration-form .premium-product-item .site-content small,
.nexhub-registration-form .publishing-site-item .type-content small,
.nexhub-registration-form .publishing-site-item .product-content small,
.nexhub-registration-form .publishing-site-item .site-content small,
.nexhub-login-form .publishing-type-item .type-content small,
.nexhub-login-form .publishing-type-item .product-content small,
.nexhub-login-form .publishing-type-item .site-content small,
.nexhub-login-form .premium-product-item .type-content small,
.nexhub-login-form .premium-product-item .product-content small,
.nexhub-login-form .premium-product-item .site-content small,
.nexhub-login-form .publishing-site-item .type-content small,
.nexhub-login-form .publishing-site-item .product-content small,
.nexhub-login-form .publishing-site-item .site-content small,
.nexhub-publishing-form .publishing-type-item .type-content small,
.nexhub-publishing-form .publishing-type-item .product-content small,
.nexhub-publishing-form .publishing-type-item .site-content small,
.nexhub-publishing-form .premium-product-item .type-content small,
.nexhub-publishing-form .premium-product-item .product-content small,
.nexhub-publishing-form .premium-product-item .site-content small,
.nexhub-publishing-form .publishing-site-item .type-content small,
.nexhub-publishing-form .publishing-site-item .product-content small,
.nexhub-publishing-form .publishing-site-item .site-content small,
.nexhub-post-preview-container .publishing-type-item .type-content small,
.nexhub-post-preview-container .publishing-type-item .product-content small,
.nexhub-post-preview-container .publishing-type-item .site-content small,
.nexhub-post-preview-container .premium-product-item .type-content small,
.nexhub-post-preview-container .premium-product-item .product-content small,
.nexhub-post-preview-container .premium-product-item .site-content small,
.nexhub-post-preview-container .publishing-site-item .type-content small,
.nexhub-post-preview-container .publishing-site-item .product-content small,
.nexhub-post-preview-container .publishing-site-item .site-content small,
.nexhub-type-of-publishing-form .publishing-type-item .type-content small,
.nexhub-type-of-publishing-form .publishing-type-item .product-content small,
.nexhub-type-of-publishing-form .publishing-type-item .site-content small,
.nexhub-type-of-publishing-form .premium-product-item .type-content small,
.nexhub-type-of-publishing-form .premium-product-item .product-content small,
.nexhub-type-of-publishing-form .premium-product-item .site-content small,
.nexhub-type-of-publishing-form .publishing-site-item .type-content small,
.nexhub-type-of-publishing-form .publishing-site-item .product-content small,
.nexhub-type-of-publishing-form .publishing-site-item .site-content small {
  font-size: 0.75rem;
  color: #999;
  display: block;
}
.nexhub-local-business-form .publishing-type-item .type-content img,
.nexhub-local-business-form .publishing-type-item .product-content img,
.nexhub-local-business-form .publishing-type-item .site-content img,
.nexhub-local-business-form .premium-product-item .type-content img,
.nexhub-local-business-form .premium-product-item .product-content img,
.nexhub-local-business-form .premium-product-item .site-content img,
.nexhub-local-business-form .publishing-site-item .type-content img,
.nexhub-local-business-form .publishing-site-item .product-content img,
.nexhub-local-business-form .publishing-site-item .site-content img,
.nexhub-registration-form .publishing-type-item .type-content img,
.nexhub-registration-form .publishing-type-item .product-content img,
.nexhub-registration-form .publishing-type-item .site-content img,
.nexhub-registration-form .premium-product-item .type-content img,
.nexhub-registration-form .premium-product-item .product-content img,
.nexhub-registration-form .premium-product-item .site-content img,
.nexhub-registration-form .publishing-site-item .type-content img,
.nexhub-registration-form .publishing-site-item .product-content img,
.nexhub-registration-form .publishing-site-item .site-content img,
.nexhub-login-form .publishing-type-item .type-content img,
.nexhub-login-form .publishing-type-item .product-content img,
.nexhub-login-form .publishing-type-item .site-content img,
.nexhub-login-form .premium-product-item .type-content img,
.nexhub-login-form .premium-product-item .product-content img,
.nexhub-login-form .premium-product-item .site-content img,
.nexhub-login-form .publishing-site-item .type-content img,
.nexhub-login-form .publishing-site-item .product-content img,
.nexhub-login-form .publishing-site-item .site-content img,
.nexhub-publishing-form .publishing-type-item .type-content img,
.nexhub-publishing-form .publishing-type-item .product-content img,
.nexhub-publishing-form .publishing-type-item .site-content img,
.nexhub-publishing-form .premium-product-item .type-content img,
.nexhub-publishing-form .premium-product-item .product-content img,
.nexhub-publishing-form .premium-product-item .site-content img,
.nexhub-publishing-form .publishing-site-item .type-content img,
.nexhub-publishing-form .publishing-site-item .product-content img,
.nexhub-publishing-form .publishing-site-item .site-content img,
.nexhub-post-preview-container .publishing-type-item .type-content img,
.nexhub-post-preview-container .publishing-type-item .product-content img,
.nexhub-post-preview-container .publishing-type-item .site-content img,
.nexhub-post-preview-container .premium-product-item .type-content img,
.nexhub-post-preview-container .premium-product-item .product-content img,
.nexhub-post-preview-container .premium-product-item .site-content img,
.nexhub-post-preview-container .publishing-site-item .type-content img,
.nexhub-post-preview-container .publishing-site-item .product-content img,
.nexhub-post-preview-container .publishing-site-item .site-content img,
.nexhub-type-of-publishing-form .publishing-type-item .type-content img,
.nexhub-type-of-publishing-form .publishing-type-item .product-content img,
.nexhub-type-of-publishing-form .publishing-type-item .site-content img,
.nexhub-type-of-publishing-form .premium-product-item .type-content img,
.nexhub-type-of-publishing-form .premium-product-item .product-content img,
.nexhub-type-of-publishing-form .premium-product-item .site-content img,
.nexhub-type-of-publishing-form .publishing-site-item .type-content img,
.nexhub-type-of-publishing-form .publishing-site-item .product-content img,
.nexhub-type-of-publishing-form .publishing-site-item .site-content img {
  max-width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}
.nexhub-local-business-form .chatgpt-section,
.nexhub-registration-form .chatgpt-section,
.nexhub-login-form .chatgpt-section,
.nexhub-publishing-form .chatgpt-section,
.nexhub-post-preview-container .chatgpt-section,
.nexhub-type-of-publishing-form .chatgpt-section {
  background: #fcfcfc;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  margin-bottom: 2rem;
}

.nexhub-post-status {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: inline-block;
  font-size: 0.9rem;
}
.nexhub-post-status.status-published {
  background: #e7f5ea;
  color: #1e4627;
  border: 1px solid #c3e6cb;
}
.nexhub-post-status.status-draft {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}
.nexhub-post-status.status-pending {
  background: #cfe2ff;
  color: #084298;
  border: 1px solid #b6d4fe;
}

.local-business-single-map-wrapper {
  margin-top: 3rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}
.local-business-single-map-wrapper h3 {
  margin-bottom: 1.5rem;
}

/*# sourceMappingURL=local-business.css.map */
