:root {
    --navy: #16356b;
    --blue: #39a9e1;
    --pink: #ee4766;
    --soft-bg: #f3f3f3;
    --card-bg: #ffffff;
    --text: #202020;
    --muted: #676767;
    --light-lilac: #d9d6e8;
    --light-pink: #efd7db;
    --light-blue: #c8e5f5;
    --shadow-soft: 0 8px 28px rgba(15, 34, 63, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--soft-bg);
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
}

.skip-link {
    z-index: 1050;
}

.site-navbar {
    padding: 18px 0;
    background: transparent;
}

.site-navbar .container {
    background: #ffffff;
    border-radius: 22px;
    padding: 12px 18px;
    box-shadow: 0 8px 28px rgba(15, 34, 63, 0.06);
}

.site-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}


.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(145deg, var(--navy), #294f96);
    position: relative;
    flex: 0 0 auto;
}

.brand-mark::before {
    content: '';
    position: absolute;
    inset: 7px;
    background: #fff;
    border-radius: 6px;
    clip-path: polygon(0 0, 70% 0, 70% 28%, 100% 28%, 100% 100%, 0 100%);
    opacity: 0.95;
}

.navbar-nav {
    gap: 24px;
}

.navbar-nav .dropdown {
    position: static;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-toggle::after {
    content: '›';
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
}

.navbar .dropdown-menu {
    border: 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 18px 36px rgba(15, 34, 63, 0.12);
    padding: 22px 22px 18px;
    min-width: 320px;
    margin-top: 0;
    top: calc(100% + 12px);
    background: #f8f8f8;
    list-style: none;
}

.navbar .dropdown-menu.narrow {
    min-width: 270px;
}

.navbar .dropdown-menu.wide {
    min-width: 430px;
}

.navbar .dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin: 12px 0 8px;
}

.dropdown-item {
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.45;
    color: #16356b;
    white-space: normal;
    background: transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: transparent;
    color: var(--pink);
}

@media (min-width: 992px) {

    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-toggle-area {
        position: relative;
    }

    .navbar .dropdown-toggle-area::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
    }
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    color: #4b4b4b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 0 !important;
}

.nav-link.active {
    color: var(--pink) !important;
}

.search-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #3f3f3f;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.search-icon::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 2px;
    background: #3f3f3f;
    right: -5px;
    bottom: -2px;
    transform: rotate(45deg);
    border-radius: 2px;
}

.page-section {
    padding: 18px 0;
}

.hero-card {
    background: #fff;
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
    padding: 28px 24px 30px;
    width: 100%;
}

.hero-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.logo-panel {
    width: 66%;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 26px;
    box-shadow: inset 0 0 0 1px #f1f1f1;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.logo-accent {
    color: #d8c29d;
    font-size: 46px;
    position: relative;
    top: -18px;
    margin: 0 6px;
}

.tag-row,
.social-mini,
.filter-pills,
.share-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tag-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.tag {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 500;
    line-height: 1;
}

/* neutral (#Startup) */
.tag-neutral {
    color: #7c8698;
    background: #f1f3f6;
}

/* blue (#B2B / #B2C) */
.tag-blue {
    color: #5bb8df;
    background: #eef8fc;
}

/* pink (#Finance) */
.tag-pink {
    color: #e58a98;
    background: #fdf0f3;
}

/* purple (#Tech) */
.tag-purple {
    color: #c98aa5;
    background: #faf1f5;
}


.founder-box {
    width: 66%;
    margin: 18px auto 18px;
    background: #f6f6f6;
    border-radius: 22px;
    padding: 18px 20px;
    text-align: center;
}

.founder-box h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-box p {
    font-size: 12px;
    line-height: 1.75;
    color: #404040;
    margin-bottom: 14px;
}

.stats-inline {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.stats-inline div {
    font-size: 10px;
    color: #2f2f2f;
}

.btn-pink {
    background-color: var(--pink);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
}

.outline-btn::after,
.cta-circle::after,
.cta-link::after {
    content: '›';
    line-height: 1;
}

.suggestion-btn {
    min-width: 110px;
    height: 32px;
    font-size: 11px;
}

.social-mini a,
.share-icons a,
.reaction-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.social-mini a {
    background: #a8a6b6;
    color: #fff;
}

.filter-pills {
    margin: 18px 0 16px;
}

.filter-pills button {
    border: 1.5px solid var(--navy);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.filter-pills button.active {
    background: #fff;
    box-shadow: 0 2px 10px rgba(22, 53, 107, 0.08);
}

.reaction-row,
.reaction-note {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 112px);
    justify-content: center;
    column-gap: 18px;
}

.jls-post-reactions-shortcode .pld-like-dislike-wrap {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 112px);
    justify-content: center;
    column-gap: 18px;
    margin-top: 16px;
    margin-bottom: 2px;
    align-items: center;
}

.jls-post-reactions-shortcode .pld-common-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    text-align: center;
}

.jls-post-reactions-shortcode .pld-common-wrap a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
}

.jls-post-reactions-shortcode .pld-common-wrap img {
    width: 28px;
    height: 28px;
    display: block;
}

.jls-post-reactions-shortcode .pld-count-wrap {
    font-size: 13px;
    line-height: 1;
}


.reaction-note {
    margin-top: 4px;
    align-items: start;
}

.reaction-note span {
    display: block;
    text-align: center;
    font-size: 10px;
    line-height: 1.25;
    color: #8f8f8f;
}

.reaction-note span:first-child {
    color: var(--blue);
}

.reaction-note span:last-child {
    color: var(--pink);
}

.reaction-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;

    /* 🔑 THIS FIXES THE EMOJI ALIGNMENT */
    line-height: 1;
}

/* .reaction-icon.like {
      background: var(--blue);
      color: #fff;
    }

    .reaction-icon.dislike {
      background: var(--pink);
      color: #fff;
    } */

.reaction-note {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 10px;
    color: #8f8f8f;
}

.reaction-note span:last-child {
    color: var(--pink);
}

.share-block {
    text-align: center;
    margin-top: 20px;
}

.share-block p {
    font-size: 10px;
    margin-bottom: 10px;
    color: var(--navy);
}

.share-icons a {
    width: 44px;
    height: 44px;

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

    border-radius: 50%;

    font-size: 26px;
    font-weight: 700;
}

.share-icons a:nth-child(1) {
    background: var(--pink);
    color: #fff;
}

.share-icons a:nth-child(2) {
    background: #0f274f;
    color: #fff;
}

.share-icons a:nth-child(3) {
    background: #6ac6eb;
    color: #fff;
}

.share-icons a:nth-child(4) {
    background: #1d4b91;
    color: #fff;
}

.share-icons a:nth-child(5) {
    background: #f05f7d;
    color: #fff;
}

.article-grid {
    margin-top: 26px;
}

.text-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 22px 22px 20px;
    height: 100%;
}

.text-card a {
    color: var(--navy);
    font-weight: 500;
    transition: all .2s ease;
}

.text-card a:hover,
.text-card a:focus {
    font-weight: 600;
}
.text-card h2 {
    font-size: 14px;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 14px;
}

.text-card h3 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111;
}

.text-card p {
    line-height: 1.72;
    color: #343434;
    margin-bottom: 12px;
}

.text-card img {
    max-width: 100%;
    height: auto;
    display: block;
}

.newsletter-card,
.service-banner,
.mini-card,
.suggestion-card {
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.newsletter-card {
    background: var(--light-blue);
    padding: 18px 18px 16px;
    min-height: 110px;
}

.newsletter-card h2 {
    font-size: 14px;
    font-weight: 500;
    color: #4fa0ca;
    margin-bottom: 10px;
}

.newsletter-card form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.newsletter-fields {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    width: 100%;
}

.newsletter-card .cta-link {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-fields input {
    border: 0;
    background: #f4f4f4;
    border-radius: 4px;
    height: 18px;
    flex: 1 1 180px;
    min-width: 0;
}

.cta-link,
.cta-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.cta-link {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.newsletter-card .cta-link {
    background: var(--blue);
    border: 0;
    color: #fff;
    min-width: 110px;
}

.service-banner {
    background: var(--light-lilac);
    padding: 18px 18px 16px;
    min-height: 110px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.service-banner h2 {
    font-size: 21px;
    font-weight: 700;
    color: var(--navy);
    /* same as the CTA arrow/button */
    margin: 0 0 4px;
}

.service-banner p {
    font-size: 12px;
    color: var(--navy);
    /* same color */
    margin: 0;
}

.cta-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    flex: 0 0 auto;
    align-self: flex-end;
}

.mini-card-grid {
    margin-top: 16px;
}

.mini-card {
    min-height: 148px;
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-card.pink {
    background: var(--light-pink);
    color: var(--pink);
}

.mini-card.blue {
    background: var(--light-blue);
    color: var(--blue);
}

.mini-card.lilac {
    background: var(--light-lilac);
    color: var(--navy);
}

.mini-card h2 {
    font-size: 17px;
    line-height: 1.12;
    font-weight: 700;
    margin: 0;
}

.mini-card .cta-circle {
    margin-left: auto;
    width: 26px;
    height: 26px;
    font-size: 13px;
}

.mini-card.pink .cta-circle {
    background: var(--pink);
}

.mini-card.blue .cta-circle {
    background: var(--blue);
}

.mini-card.lilac .cta-circle {
    background: var(--navy);
}

/* .suggestions-section {
  margin-top: 34px;
}

.suggestions-section>h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #111;
}

.suggestions-carousel {
  position: relative;
}

.suggestions-carousel .carousel-inner {
  overflow: visible;
}

.suggestions-carousel .carousel-item {
  padding: 0 44px;
}

.suggestions-carousel {
  position: relative;
}

.suggestions-carousel .carousel-control-next {
  position: absolute;
  width: 58px;
  height: 58px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: #cfeaf7;
  border-radius: 50%;
  box-shadow: none;
  opacity: 1;
  z-index: 3;
}

.suggestions-carousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-image: none;
  position: relative;
}

.suggestions-carousel .carousel-control-next-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-top: 4px solid #39a9e1;
  border-right: 4px solid #39a9e1;
  transform: rotate(45deg);
}

.suggestions-carousel .carousel-control-next-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-top: 4px solid #39a9e1;
  border-right: 4px solid #39a9e1;
  transform: rotate(45deg);
} */

/* .suggestions-carousel .carousel-control-prev {
  position: absolute;
  width: 58px;
  height: 58px;
  top: 50%;
 
  transform: translateY(-50%);
  background: #cfeaf7;
  border-radius: 50%;
  box-shadow: none;
  opacity: 1;
  z-index: 3;
}

.suggestions-carousel .carousel-control-prev-icon {
  width: 20px;
  height: 20px;
  background-image: none;
  position: relative;
}

.suggestions-carousel .carousel-control-prev-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-top: 4px solid #39a9e1;
  border-left: 4px solid #39a9e1;
  transform: rotate(-45deg);
} */

.suggestions-section {
    margin-top: 34px;
    overflow: hidden;
}

.suggestions-carousel {
    position: relative;
    overflow: hidden;
}

.suggestions-carousel .carousel-inner {
    overflow: hidden;
}

.suggestions-carousel .carousel-item {
    padding: 0 44px;
}

.suggestions-carousel .carousel-control-prev,
.suggestions-carousel .carousel-control-next {
    position: absolute;
    width: 58px;
    height: 58px;
    top: 50%;
    transform: translateY(-50%);
    background: #cfeaf7;
    border-radius: 50%;
    box-shadow: none;
    opacity: 1;
    z-index: 3;
}

.suggestions-carousel .carousel-control-prev {
    left: 10px;
}

.suggestions-carousel .carousel-control-next {
    right: 10px;
}

.suggestions-carousel .carousel-control-prev-icon,
.suggestions-carousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-image: none;
    position: relative;
}

.suggestions-carousel .carousel-control-prev-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 13px;
    height: 13px;
    border-top: 4px solid #39a9e1;
    border-left: 4px solid #39a9e1;
    transform: rotate(-45deg);
}

.suggestions-carousel .carousel-control-next-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 13px;
    height: 13px;
    border-top: 4px solid #39a9e1;
    border-right: 4px solid #39a9e1;
    transform: rotate(45deg);
}

.suggestions-carousel .carousel-indicators {
    position: static;
    margin: 18px 0 0;
    gap: 8px;
}

.suggestions-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #d2d2d2;
    opacity: 1;
    margin: 0;
}

.suggestions-carousel .carousel-indicators .active {
    background: var(--blue);
}

.suggestion-card {
    background: #fff;
    padding: 18px;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.suggestion-logo {
    height: 170px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
    position: relative;
}

.suggestion-logo.logo-n {
    font-size: 128px;
    font-weight: 900;
    color: #4da74b;
    background: linear-gradient(180deg, #cfe66a, #289b5a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.suggestion-logo.logo-fox {
    background: #fff;
}

.suggestion-logo.logo-fox::before,
.suggestion-logo.logo-fox::after {
    content: '';
    position: absolute;
    background: #df1111;
}

.suggestion-logo.logo-fox::before {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0, 100% 34%, 72% 100%, 28% 100%, 0 34%);
}

.suggestion-logo.logo-fox::after {
    width: 130px;
    height: 60px;
    bottom: 26px;
    clip-path: polygon(0 0, 100% 0, 72% 100%, 28% 100%);
}

.suggestion-logo.logo-eska {
    font-size: 42px;
    font-weight: 400;
    color: #1f1f1f;
}

.suggestion-logo.logo-eska span {
    color: #6fb8ef;
    font-weight: 700;
}

.suggestion-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.suggestion-card p {
    font-size: 12px;
    line-height: 1.7;
    color: #434343;
    margin-bottom: 12px;
    flex-grow: 1;
}

.suggestion-card .tag-row {
    justify-content: flex-start;
    margin-bottom: 14px;
}

.suggestion-card .outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    height: 36px;
    padding: 0 16px;

    border-radius: 999px;
    border: none;
    background: #f2f2f2;

    color: #243b67;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    box-shadow: none;
}

.suggestion-card .outline-btn::after {
    content: '›';
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.suggestion-card .outline-btn:hover {
    background: #eaeaea;
    color: #243b67;
}

.suggestion-card .outline-btn:hover {
    background: #f7f7f7;
}

.suggestion-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.footer {
    background: var(--navy);
    color: #fff;
    margin-top: 42px;
    padding: 56px 0 40px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 34px;
}

.footer-brand .brand-mark {
    margin: 0 auto 10px;
    background: linear-gradient(145deg, #274f97, #0e2450);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
}

.footer h2,
.footer h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 6px;
}

.social-row {
    text-align: center;
    margin-top: 26px;
}

.social-icons {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons a {
    background: #fff;
    color: var(--navy);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 700;
}

.navbar-toggler {
    border: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(15, 34, 63, 0.08);
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(57, 169, 225, 0.2);
}

.navbar-toggler-icon {
    background-image: none;
    width: 18px;
    height: 2px;
    background: #717171;
    position: relative;
    display: inline-block;
    border-radius: 2px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #717171;
    border-radius: 2px;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

.mobile-promos {
    display: none;
}

.desktop-promos {
    display: block;
    margin-top: 42px;
}

.desktop-promos .row.g-4.align-items-stretch {
    margin-bottom: 16px;
}

.desktop-promos .row.g-4.align-items-stretch > [class*='col-'] {
    display: flex;
    align-items: stretch;
}

.desktop-promos .newsletter-card,
.desktop-promos .service-banner {
    width: 100%;
    height: 100%;
}

/* =========================
   WORDPRESS CONTENT FIXES
========================= */

.text-card ul,
.text-card ol {
    margin: 0 0 1.5rem 0;
    padding-left: 1.8rem;
}

.text-card ul {
    list-style-type: disc;
}

.text-card ol {
    list-style-type: decimal;
}

.text-card li {
    display: list-item;
    margin-bottom: 0.5rem;

    font-size: 12px;
    line-height: 1.72;
    color: #343434;
}

.text-card ul ul {
    list-style-type: circle;
}

.text-card ul ul ul {
    list-style-type: square;
}

@media (max-width: 991.98px) {
    .hero-card {
        max-width: 100%;
    }

    .site-navbar {
        padding: 16px 0 8px;
    }

    .site-navbar .navbar-collapse {
        margin-top: 14px;
        background: #fff;
        border-radius: 18px;
        padding: 14px 18px;
        box-shadow: var(--shadow-soft);
    }

    .navbar .dropdown-menu,
    .navbar .dropdown-menu.narrow,
    .navbar .dropdown-menu.wide {
        min-width: 100%;
        margin-top: 10px;
        border-radius: 18px;
        box-shadow: none;
        padding: 10px 0 0;
        background: transparent;
    }

    .nav-dropdown-toggle::after {
        transform: rotate(90deg);
    }

    .dropdown-item {
        padding: 7px 0;
    }

    .navbar-nav {
        gap: 10px;
    }

    .hero-title {
        font-size: 20px;
    }

    .logo-panel {
        min-height: 180px;
        font-size: 82px;
    }

    .suggestions-section > h2 {
        font-size: 24px;
    }

    .text-card {
        border-radius: 24px;
    }

    .text-card li {
        font-size: 10px;
        line-height: 1.65;
    }
}

@media (max-width: 767.98px) {
    .desktop-promos {
        display: none !important;
    }

    .mobile-promos {
        display: block;
    }

    .container {
        max-width: 92%;
    }

    .site-navbar .navbar-brand {
        font-size: 12px;
    }

    .hero-card {
        padding: 22px 16px 24px;
    }

    .hero-title {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .logo-panel {
        min-height: 124px;
        max-width: 250px;
        font-size: 76px;
        margin-bottom: 16px;
    }

    .logo-accent {
        font-size: 34px;
        top: -13px;
    }

    .founder-box {
        padding: 14px;
        margin-top: 14px;
    }

    .founder-box h2 {
        font-size: 12px;
    }

    .founder-box p {
        font-size: 10px;
        line-height: 1.6;
    }

    .stats-inline {
        gap: 18px;
    }

    .stats-inline div {
        font-size: 8px;
    }

    .outline-btn {
        min-width: 138px;
        height: 32px;
        font-size: 10px;
    }

    .social-mini a,
    .share-icons a,
    .reaction-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .reaction-item {
        font-size: 11px;
    }

    .reaction-note {
        font-size: 8px;
        gap: 12px;
    }

    .mobile-newsletter {
        margin-top: 18px;
    }

    .share-block {
        margin-top: 18px;
    }

    .share-block p {
        font-size: 8px;
    }

    .text-card {
        padding: 18px 16px 16px;
    }

    .text-card h2 {
        font-size: 12px;
    }

    .text-card h3 {
        font-size: 11px;
    }

    .text-card p {
        font-size: 10px;
        line-height: 1.65;
    }

    .newsletter-card,
    .service-banner,
    .mini-card,
    .suggestion-card {
        border-radius: 18px;
    }

    .newsletter-card {
        min-height: 88px;
        padding: 14px 12px 12px;
    }

    .newsletter-card h2 {
        font-size: 12px;
    }

    .newsletter-fields {

        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .newsletter-fields input {

        flex: 1;
        min-width: 0;
    }

    .newsletter-card .cta-link {
        min-width: 98px;
        font-size: 10px;
        padding: 7px 12px;
    }

    .mobile-promos-bottom {
        margin-top: 18px;
    }

    .mobile-promos .mini-card-grid {
        margin-top: 18px;
    }

    .mini-card {
        min-height: 108px;
        padding: 12px 12px 10px;
    }

    .mini-card h2 {
        font-size: 11px;
    }

    .mini-card .cta-circle {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .mobile-promos .service-banner {
        min-height: 74px;
        padding: 14px 12px;
        margin-top: 18px;
    }

    .service-banner h2 {
        font-size: 11px;
    }

    .service-banner p {
        font-size: 9px;
    }

    .suggestions-section {
        margin-top: 26px;
    }

    .suggestions-section > h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    /* .suggestions-carousel .carousel-item {
      padding: 0;
    }

    .suggestions-carousel .carousel-control-next {
      width: 60px;
      height: 60px;
      top: 43%;
      right: -20px;
      transform: translateY(-50%);
      background: #cfeaf7;
      border-radius: 50%;
      opacity: 1;
    }

    .suggestions-carousel .carousel-control-next-icon {
      width: 22px;
      height: 22px;
      background-image: none;
      position: relative;
    }

    .suggestions-carousel .carousel-control-next-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      margin: auto;
      width: 14px;
      height: 14px;
      border-top: 4px solid #39a9e1;
      border-right: 4px solid #39a9e1;
      transform: rotate(45deg);
    } */
    .suggestions-carousel .carousel-item {
        padding: 0 12px;
    }

    /* .suggestions-carousel .carousel-control-prev,
    .suggestions-carousel .carousel-control-next {
      width: 44px;
      height: 44px;
      top: 42%;
    }

    .suggestions-carousel .carousel-control-prev {
      left: 4px;
    }

    .suggestions-carousel .carousel-control-next {
      right: 4px;
    } */
    /* .suggestions-carousel {
      padding-inline: 22px;
    }

    .suggestions-carousel .carousel-item {
      padding: 0 6px;
    }

    .suggestions-carousel .carousel-control-prev,
    .suggestions-carousel .carousel-control-next {
      width: 34px;
      height: 34px;
      top: 42%;
      background: #cfeaf7;
      opacity: 1;
    }

    .suggestions-carousel .carousel-control-prev {
      left: -2px;
    }

    .suggestions-carousel .carousel-control-next {
      right: -2px;
    } */
    .suggestions-carousel {
        padding-inline: 16px;
    }

    .suggestions-carousel .carousel-item {
        padding: 0 10px;
    }

    .suggestions-carousel .carousel-control-prev,
    .suggestions-carousel .carousel-control-next {
        width: 34px;
        height: 34px;
        top: 42%;
        background: #cfeaf7;
        opacity: 1;
    }

    .suggestions-carousel .carousel-control-prev {
        left: 4px;
    }

    .suggestions-carousel .carousel-control-next {
        right: 4px;
    }

    .suggestions-carousel .carousel-control-prev-icon,
    .suggestions-carousel .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }

    .suggestions-carousel .carousel-control-prev-icon::before,
    .suggestions-carousel .carousel-control-next-icon::before {
        width: 9px;
        height: 9px;
        border-width: 3px;
    }


    .suggestions-carousel .carousel-control-prev-icon,
    .suggestions-carousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }

    .suggestions-carousel .carousel-control-prev-icon::before,
    .suggestions-carousel .carousel-control-next-icon::before {
        width: 10px;
        height: 10px;
        border-width: 3px;
    }

    .suggestion-card {
        padding: 14px;
    }

    .suggestion-logo {
        height: 120px;
        margin-bottom: 10px;
    }

    .suggestion-logo.logo-n {
        font-size: 92px;
    }

    .suggestion-logo.logo-eska {
        font-size: 24px;
    }

    .suggestion-card h3 {
        font-size: 13px;
    }

    .suggestion-card p {
        font-size: 10px;
        line-height: 1.55;
    }

    .suggestion-card .tag-row span {
        font-size: 8px;
    }

    .footer {
        padding: 42px 0 30px;
    }

    .footer .row > * {
        margin-bottom: 20px;
    }

    .desktop-only {
        display: none !important;
    }

    .text-card li {
        font-size: 10px;
        line-height: 1.65;
    }
}

.logo-panel img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}