@charset "UTF-8";
.category-landing {
  font-family: "Roboto", sans-serif;
  font-size: 1.0625em;
  line-height: 1.7;
  color: rgba(58, 58, 58, 0.8);
}

.cl-breadcrumb {
  padding: 1.25em 0;
  font-size: 0.85em;
  color: var(--grey);
}
.cl-breadcrumb a {
  color: var(--grey);
  text-decoration: none;
}
.cl-breadcrumb a:hover {
  color: var(--cat-color);
}
.cl-breadcrumb span {
  margin: 0 0.4em;
  opacity: 0.4;
}

section.cl-hero {
  padding: 3em 0;
}
@media screen and (max-width: 767px) {
  section.cl-hero {
    padding: 2.5em 0;
  }
}
section.cl-hero > .container {
  display: flex;
  gap: 4em;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  section.cl-hero > .container {
    flex-direction: column;
    gap: 2.5em;
  }
}

.cl-hero__content {
  flex: 1;
}

.cl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cat-color);
  margin-bottom: 1em;
}

span.cl-hero__badge-dot {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--cat-color);
}

.cl-hero__content h1 {
  font-size: calc(2.75em + 0.6vw);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--dark);
}
.cl-hero__content h1 em {
  font-style: normal;
  color: var(--cat-color);
}
@media (min-width: 1920px) {
  .cl-hero__content h1 {
    font-size: calc(2.75em + 11.52px);
  }
}

p.cl-hero__subtitle {
  font-size: 1.2em;
  color: var(--grey);
  line-height: 1.6;
  max-width: 48em;
  margin-bottom: 1.75em;
}

.cl-hero__ctas {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

.cl-hero__stats {
  flex: 0 0 22em;
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1em;
  padding: 1.75em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 991px) {
  .cl-hero__stats {
    flex: none;
    width: 100%;
  }
}

.cl-hero__stats-title {
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--grey-light);
  margin-bottom: 1.25em;
  padding-bottom: 0.75em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cl-hero__stat-row {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  padding: 0.75em 0;
}
.cl-hero__stat-row + .cl-hero__stat-row {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cl-hero__stat-number {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--cat-color);
  min-width: 2em;
  text-align: center;
  line-height: 1.1;
}

.cl-hero__stat-label {
  font-size: 0.95em;
  line-height: 1.6;
}
.cl-hero__stat-label strong {
  color: var(--dark);
}

.category-landing a.btn-primary,
.category-landing a.btn-secondary {
  display: inline-block;
  padding: 0.9em 1.75em;
  border-radius: 0.5em;
  font-weight: 600;
  font-size: 1.05em;
  text-decoration: none;
  transition: opacity var(--trans), transform var(--trans), box-shadow var(--trans);
}
.category-landing a.btn-primary:hover,
.category-landing a.btn-secondary:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}
.category-landing a.btn-primary {
  background: var(--red);
  color: var(--light);
}
.category-landing a.btn-primary:hover {
  background: var(--red-secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.category-landing a.btn-secondary {
  background: transparent;
  color: var(--grey);
  border: 2px solid var(--grey-light);
}
.category-landing a.btn-secondary:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.cl-intro {
  padding: 1em 0 2.5em;
}
.cl-intro p,
.cl-intro ul,
.cl-intro ol {
  font-size: 1.05em;
  color: var(--grey);
  line-height: 1.8;
  max-width: 48em;
  margin: 0 0 1.25em;
}
.cl-intro h2,
.cl-intro h3 {
  font-size: 1.35em;
  font-weight: 700;
  color: var(--dark);
  margin: 1.5em 0 0.5em;
  line-height: 1.3;
  max-width: 48em;
}

hr.cl-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 1em auto;
  max-width: 1200px;
}

.cl-section-label {
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cat-color);
  margin-bottom: 0.5em;
}

h2.cl-section-title {
  font-size: calc(2em + 0.4vw);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.25em;
  line-height: 1.2;
}
@media (min-width: 1920px) {
  h2.cl-section-title {
    font-size: calc(2em + 7.68px);
  }
}

p.cl-section-desc {
  font-size: 1em;
  color: var(--grey);
  max-width: 48em;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 2em;
}

section.cl-reports {
  padding: 3em 0;
}

.cl-reports__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}
@media screen and (max-width: 991px) {
  .cl-reports__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .cl-reports__grid {
    grid-template-columns: 1fr;
  }
}

a.cl-reports__card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1em;
  padding: 1.75em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
a.cl-reports__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
a.cl-reports__card:hover h3 {
  color: var(--cat-color);
}
a.cl-reports__card:hover .cl-reports__meta {
  color: var(--cat-color);
}
a.cl-reports__card h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.35;
  transition: color var(--trans);
}

.cl-reports__meta {
  margin-top: auto;
  font-size: 0.85em;
  color: var(--grey-light);
  transition: color var(--trans);
}

span.cl-reports__tag {
  display: inline-block;
  padding: 0.3em 0.85em;
  border-radius: 1em;
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
span.cl-reports__tag.tag-report {
  background: color-mix(in srgb, var(--cat-color) 12%, transparent);
  color: var(--cat-color);
}
span.cl-reports__tag.tag-annual {
  background: var(--cat-color);
  color: var(--light);
}

section.cl-annual {
  padding: 3em 0;
}

.cl-annual__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

a.cl-annual__card {
  display: flex;
  gap: 2em;
  padding: 2em;
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1em;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
a.cl-annual__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  a.cl-annual__card {
    flex-direction: column;
    gap: 1.25em;
    padding: 1.5em;
  }
}

.cl-annual__cover {
  flex: 0 0 14em;
  aspect-ratio: 3/4;
  border-radius: 0.5em;
  overflow: hidden;
  background: var(--grey-lighter);
}
.cl-annual__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .cl-annual__cover {
    flex: none;
    width: 60%;
    max-width: 16em;
    align-self: center;
  }
}

.cl-annual__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75em;
}
.cl-annual__body h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}
.cl-annual__body span.cl-reports__tag {
  align-self: flex-start;
}

.cl-annual__meta {
  font-size: 0.9em;
  color: var(--grey-light);
}

.cl-annual__cta {
  margin-top: 0.5em;
  font-size: 0.95em;
  color: var(--cat-color);
  font-weight: 500;
}

section.cl-retail-map {
  padding: 3em 0;
}

.cl-retail-map__inner {
  display: flex;
  align-items: center;
  gap: 2.5em;
  padding: 2em;
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1em;
}
@media screen and (max-width: 767px) {
  .cl-retail-map__inner {
    flex-direction: column;
    gap: 1.5em;
    padding: 1.5em;
  }
}

a.cl-retail-map__map {
  flex: 0 0 25%;
  display: block;
  border-radius: 0.5em;
  overflow: hidden;
  background: var(--grey-lighter);
  transition: transform var(--trans), box-shadow var(--trans);
}
a.cl-retail-map__map img {
  width: 100%;
  height: auto;
  display: block;
}
a.cl-retail-map__map:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  a.cl-retail-map__map {
    flex: none;
    width: 100%;
  }
}

.cl-retail-map__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.cl-retail-map__text h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}
.cl-retail-map__text p.cl-section-desc {
  margin: 0;
}

a.cl-retail-map__cta {
  align-self: flex-start;
  margin-top: 0.25em;
  font-size: 0.95em;
  font-weight: 500;
  color: var(--cat-color);
  text-decoration: none;
}

section.cl-dashboard {
  padding: 3em 0;
  background: var(--grey-lighter, #f9f8f6);
}

.cl-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25em;
}
@media screen and (max-width: 991px) {
  .cl-dashboard__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .cl-dashboard__grid {
    grid-template-columns: 1fr;
  }
}

.cl-dashboard__card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1em;
  padding: 1.75em 1.5em;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
.cl-dashboard__card:hover {
  border-color: var(--cat-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.cl-dashboard__card--locked {
  filter: blur(2px);
  opacity: 0.6;
  pointer-events: none;
}
.cl-dashboard__card h4 {
  font-size: 1.05em;
  font-weight: 600;
  color: var(--dark);
  margin: 0.5em 0 0.35em;
}
.cl-dashboard__card span {
  font-size: 0.85em;
  color: var(--grey-light);
  line-height: 1.5;
}

.cl-dashboard__icon {
  font-size: 2em;
}

section.cl-newsletter {
  padding: 3em 0;
}

.cl-newsletter__card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1em;
  padding: 2.5em 2em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.cl-newsletter__card h2.cl-section-title {
  margin-bottom: 0.25em;
}
.cl-newsletter__card p.cl-section-desc {
  margin-bottom: 1.5em;
}

section.cl-cta-section {
  padding: 5em 0;
}

.cl-cta-banner {
  background: var(--grey);
  color: var(--light);
  border-radius: 1.5em;
  padding: 2.5em;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .cl-cta-banner {
    padding: 2.5em 1.5em;
  }
}
.cl-cta-banner h2 {
  font-size: calc(1.7em + 0.3vw);
  font-weight: 700;
  margin: 0 0 0.5em;
  color: var(--light);
  line-height: 1.2;
}
@media (min-width: 1920px) {
  .cl-cta-banner h2 {
    font-size: calc(1.7em + 5.76px);
  }
}
.cl-cta-banner p {
  max-width: 48em;
  margin: 0 auto 2em;
  opacity: 0.92;
  line-height: 1.7;
}

.cl-cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.category-landing .cl-cta-banner__actions a.btn-primary, .category-landing .cl-cta-banner__actions a.btn-secondary, .cl-cta-banner__actions a.btn-primary, .cl-cta-banner__actions a.btn-secondary {
  min-width: 16em;
  padding: 1em 1.75em;
  font-size: 1.15em;
  line-height: 1.3;
  text-align: center;
}
.category-landing .cl-cta-banner__actions a.btn-primary small, .category-landing .cl-cta-banner__actions a.btn-secondary small, .cl-cta-banner__actions a.btn-primary small, .cl-cta-banner__actions a.btn-secondary small {
  display: block;
  font-size: 0.85em;
  opacity: 0.85;
  font-weight: 400;
  margin-top: 0.2em;
}
.cl-cta-banner__actions a.btn-primary {
  background: var(--red);
  color: var(--light);
  border: 2px solid var(--red);
}
.cl-cta-banner__actions a.btn-primary:hover {
  opacity: 1;
  background: var(--red-secondary);
  border: 2px solid var(--red-secondary);
  color: var(--light);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.cl-cta-banner__actions a.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.cl-cta-banner__actions a.btn-secondary:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 575px) {
  .cl-cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cl-cta-banner__actions a.btn-primary, .cl-cta-banner__actions a.btn-secondary {
    min-width: 0;
  }
}

p.cl-cta-banner__sub {
  font-size: 0.9em;
  max-width: none;
  margin: 0 auto;
  opacity: 0.85;
}
p.cl-cta-banner__sub a {
  color: var(--light);
  text-decoration: underline;
  font-weight: 500;
}
p.cl-cta-banner__sub a:hover {
  text-decoration: none;
}

section.cl-faq {
  padding: 3em 0;
}

.cl-faq__list {
  max-width: 48em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

.cl-faq__item {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1em;
  padding: 0 1.5em;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.cl-faq__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.cl-faq__item.open {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

button.cl-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25em 0;
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 1em;
  font-family: inherit;
}

span.cl-faq__chevron {
  font-size: 0;
  line-height: 1;
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  transition: color var(--trans);
}
span.cl-faq__chevron::before {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.cl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 1em;
  line-height: 1.7;
  color: var(--grey);
}
.cl-faq__answer a {
  color: var(--cat-color);
}

.cl-faq__item.open span.cl-faq__chevron {
  color: var(--cat-color);
}
.cl-faq__item.open span.cl-faq__chevron::before {
  content: "−";
}
.cl-faq__item.open .cl-faq__answer {
  max-height: 30em;
  padding-bottom: 1em;
}

section.cl-related {
  padding: 3em 0 4em;
}

.cl-related__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1.5em;
}

a.cl-related__card {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7em 1.4em;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5em;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
  color: var(--grey);
  opacity: 0.6;
  transition: opacity var(--trans), border-color var(--trans), box-shadow var(--trans);
}
a.cl-related__card:hover {
  opacity: 1;
  border-color: var(--cat-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
a.cl-related__card:hover .cl-related__dot {
  transform: scale(1.3);
}

span.cl-related__dot {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  transition: transform var(--trans);
}

/*# sourceMappingURL=category-landing.css.map */
