﻿/* Page: Home
   Loaded after site.css. Keep only styles used by ui/pages/home.html here. */

/* Startseite: Karten für "Software, Websites und kleine Tools" */
.home-sment-cards{
  align-items: stretch;
}

.home-sment-cards .card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-sment-cards .card-action{
  margin-top: auto;
  padding-top: 1rem;
}

.home-sment-cards .btn{
  width: auto;
  min-width: 160px;
  max-width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: .75rem 1rem;
}

@media (max-width: 640px){
  .home-sment-cards .btn{
    width: 100%;
  }
}

.home-practice-examples {
  max-width: 1100px;
  margin: 2.4rem auto;
  padding: 0 1rem;
}

.home-practice-examples h2 {
  margin: 0 0 0.75rem 0;
  font-size: 1.65rem;
  line-height: 1.25;
  color: #111827;
}

.home-practice-examples > p {
  max-width: 760px;
  margin: 0 0 1.4rem 0;
  color: #5f6b7a;
  line-height: 1.6;
}

.home-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-example-grid a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 150, 150, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(20, 40, 60, 0.04);
}

.home-example-grid a strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #111827;
  font-size: 1rem;
  line-height: 1.3;
}

.home-example-grid a span {
  display: block;
  color: #5f6b7a;
  font-size: 0.95rem;
  line-height: 1.45;
}

.home-example-grid a:hover,
.home-example-grid a:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 40, 60, 0.08);
  border-color: rgba(0, 150, 150, 0.28);
}

.home-example-grid a:hover strong,
.home-example-grid a:focus strong {
  color: #159a9a;
}

@media (max-width: 720px) {
  .home-example-grid {
    grid-template-columns: 1fr;
  }
}

.home-hub-link {
    margin: 24px 0 28px;
    padding: 20px 22px;
    border: 1px solid #d7e2ee;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.home-hub-link__content h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    line-height: 1.3;
    color: #123047;
}

.home-hub-link__content p {
    margin: 0;
    max-width: 680px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #4b5b6b;
}

.home-hub-link__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;

    padding: 10px 16px;
    border-radius: 8px;
    background: #ff8a00;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.22);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.home-hub-link__button:hover,
.home-hub-link__button:focus {
    background: #e87900;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 138, 0, 0.28);
}

@media (max-width: 720px) {
    .home-hub-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hub-link__button {
        width: 100%;
    }
}

/* Startseite: "Womit kann ich helfen?" mit 4 Karten */
.grid.cards.home-help-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-help-cards .card {
  min-height: 210px;
}

/* Mobil einspaltig */
@media (max-width: 640px) {
  .grid.cards.home-help-cards {
    grid-template-columns: 1fr;
  }

  .home-help-cards .card {
    min-height: 0;
  }
}

/* =========================
   Softwarelösungen: Lösungskarten schöner
   ========================= */

.grid.cards.home-sment-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.home-sment-cards .card {
  position: relative;
  overflow: hidden;
  padding: 1.45rem 1.45rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-sment-cards .card::before {
  content: "";
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(62, 166, 161, 0.10);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home-sment-cards .card:nth-child(1)::before {
  content: "Web";
  font-size: 0.78rem;
  font-weight: 800;
}

.home-sment-cards .card:nth-child(2)::before {
  content: "Tool";
  font-size: 0.78rem;
  font-weight: 800;
}

.home-sment-cards .card:nth-child(3)::before {
  content: "App";
  font-size: 0.78rem;
  font-weight: 800;
}

.home-sment-cards .card:nth-child(4)::before {
  content: "Data";
  font-size: 0.78rem;
  font-weight: 800;
}

.home-sment-cards .card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 166, 161, 0.34);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.home-sment-cards .card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.22rem;
  line-height: 1.25;
  color: #123f46;
}

.home-sment-cards .card .nolead {
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.home-sment-cards .card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.home-sment-cards .card li {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  line-height: 1.45;
}

.home-sment-cards .card-action {
  margin-top: auto;
  padding-top: 1.25rem;
}

.home-sment-cards .btn.btn-primary {
  min-width: 0;
  width: auto;
  padding: 0.75rem 1rem;
  border-radius: 11px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(247, 148, 30, 0.20);
}

.home-sment-cards .btn.btn-primary:hover {
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(247, 148, 30, 0.26);
}

@media (max-width: 820px) {
  .grid.cards.home-sment-cards {
    grid-template-columns: 1fr;
  }

  .home-sment-cards .card {
    padding: 1.25rem;
  }
}

/* Startseite: finaler CTA */
.home-final-cta-section {
  padding-top: 3rem;
  padding-bottom: 4.5rem;
}

.home-final-cta {
  margin-top: 0;
}

/* Startseite: Hero-Buttons klarer strukturieren */
.home-hero-actions {
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.home-hero-actions .btn {
  width: auto;
  min-height: 54px;
  margin-top: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.85rem 1.15rem;
  border-radius: 13px;

  font-size: 1rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.home-hero-primary {
  min-width: 210px;
  background: var(--accent);
  color: #111827;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(247, 148, 30, 0.24);
}

.home-hero-primary:hover,
.home-hero-primary:focus {
  color: #111827;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(247, 148, 30, 0.30);
}

.home-hero-secondary {
  min-width: 150px;
  background: #ffffff;
  color: #123f46;
  border: 1px solid rgba(62, 166, 161, 0.28);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.home-hero-secondary:hover,
.home-hero-secondary:focus {
  color: var(--brand-dark);
  background: rgba(62, 166, 161, 0.07);
  border-color: rgba(62, 166, 161, 0.45);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
}

@media (max-width: 640px) {
  .home-hero-actions {
    align-items: stretch;
  }

  .home-hero-actions .btn {
    width: 100%;
  }
}

/* Startseite: Hinweis-CTA "Nicht sicher, welche Lösung passt?" */
.home-hub-link {
  margin: 1.6rem 0 3rem;
  padding: 1.25rem 1.35rem;

  border-radius: 16px;
  border: 1px solid rgba(247, 148, 30, 0.24);
  border-left: 5px solid var(--accent);

  background:
    radial-gradient(circle at top right, rgba(247, 148, 30, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fffaf4 55%, #f7fbfb 100%);

  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.home-hub-link__content h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #123f46;
}

.home-hub-link__content p {
  margin: 0;
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #4b5f70;
}

.home-hub-link__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;

  padding: 0.8rem 1rem;
  border-radius: 11px;

  background: var(--accent);
  color: #111827;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(247, 148, 30, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.home-hub-link__button:hover,
.home-hub-link__button:focus {
  color: #111827;
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(0.98);
  box-shadow: 0 14px 28px rgba(247, 148, 30, 0.28);
}

@media (max-width: 720px) {
  .home-hub-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem;
  }

  .home-hub-link__button {
    width: 100%;
  }
}

/* Startseite: Buttons in den kleinen-Firmen-Karten */
.home-sment-cards .card-action {
  margin-top: auto;
  padding-top: 1.35rem;
}

.home-sment-cards .card-action .btn {
  width: auto;
  min-width: 145px;
  margin-top: 0;

  padding: 0.82rem 1.05rem;
  border-radius: 12px;

  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;

  justify-content: center;
  text-decoration: none;
}

.home-sment-cards .card-action .btn-primary {
  background: var(--accent);
  color: #111827;
  border-color: transparent;
  box-shadow: 0 9px 20px rgba(247, 148, 30, 0.22);
}

.home-sment-cards .card-action .btn-primary:hover,
.home-sment-cards .card-action .btn-primary:focus {
  color: #111827;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 13px 26px rgba(247, 148, 30, 0.28);
}

@media (max-width: 640px) {
  .home-sment-cards .card-action .btn {
    width: 100%;
  }
}

/* Startseite: dritte kleine-Firmen-Karte als breite Abschlusskarte */
@media (min-width: 821px) {
  .home-sment-cards .card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .home-sment-cards .card:nth-child(3) .nolead,
  .home-sment-cards .card:nth-child(3) ul {
    max-width: 720px;
  }
}

/* Startseite: Special-Teaser Buttons */
.special-teaser .btn.btn-outline {
  width: auto;
  min-width: 165px;
  margin-top: 0;

  justify-content: center;
  padding: 0.82rem 1.05rem;
  border-radius: 12px;

  background: #ffffff;
  color: var(--brand-dark);
  border: 1px solid rgba(62, 166, 161, 0.28);

  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.special-teaser .btn.btn-outline:hover,
.special-teaser .btn.btn-outline:focus {
  color: var(--brand-dark);
  background: rgba(62, 166, 161, 0.08);
  border-color: rgba(62, 166, 161, 0.45);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
}

@media (max-width: 820px) {
  .special-teaser .btn.btn-outline {
    width: 100%;
  }
}

/* Startseite: Special-Teaser Buttonspalte vereinheitlichen */
.special-teaser__action {
  width: 260px;
  display: flex;
  justify-content: flex-end;
}

.special-teaser .btn.btn-outline {
  width: 100%;
  min-width: 0;
  text-align: center;
}

@media (max-width: 820px) {
  .special-teaser__action {
    width: 100%;
  }
}

/* Startseite: Recruiter-Block verfeinern */
.recruiter-section {
  margin-top: 3rem;
  margin-bottom: 2.6rem;
}

.recruiter-box {
  padding: 1.35rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background:
    radial-gradient(circle at top right, rgba(62, 166, 161, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.recruiter-box .eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.18rem 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.recruiter-content h2 {
  margin: 0 0 0.35rem;
  font-size: 1.18rem;
  line-height: 1.25;
  color: #123f46;
}

.recruiter-content p {
  margin: 0;
  max-width: 720px;
  color: #5f6f80;
  font-size: 0.98rem;
  line-height: 1.6;
}

.recruiter-action .btn.btn-secondary {
  width: auto;
  min-width: 190px;
  margin-top: 0;

  justify-content: center;
  padding: 0.82rem 1.05rem;
  border-radius: 12px;

  background: #ffffff;
  color: var(--brand-dark);
  border: 1px solid rgba(62, 166, 161, 0.24);

  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.recruiter-action .btn.btn-secondary:hover,
.recruiter-action .btn.btn-secondary:focus {
  color: var(--brand-dark);
  background: rgba(62, 166, 161, 0.08);
  border-color: rgba(62, 166, 161, 0.42);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
}

@media (max-width: 700px) {
  .recruiter-action,
  .recruiter-action .btn.btn-secondary {
    width: 100%;
  }
}

/* Startseite: Typische Situationen verfeinern */
.section[aria-label="Typische Situationen"] {
  margin-top: 3.2rem;
  padding-bottom: 1.4rem;
}

.section[aria-label="Typische Situationen"] h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  color: #111827;
}

.situation-grid {
  gap: 1.2rem;
}

.situation-card {
  position: relative;
  padding: 1.35rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.situation-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 13px;
  background: rgba(62, 166, 161, 0.12);
}

.situation-card::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  font-weight: 850;
}

.situation-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #123f46;
}

.situation-card li {
  margin-bottom: 0.55rem;
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.5;
}

.situation-card:hover {
  border-color: rgba(62, 166, 161, 0.32);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

/* Startseite: Typische Situationen – neutrale Symbol-Badges */
.situation-card:nth-child(1)::before {
  content: "⚙";
  font-size: 1rem;
}

.situation-card:nth-child(2)::before {
  content: "↔";
  font-size: 1.1rem;
}

/* Startseite: Trust-Zeilen im Hero */
.home-hero .hero-trust {
  margin: 0.55rem 0 0;
  color: #5f6f80;
  font-size: 1rem;
  line-height: 1.45;
}

.home-hero .hero-trust:first-of-type {
  margin-top: 1.05rem;
  font-weight: 700;
  color: #4b5f70;
}

.home-hero .hero-trust strong {
  color: #123f46;
}

/* Startseite: Highlights unter dem Hero */
.highlights {
  margin: 0.8rem 0 2.2rem;
}

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.highlight-list li {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 15px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.045);

  color: #4b5f70;
  font-size: 0.98rem;
  line-height: 1.45;
}

.highlight-list li strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #123f46;
  font-size: 1rem;
  line-height: 1.3;
}

.highlight-list li span {
  color: #5f6f80;
}

@media (max-width: 820px) {
  .highlight-list {
    grid-template-columns: 1fr;
  }
}

/* Startseite: Trust-Leiste unter Hero-Buttons */
.home-hero .hero-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.home-hero .hero-trustbar .hero-trust {
  position: relative;
  margin: 0;
  padding: 0.48rem 0.75rem 0.48rem 2rem;

  border-radius: 999px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);

  color: #5f6f80;
  font-size: 0.95rem;
  line-height: 1.35;
}

.home-hero .hero-trustbar .hero-trust::before {
  content: "✓";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  transform: translateY(-50%);

  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(62, 166, 161, 0.13);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.home-hero .hero-trustbar .hero-trust-main {
  border-color: rgba(247, 148, 30, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  color: #4b5f70;
  font-weight: 650;
}

.home-hero .hero-trustbar .hero-trust strong {
  color: #123f46;
}

@media (max-width: 720px) {
  .home-hero .hero-trustbar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Startseite: Hero-Bild verfeinern */
.home-hero .hero-image {
  max-width: 400px;
  border-radius: 22px;
  border: 1px solid rgba(62, 166, 161, 0.16);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  background: #ffffff;
  padding: 0.35rem;
}

@media (max-width: 900px) {
  .home-hero .hero-image {
    max-width: 360px;
  }
}

/* Startseite: Hero-Feinschliff */
.home-hero .hero-content {
  align-items: flex-start;
  gap: 3rem;
}

.home-hero .hero-media {
  padding-top: 0.8rem;
}

.home-hero .hero-trustbar {
  margin-top: 0.75rem;
}

.home-hero .hero-cta {
  margin-bottom: 0.15rem;
}

@media (max-width: 900px) {
  .home-hero .hero-content {
    gap: 1.5rem;
  }

  .home-hero .hero-media {
    padding-top: 0;
  }
}

/* Startseite: Einleitung kleine Firmen */
.home-sment-head {
  margin-bottom: 1.8rem;
}

.home-sment-head h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: #111827;
}

.home-sment-intro {
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(62, 166, 161, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

.home-sment-intro p {
  margin: 0 0 0.8rem;
  color: #5f6f80;
  font-size: 1.03rem;
  line-height: 1.65;
}

.home-sment-intro p:last-child {
  margin-bottom: 0;
}

.situations-section {
  margin-top: 3rem;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: #5f6f80;
  line-height: 1.6;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.situation-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid #d9e5ec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(20, 50, 70, 0.06);
}

.situation-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: #123f46;
}

.situation-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.situation-card li {
  margin-bottom: 0.5rem;
  color: #4b5f70;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .situation-grid {
    grid-template-columns: 1fr;
  }
}

.recruiter-section {
  margin-top: 3rem;
}

.recruiter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #d9e5ec;
  border-radius: 14px;
  background: #f8fbfc;
}

.recruiter-content h2 {
  margin: 0.25rem 0 0.4rem;
  font-size: 1.15rem;
  color: #123f46;
}

.recruiter-content p {
  margin: 0;
  color: #5f6f80;
  line-height: 1.5;
}

.recruiter-action {
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #008c95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .recruiter-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .recruiter-action {
    width: 100%;
  }

  .recruiter-action .btn {
    width: 100%;
    text-align: center;
  }
}
