/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9em;
}
.breadcrumb li {
  margin-right: 0.6em;
}
.breadcrumb li::after {
  content: '›';
  margin-left: 0.6em;
}
.breadcrumb li:last-child::after {
  content: '';
}
.breadcrumb a {
  text-decoration: none !important;
  border-bottom: none !important;
}

.breadcrumb a:hover {
  text-decoration: underline !important;
}

.sbc-location-sidebar {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
}

.sbc-location-sidebar h3 {
  margin-top: 0;
}

.sbc-location-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sbc-location-sidebar li {
  margin: 0.5rem 0;
}

.sbc-location-sidebar .current-location a {
  font-weight: bold;
  text-decoration: underline;
}

.easy-as-title{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 600;
  opacity: .75;
  margin: 0 0 10px;
}

.easy-as svg{
  display:block;
  width:100%;
  height:auto;
  max-width:420px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.trust-item {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.trust-item span {
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 760px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-cta a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
}

.btn-primary {
  background: #000; /* or brand colour */
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(0,0,0,0.25);
  color: #000;
  background: transparent;
}

@media (max-width: 760px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}


