.psw-page-slider-wrapper {
  width: 100%;
  --psw-overlay-opacity: 0;
  --psw-overlay-hover-opacity: 0.55;
  --psw-overlay-bg: #111111;
  --psw-overlay-duration: 400ms;
  --psw-hover-scale: 1.06;
}

.psw-page-slider-wrapper .swiper {
  width: 100%;
  overflow: hidden;
}

.psw-page-slider-wrapper .swiper-slide {
  height: auto;
}

.psw-slide-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.psw-image-wrap,
.psw-image-link,
.psw-image {
  display: block;
  width: 100%;
}

.psw-image-link {
  color: inherit;
  text-decoration: none;
}

.psw-image {
  position: relative;
  overflow: hidden;
}

.psw-image img,
.psw-image > img,
.psw-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--psw-overlay-duration) ease-in-out;
}

.psw-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  flex: 1 1 auto;
  min-height: 0;
}

.psw-layout-overlay .psw-slide-inner {
  position: relative;
}

.psw-layout-overlay .psw-slide-inner.psw-no-image .psw-content {
  position: relative;
}

.psw-layout-overlay .psw-slide-inner.psw-no-image {
  min-height: 100%;
}


.psw-layout-overlay .psw-image-wrap {
  position: relative;
}

.psw-layout-overlay .psw-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.psw-layout-overlay .psw-content > * {
  pointer-events: auto;
}

.psw-layout-overlay .psw-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--psw-overlay-bg);
  opacity: 0;
  transition: opacity var(--psw-overlay-duration) ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.psw-layout-overlay.psw-overlay-enabled .psw-image::after {
  opacity: var(--psw-overlay-opacity);
}

.psw-layout-overlay.psw-overlay-enabled .psw-slide-inner:hover .psw-image::after,
.psw-layout-overlay.psw-overlay-enabled .psw-slide-inner:focus-within .psw-image::after,
.psw-layout-overlay.psw-overlay-enabled .psw-slide-inner.psw-mobile-active .psw-image::after {
  opacity: var(--psw-overlay-hover-opacity);
}

.psw-layout-overlay.psw-overlay-disabled .psw-image::after {
  opacity: 0 !important;
}

.psw-layout-overlay.psw-has-image-zoom .psw-slide-inner:hover .psw-image img,
.psw-layout-overlay.psw-has-image-zoom .psw-slide-inner:focus-within .psw-image img,
.psw-layout-overlay.psw-has-image-zoom .psw-slide-inner.psw-mobile-active .psw-image img {
  transform: scale(var(--psw-hover-scale));
}

.psw-title,
.psw-excerpt {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.psw-title a,
.psw-excerpt a,
.psw-button,
.psw-button:visited,
.psw-button:hover,
.psw-button:focus,
.psw-button:active {
  color: inherit;
}

.psw-title a,
.psw-excerpt a {
  text-decoration: none !important;
}

.psw-title.psw-has-underline,
.psw-title.psw-has-underline a,
.psw-title.psw-has-underline a:visited,
.psw-title.psw-has-underline a:hover,
.psw-title.psw-has-underline a:focus,
.psw-title.psw-has-underline a:active,
.psw-excerpt.psw-has-underline,
.psw-excerpt.psw-has-underline a,
.psw-excerpt.psw-has-underline a:visited,
.psw-excerpt.psw-has-underline a:hover,
.psw-excerpt.psw-has-underline a:focus,
.psw-excerpt.psw-has-underline a:active {
  text-decoration: underline !important;
}

.psw-button-wrap {
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}

.psw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.psw-button,
.psw-button:visited,
.psw-button:hover,
.psw-button:focus,
.psw-button:active {
  text-decoration: none !important;
}

.psw-button.psw-button-underline,
.psw-button.psw-button-underline:visited,
.psw-button.psw-button-underline:hover,
.psw-button.psw-button-underline:focus,
.psw-button.psw-button-underline:active {
  text-decoration: underline !important;
}

.psw-pagination {
  position: static;
  margin-top: 22px;
  text-align: center;
}

.psw-hide-dots .psw-pagination {
  display: none;
}

.psw-empty {
  padding: 16px;
  border: 1px dashed #c3c7d0;
  color: #6b7280;
}

.psw-layout-overlay .psw-hover-anim {
  transition:
    opacity var(--psw-overlay-duration) ease-in-out,
    transform var(--psw-overlay-duration) ease-in-out,
    visibility var(--psw-overlay-duration) ease-in-out;
  will-change: opacity, transform;
}

.psw-layout-overlay .psw-visible-always {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.psw-layout-overlay .psw-visible-default {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.psw-layout-overlay .psw-visible-hover,
.psw-layout-overlay .psw-visible-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.psw-layout-overlay.psw-anim-fade .psw-visible-hover,
.psw-layout-overlay.psw-anim-fade .psw-visible-hidden,
.psw-layout-overlay.psw-anim-fade .psw-visible-default {
  transform: none;
}

.psw-layout-overlay.psw-anim-fade_up .psw-visible-hover,
.psw-layout-overlay.psw-anim-fade_up .psw-visible-hidden,
.psw-layout-overlay.psw-anim-fade_up .psw-visible-default {
  transform: translateY(14px);
}

.psw-layout-overlay.psw-anim-zoom_fade .psw-visible-hover,
.psw-layout-overlay.psw-anim-zoom_fade .psw-visible-hidden,
.psw-layout-overlay.psw-anim-zoom_fade .psw-visible-default {
  transform: scale(0.96);
  transform-origin: center bottom;
}

.psw-layout-overlay .psw-slide-inner:hover .psw-visible-hover,
.psw-layout-overlay .psw-slide-inner:focus-within .psw-visible-hover,
.psw-layout-overlay .psw-slide-inner.psw-mobile-active .psw-visible-hover {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.psw-layout-overlay .psw-slide-inner:hover .psw-visible-default,
.psw-layout-overlay .psw-slide-inner:focus-within .psw-visible-default,
.psw-layout-overlay .psw-slide-inner.psw-mobile-active .psw-visible-default {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.psw-layout-overlay.psw-mobile-always_visible .psw-visible-hover,
.psw-layout-overlay.psw-mobile-always_visible .psw-visible-default,
.psw-layout-overlay.psw-mobile-always_visible .psw-visible-always,
.psw-layout-overlay.psw-mobile-always_visible .psw-visible-hidden {
  transition-duration: var(--psw-overlay-duration);
}

@media (max-width: 767px) {
  .psw-layout-overlay.psw-mobile-always_visible .psw-visible-hover,
  .psw-layout-overlay.psw-mobile-always_visible .psw-visible-default,
  .psw-layout-overlay.psw-mobile-always_visible .psw-visible-always,
  .psw-layout-overlay.psw-mobile-always_visible .psw-visible-hidden {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .psw-layout-overlay.psw-mobile-always_visible.psw-overlay-enabled .psw-image::after {
    opacity: var(--psw-overlay-hover-opacity);
  }

  .psw-layout-overlay.psw-mobile-always_visible.psw-has-image-zoom .psw-image img {
    transform: scale(var(--psw-hover-scale));
  }
}

/* Active slide button state */
.psw-page-slider-wrapper .psw-button {
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.psw-page-slider-wrapper .psw-button:hover,
.psw-page-slider-wrapper .psw-button:focus {
  filter: brightness(0.96);
}


/* INFRA screenshot-matched default card design */
.psw-page-slider-wrapper.psw-layout-card.psw-width-boxed {
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
}

.psw-page-slider-wrapper.psw-layout-card .psw-swiper {
  width: 100%;
}

.psw-page-slider-wrapper.psw-layout-card .swiper-wrapper {
  align-items: stretch;
}

.psw-page-slider-wrapper.psw-layout-card .swiper-slide {
  height: auto;
}

.psw-page-slider-wrapper.psw-layout-card .psw-slide-inner {
  height: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.psw-page-slider-wrapper.psw-layout-card .psw-image-wrap {
  margin: 0;
  padding: 0;
}

.psw-page-slider-wrapper.psw-layout-card .psw-image,
.psw-page-slider-wrapper.psw-layout-card .psw-image-link,
.psw-page-slider-wrapper.psw-layout-card .psw-image img {
  border-radius: 24px;
}

.psw-page-slider-wrapper.psw-layout-card .psw-image {
  height: 278px;
  overflow: hidden;
}

.psw-page-slider-wrapper.psw-layout-card .psw-image img {
  object-fit: cover;
  object-position: center center;
}

.psw-page-slider-wrapper.psw-layout-card .psw-content {
  min-height: 220px;
  padding: 24px 0 0;
  gap: 0;
  display: flex;
  flex-direction: column;
}

.psw-page-slider-wrapper.psw-layout-card .psw-title,
.psw-page-slider-wrapper.psw-layout-card .psw-title a {
  color: #1F93A4;
  font-family: "Myriad Pro", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none !important;
}

.psw-page-slider-wrapper.psw-layout-card .psw-title {
  min-height: 50px;
  margin: 0 0 15px;
}

.psw-page-slider-wrapper.psw-layout-card .psw-excerpt,
.psw-page-slider-wrapper.psw-layout-card .psw-excerpt a {
  color: #2d2d2d;
  font-family: "Myriad Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 3.2px;
  text-decoration: none !important;
}

.psw-page-slider-wrapper.psw-layout-card .psw-excerpt {
  min-height: 58px;
  margin: 0 0 25px;
  max-width: 470px;
}

.psw-page-slider-wrapper.psw-layout-card .psw-button-wrap {
  width: 100%;
  margin-top: auto;
  text-align: left;
}

.psw-page-slider-wrapper.psw-layout-card .psw-button,
.psw-page-slider-wrapper.psw-layout-card .psw-button:visited {
  min-width: 138px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #213B4D;
  border-radius: 4px;
  background: #FFFFFF;
  color: #2d2d2d;
  font-family: "Myriad Pro", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  box-sizing: border-box;
}

.psw-page-slider-wrapper.psw-layout-card .psw-button:hover,
.psw-page-slider-wrapper.psw-layout-card .psw-button:focus,
.psw-page-slider-wrapper.psw-layout-card .psw-button:active {
  background: #213B4D;
  border-color: #213B4D;
  color: #FFFFFF;
  filter: none;
}

.psw-page-slider-wrapper.psw-layout-card .psw-pagination {
  margin-top: 82px;
  line-height: 1;
}

.psw-page-slider-wrapper.psw-layout-card .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 3px !important;
  background: transparent;
  border: 1px solid #777777;
  opacity: 1;
  box-sizing: border-box;
}

.psw-page-slider-wrapper.psw-layout-card .swiper-pagination-bullet-active {
  background: #777777;
  border-color: #777777;
}

@media (max-width: 1700px) {
  .psw-page-slider-wrapper.psw-layout-card.psw-width-boxed {
    max-width: calc(100% - 80px);
  }
}

@media (max-width: 767px) {
  .psw-page-slider-wrapper.psw-layout-card.psw-width-boxed {
    max-width: calc(100% - 32px);
  }

  .psw-page-slider-wrapper.psw-layout-card .psw-image {
    height: 240px;
  }

  .psw-page-slider-wrapper.psw-layout-card .psw-title {
    min-height: 0;
  }

  .psw-page-slider-wrapper.psw-layout-card .psw-content {
    min-height: 0;
  }
}

/* Optional news date, view-all button and bottom navigation */
.psw-page-slider-wrapper.psw-layout-card .psw-date-all {
  color: #7c7c7c;
  font-family: "Myriad Pro", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  margin: -8px 0 28px;
}

.psw-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 34px;
}

.psw-bottom-spacer {
  display: block;
  min-width: 1px;
  min-height: 1px;
}

.psw-view-all-button,
.psw-view-all-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #213B4D;
  border-radius: 4px;
  background: #213B4D;
  color: #FFFFFF;
  font-family: "Myriad Pro", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.psw-view-all-button:hover,
.psw-view-all-button:focus,
.psw-view-all-button:active {
  background: #FFFFFF;
  color: #213B4D;
  border-color: #213B4D;
  text-decoration: none !important;
}

.psw-navigation-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.psw-navigation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #bfc3c7;
  border-radius: 50%;
  background: #FFFFFF;
  color: #5E5E5E;
  font-family: Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

.psw-navigation-button:hover,
.psw-navigation-button:focus {
  background: #213B4D;
  border-color: #213B4D;
  color: #FFFFFF;
}

.psw-navigation-button.swiper-button-disabled {
  opacity: .45;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .psw-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .psw-navigation-icons {
    margin-left: 0;
  }
}

.psw-navigation-button .psw-navigation-custom-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  pointer-events: none;
}

.psw-navigation-button .psw-navigation-default-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  pointer-events: none;
}

/* INFRA default card design (matches default Elementor widget view) */
.psw-page-slider-wrapper.psw-layout-card {
  --psw-infra-primary: #213B4D;
  --psw-infra-accent: #1F93A4;
  --psw-infra-text: #5E5E5E;
  --psw-infra-white: #FFFFFF;
}

.psw-page-slider-wrapper.psw-layout-card .psw-slide-inner {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.psw-page-slider-wrapper.psw-layout-card .psw-image {
  height: 276px;
  border-radius: 24px;
  overflow: hidden;
  background: #EAF2F5;
}

.psw-page-slider-wrapper.psw-layout-card .psw-image img,
.psw-page-slider-wrapper.psw-layout-card .psw-image > img,
.psw-page-slider-wrapper.psw-layout-card .psw-image-link img {
  border-radius: 24px;
  object-fit: cover;
}

.psw-page-slider-wrapper.psw-layout-card .psw-content {
  padding: 24px 0 0;
  gap: 0;
  align-items: flex-start;
}

.psw-page-slider-wrapper.psw-layout-card .psw-title {
  color: var(--psw-infra-accent);
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 22px;
  max-width: 470px;
}

.psw-page-slider-wrapper.psw-layout-card .psw-title a {
  color: inherit;
  text-decoration: none !important;
}

.psw-page-slider-wrapper.psw-layout-card .psw-excerpt {
  color: #2f2f2f;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 3px;
  text-transform: capitalize;
  margin: 0 0 28px;
  max-width: 470px;
}

.psw-page-slider-wrapper.psw-layout-card .psw-button-wrap {
  margin-top: 0;
  width: auto;
}

.psw-page-slider-wrapper.psw-layout-card .psw-button {
  min-width: 138px;
  min-height: 40px;
  padding: 10px 22px;
  border: 1px solid var(--psw-infra-primary);
  border-radius: 4px;
  background: var(--psw-infra-white);
  color: #2f2f2f;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.psw-page-slider-wrapper.psw-layout-card .psw-button:hover,
.psw-page-slider-wrapper.psw-layout-card .psw-button:focus {
  background: var(--psw-infra-primary);
  color: var(--psw-infra-white);
  border-color: var(--psw-infra-primary);
}

.psw-page-slider-wrapper.psw-layout-card .psw-pagination {
  margin-top: 102px;
}

.psw-page-slider-wrapper.psw-layout-card .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid #858585;
  opacity: 1;
  margin: 0 4px !important;
}

.psw-page-slider-wrapper.psw-layout-card .swiper-pagination-bullet-active {
  background: #858585;
}

@media (max-width: 1023px) {
  .psw-page-slider-wrapper.psw-layout-card .psw-pagination {
    margin-top: 54px;
  }
}

@media (max-width: 767px) {
  .psw-page-slider-wrapper.psw-layout-card .psw-image {
    height: 240px;
  }

  .psw-page-slider-wrapper.psw-layout-card .psw-title {
    font-size: 18px;
  }

  .psw-page-slider-wrapper.psw-layout-card .psw-excerpt {
    letter-spacing: 1.5px;
  }
}

/* Equal-height card content: keeps all card buttons on one horizontal line */
.psw-page-slider-wrapper.psw-layout-card .swiper-wrapper {
  align-items: stretch !important;
}

.psw-page-slider-wrapper.psw-layout-card .swiper-slide {
  display: flex !important;
  height: auto !important;
}

.psw-page-slider-wrapper.psw-layout-card .psw-slide-inner {
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
  height: 100%;
}

.psw-page-slider-wrapper.psw-layout-card .psw-content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto;
  height: 100%;
}

.psw-page-slider-wrapper.psw-layout-card .psw-title {
  min-height: 50px;
}

.psw-page-slider-wrapper.psw-layout-card .psw-excerpt {
  min-height: 58px;
}

.psw-page-slider-wrapper.psw-layout-card .psw-button-wrap {
  margin-top: auto !important;
  flex: 0 0 auto;
}

.psw-page-slider-wrapper.psw-layout-card .psw-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  flex: 0 0 auto;
}

/* Category Sector layout */
.psw-category-sector {
  width: 100%;
  --psw-infra-primary: #213B4D;
  --psw-infra-accent: #1F93A4;
  --psw-infra-text: #5E5E5E;
  --psw-infra-white: #FFFFFF;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
}

.psw-category-sector.psw-width-boxed {
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
}

.psw-sector-head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
}

.psw-sector-copy {
  max-width: 520px;
}

.psw-sector-title {
  margin: 0 0 22px;
  color: var(--psw-infra-accent);
  font-family: "Helvetica Compressed", "Helvetica Condensed", Impact, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.psw-sector-description {
  margin: 0;
  color: #2f2f2f;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 1.2px;
}

.psw-sector-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  padding-top: 2px;
}

.psw-sector-filter-button,
.psw-sector-load-more,
.psw-sector-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--psw-infra-primary);
  border-radius: 0;
  background: var(--psw-infra-white);
  color: var(--psw-infra-primary);
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.psw-sector-filter-button {
  min-width: 104px;
  min-height: 31px;
  padding: 7px 18px 6px;
  font-size: 14px;
  text-transform: uppercase;
}

.psw-sector-filter-button:hover,
.psw-sector-filter-button:focus,
.psw-sector-filter-button.is-active {
  background: var(--psw-infra-primary);
  color: var(--psw-infra-white);
  border-color: var(--psw-infra-primary);
}

.psw-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 96px;
  row-gap: 78px;
}

.psw-sector-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.psw-sector-card.psw-sector-hidden,
.psw-sector-card.psw-sector-filtered-hidden {
  display: none !important;
}

.psw-sector-card-image-wrap,
.psw-sector-card-image-wrap .psw-image,
.psw-sector-card-image-wrap .psw-image img,
.psw-sector-card-image-wrap a {
  display: block;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.psw-sector-card-image-wrap .psw-image {
  height: 276px;
}

.psw-sector-card-image-wrap .psw-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.psw-sector-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-top: 24px;
}

.psw-sector-card-title {
  min-height: 50px;
  margin: 0 0 28px;
  color: var(--psw-infra-accent);
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.psw-sector-card-title a {
  color: inherit;
  text-decoration: none !important;
}

.psw-sector-card-description {
  min-height: 58px;
  margin: 0 0 28px;
  color: #2f2f2f;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.8px;
  text-transform: capitalize;
}

.psw-sector-card-button-wrap {
  margin-top: auto;
}

.psw-sector-card-button,
.psw-sector-load-more {
  min-height: 38px;
  padding: 12px 22px 10px;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
}

.psw-sector-card-button:hover,
.psw-sector-card-button:focus,
.psw-sector-load-more:hover,
.psw-sector-load-more:focus {
  background: var(--psw-infra-primary);
  color: var(--psw-infra-white);
  border-color: var(--psw-infra-primary);
}

.psw-sector-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.psw-sector-load-more.is-hidden {
  display: none !important;
}

@media (max-width: 1200px) {
  .psw-sector-grid { column-gap: 48px; }
}

@media (max-width: 1023px) {
  .psw-sector-head { grid-template-columns: 1fr; margin-bottom: 48px; }
  .psw-sector-filters { justify-content: flex-start; }
  .psw-sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
}

@media (max-width: 767px) {
  .psw-sector-title { font-size: 38px; }
  .psw-sector-grid { grid-template-columns: 1fr; gap: 42px; }
  .psw-sector-card-image-wrap .psw-image { height: 240px; }
  .psw-sector-filter-button { min-width: auto; }
}

/* Sector category card list feature */
.psw-sector-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  margin: 0 0 112px;
}

.psw-sector-category-list-card {
  min-height: 392px;
  border: 1px solid rgba(33, 59, 77, 0.55);
  border-radius: 24px;
  background: #FFFFFF;
  overflow: hidden;
}

.psw-sector-category-list-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: inherit;
  padding: 50px 58px 42px;
  color: inherit;
  text-decoration: none !important;
}

.psw-sector-category-list-icon {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin: 0 auto 20px;
  color: var(--psw-infra-primary);
}

.psw-sector-category-list-icon-fallback {
  font-size: 66px;
  line-height: 1;
  text-align: center;
}

.psw-sector-category-list-title {
  margin: 0 0 14px;
  color: var(--psw-infra-primary);
  font-family: "Helvetica Compressed", "Helvetica Condensed", Impact, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.psw-sector-category-list-description {
  max-width: 640px;
  margin: 0 auto 24px;
  color: #2f2f2f;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  text-align: center;
}

.psw-sector-category-list-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  color: #2f2f2f;
  font-size: 42px;
  line-height: 1;
  transition: transform .25s ease, color .25s ease;
}

.psw-sector-category-list-card-link:hover .psw-sector-category-list-arrow,
.psw-sector-category-list-card-link:focus .psw-sector-category-list-arrow {
  transform: translateX(8px);
  color: var(--psw-infra-accent);
}

/* E-card sector main section */
.psw-sector-main-section {
  width: 100%;
}

.psw-sector-main-copy {
  max-width: 520px;
  margin: 0 0 70px;
}

.psw-sector-main-title {
  margin: 0 0 22px;
  color: var(--psw-infra-accent);
  font-family: "Helvetica Compressed", "Helvetica Condensed", Impact, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.psw-sector-main-description {
  color: #2f2f2f;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 1.2px;
}

.psw-sector-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 96px;
  row-gap: 78px;
}

.psw-sector-main-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.psw-sector-main-card-image-wrap,
.psw-sector-main-card-image-wrap .psw-image,
.psw-sector-main-card-image-wrap .psw-image img,
.psw-sector-main-card-image-wrap a {
  display: block;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.psw-sector-main-card-image-wrap .psw-image {
  height: 276px;
}

.psw-sector-main-card-image-wrap .psw-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.psw-sector-main-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-top: 24px;
}

.psw-sector-main-card-title {
  min-height: 50px;
  margin: 0 0 28px;
  color: var(--psw-infra-accent);
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.psw-sector-main-card-title a {
  color: inherit;
  text-decoration: none !important;
}

.psw-sector-main-card-description {
  min-height: 58px;
  margin: 0 0 28px;
  color: #2f2f2f;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.8px;
  text-transform: capitalize;
}

.psw-sector-main-card-button-wrap {
  margin-top: auto;
}

.psw-sector-main-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 12px 22px 10px;
  border: 1px solid var(--psw-infra-primary);
  border-radius: 4px;
  background: var(--psw-infra-white);
  color: var(--psw-infra-primary);
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.psw-sector-main-card-button:hover,
.psw-sector-main-card-button:focus {
  background: var(--psw-infra-primary);
  color: var(--psw-infra-white);
  border-color: var(--psw-infra-primary);
}

.psw-sector-main-bottom-wrap {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.psw-sector-main-bottom-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #2f2f2f;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: color .25s ease;
}

.psw-sector-main-bottom-link span {
  font-size: 42px;
  line-height: 0;
  transition: transform .25s ease;
}

.psw-sector-main-bottom-link:hover,
.psw-sector-main-bottom-link:focus {
  color: var(--psw-infra-accent);
}

.psw-sector-main-bottom-link:hover span,
.psw-sector-main-bottom-link:focus span {
  transform: translateX(8px);
}

@media (max-width: 1200px) {
  .psw-sector-category-list,
  .psw-sector-main-grid { gap: 48px; }
}

@media (max-width: 1023px) {
  .psw-sector-category-list { grid-template-columns: 1fr; }
  .psw-sector-main-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
}

@media (max-width: 767px) {
  .psw-sector-category-list { gap: 32px; margin-bottom: 70px; }
  .psw-sector-category-list-card-link { padding: 38px 24px 34px; }
  .psw-sector-category-list-title,
  .psw-sector-main-title { font-size: 38px; }
  .psw-sector-main-grid { grid-template-columns: 1fr; gap: 42px; }
  .psw-sector-main-card-image-wrap .psw-image { height: 240px; }
}
.psw-sector-category-list-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 58px 42px;
}
.psw-sector-category-list-card .psw-sector-category-list-card-link {
  padding: 0;
}
@media (max-width: 767px) {
  .psw-sector-category-list-card { padding: 38px 24px 34px; }
}
