:root {
  --nfs-red: #d71920;
  --nfs-red-dark: #b9151b;
  --nfs-text: #242424;
  --nfs-muted: #626262;
  --nfs-border: #dededb;
  --nfs-soft: #f7f7f5;
  --nfs-white: #ffffff;
  --nfs-radius: 12px;
  --nfs-shadow: 0 8px 24px rgba(0, 0, 0, 0.055);
}

.nfs-directory,
.nfs-application {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 18px 52px;
  color: var(--nfs-text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  box-sizing: border-box;
}

.nfs-directory *,
.nfs-application * {
  box-sizing: border-box;
}

.nfs-directory__hero,
.nfs-application__intro {
  color: var(--nfs-text) !important;
  background: var(--nfs-soft) !important;
  border: 1px solid var(--nfs-border);
  border-left: 4px solid var(--nfs-red);
  border-radius: var(--nfs-radius);
}

.nfs-directory__hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 30px 32px;
  margin-bottom: 20px;
}

.nfs-directory__hero h1,
.nfs-application__intro h1 {
  margin: 5px 0 8px !important;
  color: var(--nfs-text) !important;
  font-size: clamp(26px, 2.7vw, 36px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.015em !important;
  font-weight: 500 !important;
}

.nfs-directory__hero p,
.nfs-application__intro p {
  margin: 0;
  color: var(--nfs-muted) !important;
  font-size: 16px !important;
  line-height: 1.55;
  font-weight: 400 !important;
}

.nfs-directory__eyebrow {
  margin: 0 !important;
  color: var(--nfs-red) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.11em;
}

.nfs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600 !important;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.nfs-button:hover {
  transform: translateY(-1px);
}

.nfs-button--primary,
.nfs-button--dark {
  color: var(--nfs-white) !important;
  background: var(--nfs-red) !important;
}

.nfs-button--primary:hover,
.nfs-button--dark:hover {
  background: var(--nfs-red-dark) !important;
}

.nfs-button--outline {
  color: var(--nfs-text) !important;
  border-color: #bdbdb8;
  background: var(--nfs-white);
}

.nfs-button--outline:hover {
  border-color: var(--nfs-red);
  color: var(--nfs-red) !important;
}

.nfs-button--large {
  min-height: 48px;
  padding: 12px 21px;
  font-size: 16px;
}

.nfs-directory__filters {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(155px, .8fr));
  gap: 14px;
  align-items: end;
  padding: 20px;
  background: var(--nfs-white);
  border: 1px solid var(--nfs-border);
  border-radius: var(--nfs-radius);
  box-shadow: var(--nfs-shadow);
}

.nfs-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
}

.nfs-field > span {
  color: #393939;
  font-size: 14px;
  font-weight: 600 !important;
}

.nfs-field strong {
  color: var(--nfs-red);
  font-weight: 600;
}

.nfs-field input,
.nfs-field select,
.nfs-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #c8c8c4;
  border-radius: 7px;
  background: var(--nfs-white);
  color: var(--nfs-text);
  font: inherit;
  font-weight: 400;
}

.nfs-field textarea {
  min-height: 145px;
  resize: vertical;
}

.nfs-field input:focus,
.nfs-field select:focus,
.nfs-field textarea:focus {
  outline: 3px solid rgba(215, 25, 32, 0.13);
  border-color: var(--nfs-red);
}

.nfs-directory__filter-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 2px;
}

.nfs-clear-link {
  color: var(--nfs-muted);
  font-size: 14px;
  font-weight: 500;
}

.nfs-directory__result-count {
  padding: 22px 2px 13px;
  color: var(--nfs-muted);
  font-size: 14px;
  font-weight: 500;
}

.nfs-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.nfs-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--nfs-white);
  border: 1px solid var(--nfs-border);
  border-radius: var(--nfs-radius);
  box-shadow: var(--nfs-shadow);
}

.nfs-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  padding: 22px;
  background: var(--nfs-soft);
}

.nfs-card__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nfs-card__placeholder {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #eeeeeb;
  color: var(--nfs-text);
  font-size: 28px;
  font-weight: 600;
}

.nfs-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.nfs-card__category {
  margin: 0 0 5px;
  color: var(--nfs-red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nfs-card h2 {
  margin: 0 0 7px !important;
  font-size: 21px !important;
  line-height: 1.22 !important;
  font-weight: 500 !important;
}

.nfs-card h2 a {
  color: var(--nfs-text);
  text-decoration: none;
}

.nfs-card__location {
  margin: 0 0 12px;
  color: var(--nfs-muted);
  font-size: 14px;
  font-weight: 400;
}

.nfs-card__summary {
  margin: 0 0 18px;
  color: #3f3f3f;
  font-size: 15px;
  line-height: 1.55;
}

.nfs-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.nfs-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.nfs-social-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--nfs-border);
  border-radius: 7px;
  background: var(--nfs-white);
  color: var(--nfs-text) !important;
  font-size: 15px;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.nfs-social-button:hover {
  border-color: #b9b9b4;
  background: #fbfbfa;
}

.nfs-social-button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.nfs-social-button--website svg,
.nfs-social-button--phone svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nfs-social-button--whatsapp svg { fill: #25d366; }
.nfs-social-button--facebook svg { fill: #1877f2; }
.nfs-social-button--instagram svg { fill: #c13584; }
.nfs-social-button--linkedin svg { fill: #0a66c2; }

.nfs-socials--compact {
  gap: 6px;
}

.nfs-socials--compact .nfs-social-button {
  width: 37px;
  height: 37px;
  min-height: 37px;
  padding: 8px;
  justify-content: center;
}

.nfs-profile-contact {
  margin-top: 30px;
  padding: 24px 26px;
  background: #fafaf9;
  border: 1px solid var(--nfs-border);
  border-left: 4px solid var(--nfs-red);
  border-radius: 8px;
}

.nfs-profile-contact h2 {
  margin: 0 0 15px !important;
  color: var(--nfs-text) !important;
  font-size: clamp(21px, 2.2vw, 26px) !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
}

.nfs-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.nfs-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 11px;
  border: 1px solid var(--nfs-border);
  border-radius: 7px;
  color: var(--nfs-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nfs-pagination .current {
  color: var(--nfs-white);
  background: var(--nfs-red);
  border-color: var(--nfs-red);
}

.nfs-empty-state,
.nfs-notice {
  padding: 25px 27px;
  border-radius: var(--nfs-radius);
}

.nfs-empty-state {
  text-align: center;
  background: var(--nfs-soft);
}

.nfs-empty-state h2,
.nfs-notice h2 {
  margin: 0 0 10px !important;
  color: var(--nfs-text) !important;
  font-size: clamp(22px, 2.6vw, 30px) !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
}

.nfs-notice p {
  margin: 0;
  color: #454545;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.nfs-application {
  max-width: 980px;
}

.nfs-application__intro {
  margin-bottom: 22px;
  padding: 28px 30px;
}

.nfs-application__form {
  padding: 28px;
  background: var(--nfs-white);
  border: 1px solid var(--nfs-border);
  border-radius: var(--nfs-radius);
  box-shadow: var(--nfs-shadow);
}

.nfs-application fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.nfs-application legend {
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cfcfcb;
  color: var(--nfs-text);
  font-size: 20px;
  font-weight: 500;
}

.nfs-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.nfs-field--full {
  grid-column: 1 / -1;
}

.nfs-field small,
.nfs-fieldset-help,
.nfs-form-note {
  color: var(--nfs-muted);
  font-size: 14px;
}

.nfs-consents {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.nfs-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.nfs-checkbox input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--nfs-red);
}

.nfs-form-note {
  margin-bottom: 0;
}

.nfs-notice {
  margin-bottom: 22px;
  border: 1px solid;
}

.nfs-notice--success {
  border-color: var(--nfs-border);
  border-left: 4px solid var(--nfs-red);
  background: #fafaf9;
}

.nfs-notice--error {
  border-color: #ef8c8c;
  background: #fff1f1;
}

.nfs-email-address {
  color: var(--nfs-text);
  font-weight: 500;
}

.nfs-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 980px) {
  .nfs-directory__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nfs-field--wide {
    grid-column: 1 / -1;
  }

  .nfs-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nfs-directory,
  .nfs-application {
    padding-inline: 12px;
  }

  .nfs-directory__hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }

  .nfs-directory__hero .nfs-button {
    width: 100%;
  }

  .nfs-directory__filters,
  .nfs-directory__grid,
  .nfs-form-grid {
    grid-template-columns: 1fr;
  }

  .nfs-field--wide,
  .nfs-field--full {
    grid-column: auto;
  }

  .nfs-directory__filter-actions,
  .nfs-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .nfs-card__footer .nfs-button {
    width: 100%;
  }

  .nfs-socials--compact {
    justify-content: flex-start;
  }

  .nfs-application__intro,
  .nfs-application__form {
    padding: 21px 18px;
  }

  .nfs-profile-contact {
    padding: 21px 18px;
  }
}


/* Dedicated business profile page */
.nfs-single-profile {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 18px 58px;
  color: var(--nfs-text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  box-sizing: border-box;
}

.nfs-single-profile * {
  box-sizing: border-box;
}

.nfs-profile__back {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--nfs-muted) !important;
  font-size: 14px;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.nfs-profile__back:hover {
  color: var(--nfs-red) !important;
}

.nfs-profile__hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 30px;
  background: var(--nfs-white);
  border: 1px solid var(--nfs-border);
  border-top: 3px solid var(--nfs-red);
  border-radius: var(--nfs-radius);
  box-shadow: var(--nfs-shadow);
}

.nfs-profile__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 175px;
  padding: 22px;
  background: var(--nfs-soft);
  border: 1px solid #ecece8;
  border-radius: 9px;
}

.nfs-profile__logo-wrap img {
  display: block;
  width: 100%;
  max-width: 175px;
  max-height: 135px;
  object-fit: contain;
}

.nfs-profile__logo-wrap .nfs-card__placeholder {
  width: 92px;
  height: 92px;
  font-size: 29px;
  font-weight: 500;
}

.nfs-profile__eyebrow {
  margin: 0 0 8px !important;
  color: var(--nfs-red) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .1em;
}

.nfs-profile__heading h1 {
  margin: 0 0 13px !important;
  color: var(--nfs-text) !important;
  font-size: clamp(27px, 3vw, 36px) !important;
  line-height: 1.16 !important;
  letter-spacing: -.012em !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.nfs-profile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--nfs-muted);
  font-size: 15px;
  font-weight: 400;
}

.nfs-profile__meta a,
.nfs-profile__details a {
  color: var(--nfs-red) !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.nfs-profile__meta span {
  position: relative;
}

.nfs-profile__meta span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 3px 0;
  border-radius: 50%;
  background: #a7a7a2;
}

.nfs-profile__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .72fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.nfs-profile__sidebar {
  display: grid;
  gap: 22px;
}

.nfs-profile__panel {
  padding: 26px 28px;
  background: var(--nfs-white);
  border: 1px solid var(--nfs-border);
  border-radius: var(--nfs-radius);
  box-shadow: var(--nfs-shadow);
}

.nfs-profile__panel h2 {
  margin: 0 0 16px !important;
  padding: 0 !important;
  color: var(--nfs-text) !important;
  font-size: 21px !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.nfs-profile__description,
.nfs-profile__description p {
  color: #3e3e3e !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
  font-weight: 400 !important;
}

.nfs-profile__description p {
  margin: 0 0 1em !important;
}

.nfs-profile__description p:last-child {
  margin-bottom: 0 !important;
}

.nfs-profile__contact .nfs-socials {
  display: grid;
  gap: 9px;
}

.nfs-profile__contact .nfs-social-button {
  width: 100%;
  justify-content: flex-start;
  min-height: 44px;
  font-size: 14px;
  font-weight: 400 !important;
}

.nfs-profile__details dl {
  margin: 0;
}

.nfs-profile__details dl > div {
  padding: 12px 0;
  border-top: 1px solid #ecece8;
}

.nfs-profile__details dl > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.nfs-profile__details dl > div:last-child {
  padding-bottom: 0;
}

.nfs-profile__details dt {
  margin: 0 0 2px;
  color: var(--nfs-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nfs-profile__details dd {
  margin: 0;
  color: var(--nfs-text);
  font-size: 15px;
  font-weight: 400;
}

.nfs-profile__footer-link {
  margin-top: 22px;
  text-align: center;
}

.nfs-directory-profile-page .entry-title,
.nfs-directory-profile-page .entry-meta,
.nfs-directory-profile-page .post-meta,
.nfs-directory-profile-page .author-info,
.nfs-directory-profile-page .comments-area {
  display: none !important;
}

@media (max-width: 820px) {
  .nfs-profile__hero {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
  }

  .nfs-profile__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nfs-single-profile {
    padding: 24px 12px 44px;
  }

  .nfs-profile__hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 21px 18px;
  }

  .nfs-profile__logo-wrap {
    min-height: 145px;
  }

  .nfs-profile__heading h1 {
    font-size: 27px !important;
  }

  .nfs-profile__meta {
    display: grid;
    gap: 5px;
  }

  .nfs-profile__meta span::before {
    display: none;
  }

  .nfs-profile__panel {
    padding: 22px 18px;
  }
}

/* Version 1.0.12: embed profiles inside the active Nuusflits article shell. */
.nfs-single-profile--embedded {
  max-width: none;
  margin: 0;
  padding: 4px 0 34px;
}

.nfs-single-profile--embedded .nfs-profile__hero {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  padding: 24px;
}

.nfs-single-profile--embedded .nfs-profile__logo-wrap {
  min-height: 150px;
  padding: 18px;
}

.nfs-single-profile--embedded .nfs-profile__logo-wrap img,
.nfs-single-profile--embedded .nfs-profile__logo-wrap .nfs-business-logo {
  width: 100%;
  max-width: 155px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.nfs-single-profile--embedded .nfs-profile__layout {
  grid-template-columns: 1fr;
}

.nfs-single-profile--embedded .nfs-profile__sidebar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nfs-single-profile--embedded .nfs-profile__contact .nfs-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.nfs-single-profile--embedded .nfs-profile__contact .nfs-social-button {
  width: auto;
  min-width: 0;
  justify-content: flex-start;
}

/* Suppress only the theme's article title/meta/featured-image chrome. The
   Nuusflits header, breaking-news strip, sidebar modules and footer remain. */
.nfs-directory-profile-page .entry-title,
.nfs-directory-profile-page .post-title,
.nfs-directory-profile-page .single-post-title,
.nfs-directory-profile-page .jeg_post_title,
.nfs-directory-profile-page .entry-meta,
.nfs-directory-profile-page .post-meta,
.nfs-directory-profile-page .post-meta-wrapper,
.nfs-directory-profile-page .single-post-meta,
.nfs-directory-profile-page .jeg_meta_container,
.nfs-directory-profile-page .author-info,
.nfs-directory-profile-page .post-author,
.nfs-directory-profile-page .comments-area,
.nfs-directory-profile-page .post-thumbnail,
.nfs-directory-profile-page .entry-thumbnail,
.nfs-directory-profile-page .featured-image,
.nfs-directory-profile-page .post-featured-image,
.nfs-directory-profile-page .jeg_featured {
  display: none !important;
}

/* Some themes wrap the heading and metadata in an entry header. Hide that
   wrapper only when it is outside the plugin's own profile header. */
.nfs-directory-profile-page .entry-header:not(.nfs-profile__hero),
.nfs-directory-profile-page .post-header:not(.nfs-profile__hero),
.nfs-directory-profile-page .single-post-header:not(.nfs-profile__hero) {
  display: none !important;
}

@media (max-width: 760px) {
  .nfs-single-profile--embedded .nfs-profile__hero {
    grid-template-columns: 1fr;
  }

  .nfs-single-profile--embedded .nfs-profile__sidebar {
    grid-template-columns: 1fr;
  }
}

/* Version 1.0.14: Nuusflits breaking-news strip on the main directory and individual profiles. */
.nfs-directory-news-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  width: 100%;
  margin: 0 0 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(215, 25, 32, 0.32);
  border-radius: 12px 12px 0 0;
  color: var(--nfs-text);
}

.nfs-directory-news-strip__label {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--nfs-red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.nfs-directory-news-strip__viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.nfs-directory-news-strip__viewport::before,
.nfs-directory-news-strip__viewport::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
}

.nfs-directory-news-strip__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.nfs-directory-news-strip__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.nfs-directory-news-strip__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: nfs-directory-news-scroll 46s linear infinite;
  will-change: transform;
}

.nfs-directory-news-strip:hover .nfs-directory-news-strip__track,
.nfs-directory-news-strip:focus-within .nfs-directory-news-strip__track {
  animation-play-state: paused;
}

.nfs-directory-news-strip__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 30px;
  padding: 0 24px;
}

.nfs-directory-news-strip__group a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  color: #3f3f3f !important;
  font-size: 14px;
  font-weight: 400 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.nfs-directory-news-strip__group a:hover {
  color: var(--nfs-red) !important;
}

.nfs-directory-news-strip__group a span {
  color: var(--nfs-red);
  font-size: 20px;
  line-height: 1;
}

.nfs-directory-news-strip__follow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border-left: 1px solid #ecece8;
  white-space: nowrap;
}

.nfs-directory-news-strip__follow > span {
  margin-right: 3px;
  color: #444;
  font-size: 13px;
  font-weight: 600;
}

.nfs-directory-news-strip__follow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--nfs-red);
  color: #fff !important;
  text-decoration: none !important;
  transition: transform .15s ease, background .15s ease;
}

.nfs-directory-news-strip__follow a:hover {
  background: var(--nfs-red-dark);
  transform: translateY(-1px);
}

.nfs-directory-news-strip__follow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

@keyframes nfs-directory-news-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .nfs-directory-news-strip__track {
    animation: none;
  }
  .nfs-directory-news-strip__viewport {
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  .nfs-directory-news-strip {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .nfs-directory-news-strip__follow {
    display: none;
  }

  .nfs-directory-news-strip__label {
    padding: 12px 14px;
    font-size: 13px;
  }

  .nfs-directory-news-strip__group a {
    min-height: 46px;
    font-size: 13px;
  }
}

.nfs-field__help {
  display: block;
  margin-top: -2px;
  color: var(--nfs-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
