/*
 * trusti-blog.css
 * Converted from Webflow Trusti demo — blog-2.html
 * Exact fonts, colours, border-radii, and image styles preserved.
 * ---------------------------------------------------------------
 * Design tokens
 * ---------------------------------------------------------------
 */

:root {
  /* Brand colours */
  --red:           #de0000;
  --bright-blue:   #239cff;
  --dark-blue:     #20639a;
  --light-blue:    #cde8ff;

  /* Primitives */
  --white:         #ffffff;
  --neutral-darkest:  #000000;
  --neutral-darker:   #222222;
  --neutral-dark:     #444444;
  --neutral:          #666666;
  --neutral-light:    #aaaaaa;
  --neutral-lighter:  #cccccc;
  --neutral-lightest: #eeeeee;
  --transparent:      transparent;

  /* Radius */
  --radius-small:  0px;
  --radius-medium: 0px;
  --radius-large:  20px;

  /* Border / divider */
  --border-width:   0px;
  --divider-width:  1px;

  /* Typography — system-UI stack (matches Webflow export exactly) */
  --font-body:    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
                  Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
                  Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

  /* Colour scheme 1 (default) */
  --cs1-bg:         var(--white);
  --cs1-text:       var(--neutral-darkest);
  --cs1-foreground: var(--neutral-lightest);
  --cs1-border:     var(--neutral-darkest);
  --cs1-accent:     var(--neutral-darkest);
}

/* ---------------------------------------------------------------
 * Reset / base
 * --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cs1-text);
  background-color: var(--cs1-bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
}

img { max-width: 100%; display: block; }

/* ---------------------------------------------------------------
 * Layout helpers
 * --------------------------------------------------------------- */
.page-wrapper       { position: relative; }
.main-wrapper       { display: block; }

.container-large    { width: 100%; max-width: 80rem; margin-left: auto; margin-right: auto; }
.container-medium   { width: 100%; max-width: 64rem; margin-left: auto; margin-right: auto; }
.container-small    { width: 100%; max-width: 48rem; margin-left: auto; margin-right: auto; }

.max-width-large    { width: 100%; max-width: 48rem; }
.max-width-medium   { width: 100%; max-width: 35rem; }
.max-width-small    { width: 100%; max-width: 30rem; }
.max-width-xlarge   { width: 100%; max-width: 64rem; }
.max-width-xxlarge  { width: 100%; max-width: 80rem; }
.max-width-full     { width: 100%; max-width: none; }

.align-center       { margin-left: auto; margin-right: auto; }

.padding-global     { padding-left: 5%; padding-right: 5%; }

.padding-section-small  { padding-top: 3rem;  padding-bottom: 3rem;  }
.padding-section-medium { padding-top: 5rem;  padding-bottom: 5rem;  }
.padding-section-large  { padding-top: 7rem;  padding-bottom: 7rem;  }

/* Spacing scale — top only / bottom only helpers used via dual classes */
.margin-tiny     { margin: .25rem; }
.margin-xxsmall  { margin: .5rem;  }
.margin-xsmall   { margin: 1rem;   }
.margin-small    { margin: 1.5rem; }
.margin-medium   { margin: 2rem;   }
.margin-large    { margin: 3rem;   }
.margin-xlarge   { margin: 4rem;   }
.margin-xxlarge  { margin: 5rem;   }
.margin-huge     { margin: 6rem;   }
.margin-xhuge    { margin: 7rem;   }
.margin-xxhuge   { margin: 10rem;  }
.margin-0        { margin: 0;      }

.padding-tiny    { padding: .25rem; }
.padding-xxsmall { padding: .5rem;  }
.padding-xsmall  { padding: 1rem;   }
.padding-small   { padding: 1.5rem; }
.padding-medium  { padding: 2rem;   }
.padding-large   { padding: 3rem;   }
.padding-xlarge  { padding: 4rem;   }
.padding-xxlarge { padding: 5rem;   }
.padding-huge    { padding: 6rem;   }
.padding-xhuge   { padding: 7rem;   }
.padding-xxhuge  { padding: 10rem;  }
.padding-0       { padding: 0;      }

/* Directional margin helpers */
.margin-top  { margin-bottom: 0; margin-left: 0; margin-right: 0; }
.margin-top.margin-small { width: 100%; margin-bottom: 0; margin-left: 0; margin-right: 0; }
.margin-top.margin-tiny,
.margin-top.margin-medium,
.margin-top.margin-xxsmall,
.margin-top.margin-xsmall,
.margin-top.margin-large,
.margin-top.margin-xlarge,
.margin-top.margin-xxlarge,
.margin-top.margin-huge,
.margin-top.margin-xhuge,
.margin-top.margin-xxhuge,
.margin-top.margin-0 { margin-bottom: 0; margin-left: 0; margin-right: 0; }

.margin-bottom,
.margin-bottom.margin-xxlarge,
.margin-bottom.margin-medium { margin-top: 0; margin-left: 0; margin-right: 0; }
.margin-bottom.margin-tiny,
.margin-bottom.margin-small,
.margin-bottom.margin-large,
.margin-bottom.margin-xlarge,
.margin-bottom.margin-xhuge,
.margin-bottom.margin-xxhuge,
.margin-bottom.margin-huge,
.margin-bottom.margin-xxsmall,
.margin-bottom.margin-xsmall,
.margin-bottom.margin-0 { margin-top: 0; margin-left: 0; margin-right: 0; }

.padding-top    { padding-bottom: 0; padding-left: 0; padding-right: 0; }
.padding-bottom { padding-top: 0;    padding-left: 0; padding-right: 0; }
.padding-vertical   { padding-left: 0; padding-right: 0; }
.padding-horizontal { padding-top: 0;  padding-bottom: 0; }

/* ---------------------------------------------------------------
 * Typography
 * --------------------------------------------------------------- */
.heading-style-h1 { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; line-height: 1.2; }
.heading-style-h2 { font-family: var(--font-heading); font-size: 3rem;   font-weight: 700; line-height: 1.2; }
.heading-style-h3 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1.3; }
.heading-style-h4 { font-family: var(--font-heading); font-size: 2rem;   font-weight: 700; line-height: 1.3; }
.heading-style-h5 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; line-height: 1.4; }
.heading-style-h6 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; line-height: 1.4; }

.text-size-tiny    { font-size: .75rem;   }
.text-size-small   { font-size: .875rem;  }
.text-size-regular { font-size: 1rem;     }
.text-size-medium  { font-size: 1.125rem; }
.text-size-large   { font-size: 1.25rem;  }

.text-weight-normal  { font-weight: 400; }
.text-weight-medium  { font-weight: 500; }
.text-weight-semibold { font-weight: 600; }
.text-weight-bold    { font-weight: 700; }

.text-align-center   { text-align: center; }
.text-color-white    { color: var(--white); }
.white-text          { color: var(--white); }

.text-style-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ---------------------------------------------------------------
 * Buttons
 * --------------------------------------------------------------- */
.button {
  border: 2px solid var(--red);
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.button:hover {
  border-color: var(--bright-blue);
  background-color: var(--bright-blue);
  color: var(--cs1-bg);
}
.button.is-small   { padding: .5rem 1.25rem; }
.button.jumbo      { font-size: 2rem; }

.button.is-alternate {
  border-color: var(--neutral-lighter);
  background-color: var(--neutral-lighter);
  color: var(--dark-blue);
}
.button.is-alternate:hover {
  border-color: var(--cs1-bg);
  background-color: var(--white);
  color: var(--dark-blue);
}

.button.is-secondary {
  border-color: var(--neutral-lighter);
  background-color: var(--transparent);
  color: var(--neutral-darkest);
}

.button.is-link {
  background-color: var(--transparent);
  color: var(--neutral-darkest);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}
.button.is-link:hover { text-decoration: underline; }
.button.is-link.is-alternate { color: var(--white); background-color: var(--transparent); }

.button.is-link.is-icon,
.button.is-icon {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.button.is-link.is-icon.white-text { color: var(--white); }

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.button-group.is-center { justify-content: center; }
.button-group.is-right  { justify-content: flex-end; }

/* ---------------------------------------------------------------
 * Icons
 * --------------------------------------------------------------- */
.icon-embed-xxsmall { display: flex; align-items: center; justify-content: center; width: 1rem;  height: 1rem;  }
.icon-embed-xsmall  { display: flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; }
.icon-embed-small   { display: flex; align-items: center; justify-content: center; width: 2rem;  height: 2rem;  }
.icon-embed-medium  { display: flex; align-items: center; justify-content: center; width: 3rem;  height: 3rem;  }
.icon-embed-large   { display: flex; align-items: center; justify-content: center; width: 4rem;  height: 4rem;  }

/* ---------------------------------------------------------------
 * Tag / badge
 * --------------------------------------------------------------- */
.tag {
  border: 1px solid var(--neutral-lightest);
  background-color: var(--white);
  color: var(--neutral-darkest);
  justify-content: center;
  align-items: center;
  padding: .175rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  gap: .5rem;
}
.tag.red  { background-color: var(--red);       color: var(--white); border-radius: 12px; }
.tag.blue { background-color: var(--dark-blue);  color: var(--white); border-radius: 12px; }

/* ---------------------------------------------------------------
 * Category filter menu
 * --------------------------------------------------------------- */
.category-filter-menu {
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.category-filter-menu.no-scrollbar {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.category-filter-menu.no-scrollbar::-webkit-scrollbar { display: none; }

.category-filter-link {
  border: 1px solid transparent;
  background-color: var(--white);
  white-space: nowrap;
  flex: none;
  padding: .5rem 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.category-filter-link.w--current {
  border-color: var(--cs1-border);
  background-color: var(--cs1-foreground);
}

/* ---------------------------------------------------------------
 * NAVBAR
 * --------------------------------------------------------------- */
.navbar1_component {
  background-color: var(--light-blue);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding: 16px 5%;
  display: flex;
  position: relative;
  z-index: 100;
}
.navbar1_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.navbar1_logo-link { width: 220px; padding-left: 0; display: block; }
.navbar1_logo      { width: 100%; height: auto; }

.navbar1_menu {
  align-items: center;
  display: flex;
  gap: 0;
}
.navbar1_menu-links {
  display: flex;
  align-items: center;
  color: var(--cs1-text);
}
.navbar1_menu-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

.navbar1_link {
  margin-left: 1rem;
  margin-right: 1rem;
  padding: .5rem 0;
  text-decoration: none;
}
.navbar1_link:hover {
  border-bottom: 1px solid var(--cs1-text);
  background-color: transparent;
  color: var(--cs1-text);
  border-radius: 0;
}
.navbar1_link.w--current { color: var(--light-blue); }

/* Dropdown */
.navbar1_menu-dropdown {
  position: relative;
  display: inline-block;
}
.navbar1_dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: .5rem 0;
  cursor: pointer;
  user-select: none;
}
.navbar1_dropdown-toggle:hover {
  border-bottom: 1px solid var(--cs1-text);
}
.dropdown-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  transition: transform .2s;
}
.navbar1_menu-dropdown.is-open .dropdown-chevron { transform: rotate(180deg); }

.navbar1_dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--light-blue);
  border-radius: var(--radius-small);
  padding: .5rem;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  flex-direction: column;
}
.navbar1_menu-dropdown.is-open .navbar1_dropdown-list { display: flex; }

.navbar1_dropdown-link {
  display: block;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: .5rem 0;
  text-decoration: none;
  white-space: nowrap;
}
.navbar1_dropdown-link:hover {
  border-bottom: 1px solid var(--cs1-text);
  background-color: transparent;
}

/* Hamburger (mobile) */
.navbar1_menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-icon1 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.menu-icon1_line-top,
.menu-icon1_line-middle,
.menu-icon1_line-bottom {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--neutral-darkest);
  transition: transform .3s, opacity .3s;
}
.menu-icon1_line-middle { position: relative; }
.menu-icon1_line-middle-inner {
  position: absolute;
  inset: 0;
  background-color: var(--neutral-darkest);
}

/* ---------------------------------------------------------------
 * BLOG HEADER — Featured List
 * --------------------------------------------------------------- */
.section_blog_featured-blog-list-header {
  background-color: var(--neutral-lightest);
  background-image: linear-gradient(311deg, rgba(238,238,238,0), #fff),
                    url('../images/usa-map-bg.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
}

.blog_featured-blog-list-header_component { width: 100%; }

/* Featured post (large) */
.blog_featured-blog-list-header_featured-list-wrapper { width: 100%; }
.blog_featured-blog-list-header_featured-list         { width: 100%; }

.blog_featured-blog-list-header_featured-item {
  border: var(--border-width) solid var(--cs1-border);
  border-radius: var(--radius-large);      /* 20px rounded corners */
  background-color: var(--white);
  display: flex;
  overflow: hidden;
}

.blog_featured-blog-list-header_featured-item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
}

/* Featured image: 8:6 aspect ratio */
.blog_featured-blog-list-header_featured-image-wrapper {
  width: 100%;
  overflow: hidden;
}
.blog_featured-blog-list-header_featured-image {
  aspect-ratio: 8 / 6;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.blog_featured-blog-list-header_featured-item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  height: 100%;
  padding: 3rem;
}

/* Grid cards (4-up) */
.blog_featured-blog-list-header_list-wrapper { width: 100%; }

.blog_featured-blog-list-header_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 4rem;
}

.blog_featured-blog-list-header_item {
  border: var(--border-width) solid var(--cs1-border);
  border-radius: var(--radius-large);      /* 20px rounded corners */
  background-color: var(--white);
  overflow: hidden;
}

.blog_featured-blog-list-header_item-link {
  width: 100%;
  text-decoration: none;
  display: block;
}

/* Card image: 16:9 aspect ratio */
.blog_featured-blog-list-header_image-wrapper {
  width: 100%;
  overflow: hidden;
}
.blog_featured-blog-list-header_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.blog_featured-blog-list-header_item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
}

.blog_featured-blog-list-header_meta-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* "Read more" load button */
.comments-buttons-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------------------------------------------------------------
 * BLOG TESTIMONIALS
 * --------------------------------------------------------------- */
.section_blog_testimonial {
  background-color: var(--light-blue);
}

.blog_testimonial_component { width: 100%; }

.blog_testimonial_grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: stretch;
}

.blog_testimonial_card {
  border: var(--border-width) solid var(--cs1-border);
  border-radius: var(--radius-medium);     /* 0px — flat cards */
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  overflow: hidden;
}

.blog_testimonial_rating-wrapper { display: flex; }
.blog_testimonial_rating-icon {
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .25rem;
}

.blog_testimonial_client {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.blog_testimonial_client-image-wrapper {
  border-radius: 100%;       /* circular avatar */
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  flex-shrink: 0;
}
.blog_testimonial_customer-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------------------------
 * NEWSLETTER + CTA
 * --------------------------------------------------------------- */
.blog_newsletter_component { width: 100%; }

.blog_newsletter_card {
  border-radius: var(--radius-large);      /* 20px rounded corners */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.blog_newsletter_card-content {
  z-index: 1;
  position: relative;
  width: 100%;
}

.blog_newsletter_background-image-wrapper {
  z-index: 0;
  position: absolute;
  inset: 0;
}
.cta53_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.image-overlay-layer-2 {
  z-index: 1;
  background-color: rgba(0,0,0,.5);
  position: absolute;
  inset: 0;
}

.blog_newsletter_form-block {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.signup-form-wrapper {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form_input,
.form_input.is-alternate {
  border: 1px solid var(--neutral-lighter);
  background-color: var(--white);
  color: var(--neutral-darkest);
  border-radius: var(--radius-small);
  flex: 1;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.form_input:focus { border-color: var(--bright-blue); }

.form_message-success {
  color: #027a48;
  background-color: #ecfdf3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  margin-top: 1rem;
}
.form_message-error {
  color: #b42318;
  background-color: #fef3f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin-top: 1rem;
}
.success-text { font-weight: 600; }
.error-text   { color: #e23939;   }

/* ---------------------------------------------------------------
 * JOIN TRUSTI CTA (dark blue section)
 * --------------------------------------------------------------- */
.section_home_cta { position: relative; }
.section_home_cta.dark-blue-bg {
  background-color: var(--dark-blue);
  background-image: linear-gradient(90deg, rgba(32,99,154,.94), #20639a),
                    url('../images/trusticon.png');
  background-position: 0 0, 50% 75%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  color: var(--white);
}

.home_cta_component { width: 100%; }

.max-width-large.align-center.white-text { color: var(--cs1-bg); }

/* ---------------------------------------------------------------
 * FOOTER
 * --------------------------------------------------------------- */
.footer3_component { background-color: var(--white); }

.footer3_top-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4vw;
  align-items: start;
}
.footer3_left-wrapper { display: flex; flex-direction: column; }

.footer3_logo-link { width: auto; height: auto; display: block; }
.footer3_logo      { width: 220px; height: auto; }

.footer3_details-wrapper { display: flex; flex-direction: column; }
.footer-flex-div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer3_social-list {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.footer3_social-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  transition: opacity .2s;
}
.footer3_social-link:hover { opacity: .7; }

.footer3_menu-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 1rem;
  align-items: start;
}

.footer3_link-list {
  display: flex;
  flex-direction: column;
}
.footer-heading {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0;
}
.footer3_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}
.footer3_link:hover { text-decoration: underline; }
.footer3_link.w--current { text-decoration: underline; }

.divider-horizontal {
  height: var(--divider-width);
  background-color: var(--cs1-border);
  width: 100%;
}

.footer3_bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer3_credit-text { font-size: .875rem; }
.footer3_legal-list  {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer3_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

/* ---------------------------------------------------------------
 * Misc utilities
 * --------------------------------------------------------------- */
.divider-horizontal { height: 1px; background-color: var(--cs1-border); width: 100%; }
.display-inlineflex { display: inline-flex; }
.overflow-hidden    { overflow: hidden; }
.no-scrollbar       { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ---------------------------------------------------------------
 * RESPONSIVE — Tablet (≤991px)
 * --------------------------------------------------------------- */
@media screen and (max-width: 991px) {
  .heading-style-h1 { font-size: 3rem; }
  .heading-style-h2 { font-size: 2.5rem; }

  .navbar1_component { min-height: 4rem; }
  .navbar1_logo-link { padding-left: 0; }

  /* Show hamburger, hide desktop menu */
  .navbar1_menu-button { display: block; }
  .navbar1_menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--light-blue);
    padding: 1rem 5%;
    z-index: 150;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .navbar1_menu.is-open { display: flex; }
  .navbar1_menu-links   { flex-direction: column; align-items: flex-start; width: 100%; }
  .navbar1_menu-buttons { flex-direction: row; margin-left: 0; margin-top: 1rem; }

  .navbar1_dropdown-list { position: static; box-shadow: none; padding-left: 1rem; }

  /* Blog featured: stacked on tablet */
  .blog_featured-blog-list-header_featured-item-content { padding: 2rem; }
  .blog_featured-blog-list-header_list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .blog_testimonial_grid-list { grid-template-columns: 1fr 1fr; }
  .blog_newsletter_card { padding: 3rem; }

  .footer3_top-wrapper    { grid-template-columns: 1fr; gap: 3rem; }
  .footer3_menu-wrapper   { grid-template-columns: 1fr 1fr; }
  .footer3_bottom-wrapper { flex-direction: column; align-items: flex-start; }

  .padding-section-large { padding-top: 5rem; padding-bottom: 5rem; }
}

/* ---------------------------------------------------------------
 * RESPONSIVE — Mobile landscape (≤767px)
 * --------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .heading-style-h1 { font-size: 2.5rem; }
  .heading-style-h2 { font-size: 2rem; }

  /* Featured item stacks vertically */
  .blog_featured-blog-list-header_featured-item-wrapper {
    grid-template-columns: 1fr;
  }
  .blog_featured-blog-list-header_featured-item-content { padding: 1.5rem; }

  /* Grid goes single column */
  .blog_featured-blog-list-header_list {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }

  .blog_testimonial_grid-list  { grid-template-columns: 1fr; }
  .blog_testimonial_client     { flex-direction: column; align-items: flex-start; }
  .blog_testimonial_card       { padding: 1.5rem; }

  .blog_newsletter_card { padding: 2rem; }

  .category-filter-menu {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: .5rem;
  }

  .footer3_menu-wrapper { grid-template-columns: 1fr; }
  .footer3_legal-list   { flex-direction: column; gap: .75rem; }

  .padding-section-large  { padding-top: 4rem; padding-bottom: 4rem; }
  .padding-section-medium { padding-top: 3rem; padding-bottom: 3rem; }
}

/* ---------------------------------------------------------------
 * RESPONSIVE — Mobile portrait (≤479px)
 * --------------------------------------------------------------- */
@media screen and (max-width: 479px) {
  .heading-style-h1 { font-size: 2rem; }
  .heading-style-h2 { font-size: 1.75rem; }

  .signup-form-wrapper {
    flex-direction: column;
    gap: .75rem;
  }

  .blog_featured-blog-list-header_item-content,
  .blog_featured-blog-list-header_featured-item-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .comments-buttons-div { flex-direction: column; align-items: stretch; }
  .blog_newsletter_card { padding: 1.5rem; }

  .button.jumbo { font-size: 1.5rem; }

  .padding-section-large  { padding-top: 3rem; padding-bottom: 3rem; }
  .footer3_bottom-wrapper { flex-direction: column; gap: .75rem; }
}

/* ---------------------------------------------------------------
 * ELEMENTOR WIDGET STYLES
 * These styles power the HTML widgets in the Elementor template
 * --------------------------------------------------------------- */

/* ── Featured blog card ──────────────────────────────────────── */
.trusti-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 5rem;
}
.trusti-featured-card__image { width: 100%; overflow: hidden; }
.trusti-featured-card__image img {
  aspect-ratio: 8 / 6;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.trusti-featured-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
}
.trusti-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.trusti-featured-card__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
}
.trusti-featured-card__excerpt {
  font-size: 1rem;
  margin: 0 0 1.5rem;
}

/* ── Category filter ─────────────────────────────────────────── */
.trusti-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 4rem;
}
.trusti-category-filter__link {
  border: 1px solid transparent;
  background-color: #fff;
  white-space: nowrap;
  padding: .5rem 1rem;
  text-decoration: none;
  color: #000;
  font-size: .875rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.trusti-category-filter__link--active,
.trusti-category-filter__link:hover {
  border-color: #000;
  background-color: #eee;
}

/* ── Blog grid cards ─────────────────────────────────────────── */
.trusti-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 4rem;
}
.trusti-blog-card {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.trusti-blog-card__image { width: 100%; overflow: hidden; }
.trusti-blog-card__image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.trusti-blog-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}
.trusti-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}
.trusti-blog-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 .75rem;
}
.trusti-blog-card__excerpt {
  font-size: 1rem;
  margin: 0 0 1.25rem;
}

/* ── Shared tag + read-time ──────────────────────────────────── */
.trusti-tag {
  border: 1px solid #eee;
  background: #fff;
  color: #000;
  padding: .175rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.trusti-read-time {
  font-size: .875rem;
  font-weight: 600;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.trusti-btn {
  display: inline-block;
  border: 2px solid #de0000;
  background-color: #de0000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.trusti-btn:hover {
  background-color: #239cff;
  border-color: #239cff;
  color: #fff;
}
.trusti-btn--alt {
  border-color: #ccc;
  background-color: #ccc;
  color: #20639a;
}
.trusti-btn--alt:hover {
  background-color: #fff;
  border-color: #fff;
  color: #20639a;
}
.trusti-btn--jumbo { font-size: 2rem; padding: 1rem 2.5rem; }

.trusti-btn-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  background: none;
  border: none;
  padding: .25rem 0;
  cursor: pointer;
}
.trusti-btn-link:hover { text-decoration: underline; }

/* ── Testimonials ────────────────────────────────────────────── */
.trusti-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.trusti-testi-card {
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.trusti-testi-stars {
  color: #de0000;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.trusti-testi-quote {
  font-size: 1.125rem;
  margin: 0 0 1.5rem;
  flex: 1;
}
.trusti-testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trusti-testi-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.trusti-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Newsletter card ─────────────────────────────────────────── */
.trusti-newsletter-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  min-height: 300px;
  color: #fff;
}
.trusti-newsletter-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.trusti-newsletter-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1;
}
.trusti-newsletter-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 48rem;
  width: 100%;
}
.trusti-newsletter-card__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #fff;
}
.trusti-newsletter-card__subtitle {
  font-size: 1.125rem;
  margin: 0 0 2rem;
  color: #fff;
}
.trusti-newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 30rem;
  margin: 0 auto 1rem;
  justify-content: center;
}
.trusti-newsletter-input {
  flex: 1;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  padding: .75rem 1rem;
  font-size: 1rem;
  outline: none;
  border-radius: 0;
}
.trusti-newsletter-terms {
  font-size: .75rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .trusti-testi-grid { grid-template-columns: 1fr 1fr; }
  .trusti-blog-grid  { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
}

@media (max-width: 767px) {
  .trusti-featured-card         { grid-template-columns: 1fr; }
  .trusti-featured-card__content { padding: 1.5rem; }
  .trusti-blog-grid             { grid-template-columns: 1fr; row-gap: 3rem; }
  .trusti-testi-grid            { grid-template-columns: 1fr; }
  .trusti-newsletter-card       { padding: 2rem; }
  .trusti-newsletter-form       { flex-direction: column; }
  .trusti-newsletter-card__title { font-size: 2rem; }
  .trusti-btn--jumbo            { font-size: 1.5rem; }
}

@media (max-width: 479px) {
  .trusti-featured-card__title  { font-size: 1.5rem; }
  .trusti-newsletter-card       { padding: 1.5rem; }
}
