/*
Theme Name:   Fondazione Fiamma Viva
Description:  Bootscore Child Theme
Template:     bootscore
Version:      1.0.0
Text Domain:  fiamma-viva
Domain Path:  /languages
*/

/* =========================
   GLOBAL
   ========================= */

:root {
  --bs-font-sans-serif: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-headings-font-family: var(--bs-font-sans-serif);

  --fv-red: #d30601;
  --fv-red-dark: #a80500;
  --fv-footer-red: #a80400;
  --fv-text: #000000;

  --fv-reveal-duration: 900ms;
  --fv-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fv-reveal-distance: 50px;
  --fv-reveal-delay-step: 100ms;
}

body {
  font-family: var(--bs-font-sans-serif);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* =========================
   HEADER
   ========================= */

#masthead {
  background-color: #ffffff !important;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, -webkit-backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) {
  #masthead.is-scrolled {
    background-color: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 1200px) {
  #masthead .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  #masthead .navbar .container {
    min-height: 140px;
    display: flex;
    align-items: center;
  }

  #bootscore-navbar {
    gap: 1.25rem;
  }
}

/* =========================
   LOGO HEADER
   ========================= */

.site-logo {
  display: block;
  width: auto;
  height: 45px;
}

@media (min-width: 374px) {
  .site-logo {
    height: 90px;
  }
}

@media (min-width: 1200px) {
  .site-logo {
    height: 120px;
  }
}

/* =========================
   NAVIGATION
   ========================= */

#bootscore-navbar > .nav-item > .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--fv-text);
  transition: color 0.2s ease-in-out;
}

#bootscore-navbar > .nav-item > .nav-link:hover,
#bootscore-navbar > .nav-item > .nav-link:focus,
#bootscore-navbar > .nav-item.current-menu-item > .nav-link,
#bootscore-navbar > .nav-item.current_page_ancestor > .nav-link {
  color: var(--fv-red);
}

.dropdown-menu {
  min-width: 100%;
  padding-top: 0;
  border: none;
  border-bottom: 1px solid var(--fv-red);
  border-radius: 0;
  box-shadow: none;
}

.dropdown-item {
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--fv-red);
}

a.dropdown-item {
  transition: all 0.3s ease-in-out;
}

a.dropdown-item:hover,
a.dropdown-item:focus {
  color: var(--fv-red);
}

a.dropdown-item.active,
a.dropdown-item.active:hover {
  color: #ffffff;
}

.offcanvas-body {
  padding-top: 0;
}

@media (max-width: 1199.98px) {
  .navbar .dropdown-menu:not(.dropdown-search) {
    display: block;
  }

  .navbar .nav-item .dropdown-menu.invisible {
    visibility: visible !important;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu {
    min-width: 300px;
    padding-top: 8px;
    border-bottom: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }

  .navbar .nav-item:hover > .dropdown-menu {
    visibility: visible !important;
    opacity: 1;
  }
}

/*
.archive-no-click a {
	pointer-events: none;
}

.archive-no-click a * {
	pointer-events: auto
}
*/

.archive-no-click > a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
/* =========================
   HEADER ACTIONS
   ========================= */

.header-search-btn {
  color: var(--fv-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.header-search-btn i {
  color: inherit;
  font-size: inherit;
}

.header-search-btn:hover,
.header-search-btn:focus,
.header-search-btn:active {
  color: var(--fv-red);
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

.btn-donazioni,
.btn-cta-fv {
  background-color: var(--fv-red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-donazioni:hover,
.btn-donazioni:focus,
.btn-donazioni:active,
.btn-cta-fv:hover,
.btn-cta-fv:focus,
.btn-cta-fv:active {
  background-color: var(--fv-red-dark);
  color: #ffffff;
  text-decoration: none;
}

a.btn-cta-fv {
  color: #ffffff;
}

.btn-mobile-nav {
  color: var(--fv-red);
  border-color: var(--fv-red);
  font-size: 20px;
}

.btn-mobile-nav:hover,
.btn-mobile-nav:focus,
.btn-mobile-nav:active {
  background-color: var(--fv-red);
  color: #ffffff;
}

.icona-ricerca {
  background-color: #ffffff;
}

@media (min-width: 1400px) {
  #bootscore-navbar > .nav-item > .nav-link,
  .header-search-btn,
  .header-search-btn i,
  .btn-donazioni,
  .dropdown-item {
    font-size: 16px;
  }
}

/* =========================
   UI
   ========================= */

.top-button {
  background-color: var(--fv-red);
  border: none;
  transition: all 0.3s ease-in-out;
}

.top-button:hover,
.top-button:focus,
.top-button:active {
  background-color: var(--fv-red-dark) !important;
  border: none;
}

.form-control:focus {
  border-color: var(--fv-red) !important;
  box-shadow: 0 0 0 0.25rem rgba(211, 6, 1, 0.15) !important;
}

/* =========================
   PAGINATION
   ========================= */

.pagination {
  gap: 6px;
}

.page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-weight: 700;
  color: var(--fv-red);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-item .page-link:hover,
.page-item .page-link:focus {
  color: var(--fv-red-dark);
  border-color: rgba(211, 6, 1, 0.35);
  box-shadow: none;
  transform: translateY(-1px);
}

.page-item.active .page-link,
.page-link.active,
.active > .page-link {
  color: #ffffff;
  background-color: var(--fv-red);
  border-color: var(--fv-red);
}

.page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
  transform: none;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 999px;
}

.page-item .page-link[aria-label="Previous"],
.page-item .page-link[aria-label="Next"] {
  min-width: 44px;
}

@media (max-width: 767px) {
  .pagination {
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-item .page-link {
    min-width: 38px;
    height: 38px;
  }
}

/* =========================
   FOOTER
   ========================= */

.fv-footer-main {
  background-color: var(--fv-footer-red);
  padding-top: 48px;
  padding-bottom: 48px;
}

.fv-footer-main,
.fv-footer-main p {
  color: #ffffff;
}

.fv-footer-main a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.fv-footer-main a:hover,
.fv-footer-main a:focus {
  color: #b2b2b2;
  text-decoration: none;
}

.fv-footer-left img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 250px;
}

.fv-footer-left p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 2;
}

@media (min-width: 992px) {
  .fv-footer-left {
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.7);
  }

  .fv-footer-right {
    padding-left: 40px;
  }
}

.fv-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.fv-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  transition: background-color 0.45s ease, border-color 0.45s ease, transform 0.45s ease;
}

.fv-footer-social i {
  font-size: 24px;
  color: #ffffff;
  transition: color 0.45s ease, transform 0.45s ease;
}

.fv-footer-social .fv-social-facebook i {
  font-size: 32px;
  transform: translateY(5px);
}

.fv-footer-social a:hover,
.fv-footer-social a:focus {
  background-color: #ffffff;
  border-color: #ffffff;
}

.fv-footer-social a:hover i,
.fv-footer-social a:focus i {
  color: var(--fv-footer-red);
}

.fv-footer-menus {
  margin-top: 8px;
}

.fv-footer-menus .menu {
  display: grid;
  gap: 48px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .fv-footer-menus .menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fv-footer-menus .menu > .menu-item {
  margin: 0;
}

.fv-footer-menus .menu > .menu-item > a {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.fv-footer-menus .menu > .menu-item > .sub-menu {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.fv-footer-menus .menu > .menu-item > .sub-menu > .menu-item {
  margin: 0 0 4px;
}

.fv-footer-menus .menu > .menu-item > .sub-menu > .menu-item > a {
  display: inline-block;
  padding: 2px 0;
  font-size: 16px;
  font-weight: 300;
  text-transform: none;
}

.fv-footer-copy {
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   HERO
   ========================= */

.fv-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100vw;
  height: 300px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.fv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

.fv-hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
}

.fv-hero__title,
.fv-hero__title__noimg {
  margin: 0;
  font-size: 56px;
}

.fv-hero__title {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 3px 10px #000000;
}

.fv-hero-noimg {
  padding-top: 30px;
  padding-bottom: 10px;
}

.fv-hero__title__noimg {
  margin-top: 30px;
  color: var(--fv-red);
  font-weight: 700;
}

@media (max-width: 767px) {
  .fv-hero {
    height: 240px;
  }

  .fv-hero__title,
  .fv-hero__title__noimg {
    font-size: 36px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .fv-hero__title,
  .fv-hero__title__noimg {
    font-size: 48px;
  }
}

@media (min-width: 1920px) {
  .fv-hero {
    height: 340px;
  }

  .fv-hero__title,
  .fv-hero__title__noimg {
    font-size: 64px;
  }
}

/* =========================
   BREADCRUMB
   ========================= */

.fv-breadcrumbs {
  padding: 0 0 30px;
  font-size: 16px;
}

.fv-breadcrumbs a {
  color: var(--fv-red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.5s ease;
}

.fv-breadcrumbs a:hover,
.fv-breadcrumbs a:focus {
  color: var(--fv-red-dark);
  text-decoration: underline;
}

.fv-breadcrumbs .sep,
.fv-breadcrumbs .current {
  color: #222222;
}

.breadcrumb_last {
  font-weight: 400;
}

/* =========================
   SIDEBAR
   ========================= */

.fv-page-sidebar {
  margin-top: 16px;
}

.fv-page-sidebar__inner {
  position: static;
}

@media (min-width: 992px) {
  .fv-page-sidebar {
    margin-top: 0;
  }

  .fv-page-sidebar__inner {
    position: sticky;
    top: 200px;
  }
}

.fv-sidebar-card {
  margin-bottom: 24px;
  padding: 22px 20px 20px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.fv-share-block {
  margin-bottom: 32px;
}

.fv-share-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.fv-share {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.fv-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  line-height: 1;
  color: #000000;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.45s ease, border-color 0.45s ease, color 0.45s ease, transform 0.45s ease;
}

.fv-share__btn i {
  font-size: 20px;
}

.fv-share__btn--facebook i {
  font-size: 32px;
  transform: translateY(5px);
}

.fv-share__btn:hover,
.fv-share__btn:focus {
  color: #ffffff;
  background-color: var(--fv-red);
  border-color: var(--fv-red);
  transform: translateY(-1px);
}

.fv-share__toast {
  display: none;
  margin-top: 10px;
  font-size: 12px;
  color: #333333;
}

.fv-share__toast.is-visible {
  display: block;
}

.fv-sidebar-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
}

.fv-recent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fv-recent-item:hover,
.fv-recent-item:focus {
  color: var(--fv-red);
}

.fv-recent-thumb img,
.fv-recent-thumb__ph {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 12px;
}

.fv-recent-thumb img {
  object-fit: cover;
}

.fv-recent-thumb__ph {
  background: rgba(0, 0, 0, 0.08);
}

.fv-recent-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fv-recent-date {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #666666;
}

.fv-recent-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

/* =========================
   CONTENT TYPOGRAPHY
   ========================= */

.entry-content {
  font-size: 16px;
  line-height: 1.8;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 50px;
}

.entry-content > .fv-reveal, 
.entry-content > .fv-reveal--up, 
.entry-content > .is-visible {
  margin-bottom: 0px;	
}

.entry-content h1 {
  font-size: 56px;
  line-height: 1.3;
  font-weight: 700;
}

.entry-content h2,
.entry-content h3 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
}

.entry-content h4 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
}

.entry-content h5 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

.entry-content h6 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  font-size: 18px;
  line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2em;
  margin-top: 0;
  margin-bottom: 0;
}

.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.entry-content a {
  color: var(--fv-red-dark);
  text-decoration: none;
  transition: color 0.5s ease, text-decoration-color 0.5s ease;
}

.entry-content a:hover,
.entry-content a:focus {
  color: var(--fv-red);
  text-decoration: underline;
}

.entry-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry-content .alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.entry-content .alignright {
  float: right;
  margin: 0 0 20px 20px;
}

@media (max-width: 767px) {
  .entry-content h1 {
    font-size: 36px;
  }

  .entry-content h2,
  .entry-content h3 {
    font-size: 32px;
  }

  .entry-content h4 {
    font-size: 24px;
  }

  .entry-content h5 {
    font-size: 20px;
  }

  .entry-content h6 {
    font-size: 18px;
  }

  .entry-content p,
  .entry-content ul,
  .entry-content ol {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .entry-content h1 {
    font-size: 48px;
  }

  .entry-content h2,
  .entry-content h3 {
    font-size: 40px;
  }

  .entry-content h4 {
    font-size: 28px;
  }

  .entry-content h5 {
    font-size: 22px;
  }

  .entry-content h6 {
    font-size: 18px;
  }

  .entry-content p,
  .entry-content ul,
  .entry-content ol {
    font-size: 18px;
  }
}

@media (min-width: 1920px) {
  .entry-content h1 {
    font-size: 64px;
  }

  .entry-content h2,
  .entry-content h3 {
    font-size: 56px;
  }

  .entry-content h4 {
    font-size: 36px;
  }

  .entry-content h5 {
    font-size: 28px;
  }

  .entry-content h6 {
    font-size: 22px;
  }

  .entry-content p,
  .entry-content ul,
  .entry-content ol {
    font-size: 20px;
  }
}

/* =========================
   WORDPRESS GALLERY
   ========================= */

.entry-content .gallery {
  display: grid;
  gap: 30px;
  margin: 0 0 50px;
  justify-items: center;
}

.entry-content .gallery-item,
.entry-content .gallery-icon {
  margin: 0;
}

.entry-content .gallery-icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.entry-content .gallery-caption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .entry-content .gallery-columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .entry-content .gallery {
    justify-items: start;
  }

  .entry-content .gallery-columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================
   SINGLE
   ========================= */

.single .entry-header .post-thumbnail img {
  border-radius: 30px !important;
}

h1.single-cpt-title {
  font-size: 64px;
  line-height: 1.3;
  font-weight: 800;
}

.fv-date-single {
  margin-bottom: 50px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.fv-ftd-img-single {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  h1.single-cpt-title {
    font-size: 48px;
    font-weight: 700;
  }

  .fv-date-single {
    font-size: 18px;
    font-weight: 600;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  h1.single-cpt-title {
    font-size: 56px;
    font-weight: 700;
  }

  .fv-date-single {
    font-size: 20px;
    font-weight: 600;
  }
}

@media (min-width: 1920px) {
  h1.single-cpt-title {
    font-size: 72px;
    font-weight: 900;
  }

  .fv-date-single {
    font-size: 24px;
    font-weight: 800;
  }
}

/* =========================
   PDF EMBEDDER
   ========================= */

.pdfemb-viewer {
  position: relative;
  overflow: hidden;
}

.pdfemb-toolbar.pdfemb-toolbar-fixed {
  background-color: #e32213 !important;
}

.pdfemb-toolbar .pdfemb-page-area,
div.pdfemb-toolbar.pdfemb-toolbar-fixed > div {
  display: inline !important;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
}

@media (min-width: 1200px) {
  .pdfemb-toolbar .pdfemb-page-area,
  div.pdfemb-toolbar.pdfemb-toolbar-fixed > div {
    font-size: 14px;
  }
}

/* =========================
   ARCHIVE
   ========================= */

.fv-archive-empty__title {
  color: var(--fv-red);
}

.fv-archive-card {
  position: relative;
  display: block;
  min-height: 350px;
  overflow: hidden;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.5s ease;
}

.fv-archive-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.5s ease;
  will-change: transform;
}

.fv-archive-card__bg--empty {
  background: #ddd;
}

.fv-archive-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0) 100%);
  will-change: opacity;
}

.fv-archive-card__inner {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  color: #ffffff;
  transition: color 0.5s ease, opacity 0.5s ease;
}

.fv-archive-card__inner * {
  color: inherit;
  transition: color 0.5s ease, opacity 0.5s ease;
}

.fv-archive-card__kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fv-archive-card__date {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.95;
}

.fv-archive-card__title {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.fv-archive-card__excerpt {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .fv-archive-card:hover,
  .fv-archive-card:focus-visible {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .fv-archive-card:hover .fv-archive-card__bg,
  .fv-archive-card:focus-visible .fv-archive-card__bg {
    transform: scale(1.3);
  }

  .fv-archive-card:hover .fv-archive-card__inner,
  .fv-archive-card:focus-visible .fv-archive-card__inner {
    opacity: 0.7;
  }
}

/* =========================
   ORGANIGRAMMA
   ========================= */

.fv-organigramma-list {
  margin-top: 10px;
}

.fv-org-item {
  position: relative;
}

.fv-org-item::after {
  content: "";
  display: block;
  clear: both;
}

.fv-org-media {
  float: left;
  margin: 0 24px 14px 0;
}

.fv-org-photo {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 999px;
}

.fv-org-photo--empty {
  background: rgba(0, 0, 0, 0.08);
}

.fv-org-card__title {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  color: #111111;
}

.fv-org-card__role {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--fv-red);
}

.fv-org-entry.entry-content > * {
  margin-bottom: 18px;
}

.fv-org-entry.entry-content > *:last-child {
  margin-bottom: 0;
}

.fv-org-divider {
  clear: both;
  height: 2px;
  margin: 28px 0;
  background: rgba(0, 0, 0, 0.18);
  border: 0;
}

@media (max-width: 767px) {
  .fv-org-media {
    float: none;
    margin: 0 0 14px;
  }

  .fv-org-photo {
    width: 140px;
    height: 140px;
  }

  .fv-org-card__title {
    font-size: 24px;
  }

  .fv-org-card__role {
    font-size: 16px;
  }
}

/* =========================
   SEARCH
   ========================= */

.search-results h2 a {
  color: var(--fv-red);
}

/* =========================
   CONTATTI
   ========================= */

.fv-contatti-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 16px 0 56px;
  background: #d4d0d0;
}

.fv-contatti-intro {
  margin: 0 0 18px;
}

.fv-contatti-title {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  color: #111111;
}

.fv-contatti-bg .entry-content > * {
  margin-bottom: 18px;
}

.fv-contatti-bg .entry-content > *:last-child {
  margin-bottom: 0;
}

.fv-contact-form .wpcf7 form > p {
  margin: 0 0 16px;
}

.fv-contact-form .wpcf7 form p,
.fv-contact-form .wpcf7 form label,
.fv-contact-form .wpcf7 form .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.fv-contact-form input[type="text"],
.fv-contact-form input[type="email"],
.fv-contact-form input[type="tel"],
.fv-contact-form textarea,
.fv-contact-form select,
.fv-contact-form .wpcf7-form-control {
  padding: 14px 16px;
  background: #ffffff;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  outline: none;
}

.fv-contact-form .wpcf7 input.wpcf7-form-control,
.fv-contact-form .wpcf7 textarea.wpcf7-form-control,
.fv-contact-form .wpcf7 select.wpcf7-form-control,
.fv-contact-form .wpcf7 input[size] {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

span.wpcf7-form-control.wpcf7-acceptance {
  padding-left: 0;
  font-size: 12px;
  background-color: transparent;
  box-shadow: none;
}

span.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.fv-contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.fv-contact-form input::placeholder,
.fv-contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.fv-contact-form input:focus,
.fv-contact-form textarea:focus,
.fv-contact-form select:focus {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(211, 6, 1, 0.14);
}

.fv-contact-form input[type="submit"],
.fv-contact-form button[type="submit"] {
  width: 100%;
  padding: 14px 18px;
  color: var(--fv-red);
  background: #ffffff;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  font-weight: 800;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.fv-contact-form input[type="submit"]:hover,
.fv-contact-form button[type="submit"]:hover {
  color: #ffffff;
  background: var(--fv-red);
  transform: translateY(-1px);
}

.fv-contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
}

.fv-contact-form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 14px;
}

.fv-contact-form .wpcf7 .wpcf7-form-control-wrap {
  position: relative;
}

.fv-contact-form .wpcf7 .wpcf7-form-control-wrap::after {
  content: "*";
  position: absolute;
  top: 4px;
  right: 14px;
  color: var(--fv-red);
  font-weight: 900;
  pointer-events: none;
}

.fv-contact-form .wpcf7 .wpcf7-form-control-wrap textarea,
.fv-contact-form .wpcf7 .wpcf7-form-control-wrap textarea + .wpcf7-not-valid-tip {
  padding-right: 28px;
}

.fv-contact-form .wpcf7 .wpcf7-acceptance label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  width: 100% !important;
  max-width: 100% !important;
}

.fv-contact-form .wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  background: #ffffff;
  border: 2px solid rgba(211, 6, 1, 0.55);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fv-contact-form .wpcf7 .wpcf7-acceptance input[type="checkbox"]:hover {
  border-color: var(--fv-red);
  transform: translateY(-1px);
}

.fv-contact-form .wpcf7 .wpcf7-acceptance input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(211, 6, 1, 0.14);
}

.fv-contact-form .wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--fv-red);
  border-color: var(--fv-red);
  box-shadow: 0 10px 26px rgba(211, 6, 1, 0.18);
}

.fv-contact-form .wpcf7 .wpcf7-acceptance input[type="checkbox"]::after {
  content: "";
  width: 10px;
  height: 6px;
  margin-top: -1px;
  border: 3px solid #ffffff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.12s ease;
}

.fv-contact-form .wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked::after {
  transform: rotate(-45deg) scale(1);
}

.fv-contact-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  line-height: 1.6;
}

.fv-contact-form .wpcf7 .wpcf7-acceptance a {
  color: var(--fv-red);
  font-weight: 700;
  text-decoration: underline;
}

.fv-map-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

@supports not (aspect-ratio: 1 / 1) {
  .fv-map-wrap {
    height: 360px;
  }
}

.fv-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fv-contact-map-top {
  margin-bottom: 12px;
}

.fv-contact-map-bottom {
  margin-top: 12px;
}

@media (max-width: 767px) {
  .fv-contatti-bg {
    padding: 18px 0 42px;
  }

  .fv-contatti-title {
    font-size: 22px;
  }
}

/* =========================
   DONA
   ========================= */

.fv-dona-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 16px 0 56px;
  color: #ffffff;
  background: #778791;
}

.fv-dona-bg .fv-breadcrumbs a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.fv-dona-bg .fv-breadcrumbs a:hover,
.fv-dona-bg .fv-breadcrumbs a:focus {
  color: rgba(255, 255, 255, 0.85);
}

.fv-dona-bg .fv-breadcrumbs .sep,
.fv-dona-bg .fv-breadcrumbs .current {
  color: rgba(255, 255, 255, 0.9);
}

.fv-dona-col.entry-content > * {
  margin-bottom: 18px;
}

.fv-dona-col.entry-content > *:last-child {
  margin-bottom: 0;
}

.fv-dona-col--right h1,
.fv-dona-col--right h2 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  color: #ffffff;
}

.fv-dona-bg a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .fv-dona-bg {
    padding: 18px 0 42px;
  }

  .fv-dona-col--right h1,
  .fv-dona-col--right h2 {
    font-size: 36px;
  }
}

/* =========================
   DONA FORM
   ========================= */

.cf-donazioni {
  max-width: 520px;
}

.cf-donazioni__h {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.cf-donazioni__type,
.cf-donazioni__amount,
.cf-donazioni__free,
.cf-donazioni__row {
  margin-bottom: 26px;
}

.cf-donazioni .wpcf7-form-control-wrap,
.cf-donazioni .wpcf7-form-control,
.cf-donazioni .wpcf7-list-item {
  margin: 0;
}

.cf-donazioni .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.cf-donazioni__type .wpcf7-radio,
.cf-donazioni__amount .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.cf-donazioni__type .wpcf7-list-item,
.cf-donazioni__amount .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf-donazioni__type .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cf-donazioni__type input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-content: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 0;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cf-donazioni__type input[type="radio"]:hover {
  transform: translateY(-1px);
}

.cf-donazioni__type input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.cf-donazioni__type input[type="radio"]:checked {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: inset 0 0 0 4px #778791;
}

.cf-donazioni__type .wpcf7-list-item-label {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}

.cf-donazioni__amount .wpcf7-list-item label {
  display: block;
  cursor: pointer;
}

.cf-donazioni__amount input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cf-donazioni__amount .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 40px;
  padding: 0 14px;
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cf-donazioni__amount label:hover .wpcf7-list-item-label {
  transform: translateY(-1px);
}

.cf-donazioni__amount input[type="radio"]:focus + .wpcf7-list-item-label {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.cf-donazioni__amount input[type="radio"]:checked + .wpcf7-list-item-label {
  color: #778791;
  background: #ffffff;
  border-color: #ffffff;
}

.cf-donazioni__free input[type="number"] {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 42px;
  padding: 0 16px;
  color: #ffffff;
  text-align: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: none;
  outline: none;
  -moz-appearance: textfield;
}

.cf-donazioni__free input[type="number"]::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.cf-donazioni__free input[type="number"]:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.cf-donazioni__free input[type="number"]::-webkit-outer-spin-button,
.cf-donazioni__free input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cf-donazioni__row {
  display: flex;
  gap: 16px;
}

.cf-donazioni__col,
.cf-donazioni__col-full {
  width: 100%;
}

.cf-donazioni input[type="text"],
.cf-donazioni input[type="email"],
.cf-donazioni input[type="tel"] {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  color: #778791;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  outline: none;
}

.cf-donazioni input[type="text"]::placeholder,
.cf-donazioni input[type="email"]::placeholder,
.cf-donazioni input[type="tel"]::placeholder {
  color: #778791;
  font-weight: 600;
  opacity: 1;
}

.cf-donazioni input[type="text"]:focus,
.cf-donazioni input[type="email"]:focus,
.cf-donazioni input[type="tel"]:focus {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08), 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.cf-donazioni__submit,
.cf-donazioni input[type="submit"].cf-donazioni__submit,
.cf-donazioni input.wpcf7-submit.cf-donazioni__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  min-height: 48px;
  padding: 0 22px;
  color: var(--fv-red);
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cf-donazioni__submit:hover,
.cf-donazioni input[type="submit"].cf-donazioni__submit:hover,
.cf-donazioni input.wpcf7-submit.cf-donazioni__submit:hover {
  color: #ffffff;
  background: var(--fv-red);
  transform: translateY(-1px);
}

.cf-donazioni .wpcf7-spinner {
  margin: 10px 0 0 10px;
}

.cf-donazioni .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
  color: #ffffff;
}

.cf-donazioni .wpcf7-response-output {
  margin: 18px 0 0;
  color: #ffffff;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .cf-donazioni {
    max-width: 100%;
  }

  .cf-donazioni__row {
    flex-direction: column;
    gap: 16px;
  }

  .cf-donazioni__type,
  .cf-donazioni__amount,
  .cf-donazioni__free,
  .cf-donazioni__row {
    margin-bottom: 22px;
  }
}

/* =========================
   HOME
   ========================= */

.fv-home-block1,
.fv-home-block3,
.fv-home-slider,
.fv-hero,
.fv-contatti-bg,
.fv-dona-bg {
  width: auto;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#fvHomeHeroCarousel {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.fv-hero,
.fv-contatti-bg,
.fv-dona-bg,
.fv-home-block1,
.fv-home-block3,
.fv-home-slider {
  overflow-x: clip;
}

.fv-home-block1,
.fv-home-block2,
.fv-home-block3__content {
  padding: 100px 0;
}

.fv-home-block1 {
  color: #ffffff;
  background: var(--fv-red);
}

.fv-home-block1 .entry-content,
.fv-home-block1 .entry-content * {
  color: inherit;
}

.fv-home-block1__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-home-block1__media img {
  display: block;
  width: auto;
  max-width: 80%;
  height: auto;
}

.fv-home-block1__cta,
.fv-home-block3__cta {
  margin-top: 34px;
}

.fv-home-block1 .btn-cta-fv,
.fv-home-block3 .btn-cta-fv {
  padding: 18px 52px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  text-transform: none;
}

.fv-home-block1 .btn-cta-fv {
  color: var(--fv-red);
  background: #ffffff;
}

.fv-home-block1 .btn-cta-fv:hover,
.fv-home-block1 .btn-cta-fv:focus {
  color: var(--fv-red-dark);
  background: #ffffff;
}

.fv-home-block2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.fv-home-section-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.fv-home-block2__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fv-news-slider__viewport {
  position: relative;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.fv-news-slider__track {
  display: flex;
  gap: 24px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 450ms ease;
}

.fv-news-slider__slide {
  flex: 0 0 calc((100% - 48px) / 3);
}

.fv-news-slider.is-dragging .fv-news-slider__viewport {
  cursor: grabbing;
}

.fv-news-slider.is-dragging {
  user-select: none;
  -webkit-user-select: none;
}

.fv-home-block2 .fv-archive-card {
  box-shadow: none;
}

.fv-home-carousel-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  font-size: 0;
  line-height: 1;
  color: transparent;
  background: #f1f1f1;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.fv-home-carousel-btn:hover,
.fv-home-carousel-btn:focus {
  background: #ebebeb;
  outline: none;
  box-shadow: none;
  transform: translateY(-1px);
}

.fv-home-carousel-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.fv-home-carousel-btn[data-fvnews-prev]::before {
  margin-left: -2px;
  border-right: 14px solid var(--fv-red);
}

.fv-home-carousel-btn[data-fvnews-next]::before {
  margin-right: -2px;
  border-left: 14px solid var(--fv-red);
}

.fv-home-block3__content {
  background: #e8e8e8;
}

.fv-home-block3__content .entry-content,
.fv-home-block3__content .entry-content * {
  color: var(--fv-red);
}

.fv-home-block3__content-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.fv-home-block3 .btn-cta-fv {
  color: #ffffff;
  background: var(--fv-red);
}

.fv-home-block3 .btn-cta-fv:hover,
.fv-home-block3 .btn-cta-fv:focus {
  color: #ffffff;
  background: var(--fv-red-dark);
}

.fv-home-block3__media {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .fv-news-slider__slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .fv-home-block3__media {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .fv-home-block1 .btn-cta-fv,
  .fv-home-block3 .btn-cta-fv {
    padding: 16px 36px;
    font-size: 18px;
  }

  .fv-news-slider__slide {
    flex: 0 0 85%;
  }
}

@media (min-width: 992px) {
  .fv-home-block3__content-inner {
    max-width: calc(var(--bs-container-max-width, 1320px) / 2);
    margin-left: auto;
    margin-right: 0;
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  }
}

@media (min-width: 1400px) {
  .fv-home-block1 .btn-cta-fv,
  .fv-home-block3 .btn-cta-fv {
    font-size: 24px;
  }
}

/* =========================
   HOME SLIDER
   ========================= */

.fv-home-slider {
  position: relative;
  overflow: hidden;
}

.fv-home-slider .carousel,
.fv-home-slider .carousel-inner,
.fv-home-slider .carousel-item {
  height: 700px;
}

.fv-hero-slide {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
  background: #000000;
}

.fv-hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--fv-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.9s ease;
  will-change: transform;
}

.fv-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
}

.fv-hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.05) 100%);
}

.fv-hero-slide__container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 50px 0;
}

.fv-hero-slide__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 70px;
}

.fv-hero-slide__content {
  max-width: 720px;
  color: #ffffff;
}

.fv-hero-slide__date {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.95;
}

.fv-hero-slide__title {
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.fv-hero-slide__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease-in-out;
}

.fv-hero-slide__title a:hover,
.fv-hero-slide__title a:focus {
  color: var(--fv-red);
  text-decoration: none;
}

.fv-hero-slide__text {
  max-width: 560px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.fv-hero-slide__cta.btn-cta-fv {
  padding: 18px 52px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  text-transform: none;
}

.fv-home-slider .fv-hero-slide__cta-btn,
#fvHomeHeroCarousel .fv-hero-slide__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  color: #ffffff !important;
  background: var(--fv-red);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.fv-home-slider .fv-hero-slide__cta-btn:hover,
.fv-home-slider .fv-hero-slide__cta-btn:focus {
  background: var(--fv-red-dark);
  transform: translateY(-1px);
}

.fv-home-slider .fv-hero-slide__cta .btn.btn-cta-fv,
#fvHomeHeroCarousel .fv-hero-slide__cta .btn.btn-cta-fv {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 48px !important;
  color: #ffffff !important;
  background: var(--fv-red) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: none !important;
  text-decoration: none !important;
  transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.fv-home-slider .fv-hero-slide__cta .btn.btn-cta-fv:hover,
.fv-home-slider .fv-hero-slide__cta .btn.btn-cta-fv:focus,
#fvHomeHeroCarousel .fv-hero-slide__cta .btn.btn-cta-fv:hover,
#fvHomeHeroCarousel .fv-hero-slide__cta .btn.btn-cta-fv:focus {
  color: #ffffff !important;
  background: var(--fv-red-dark) !important;
  transform: translateY(-1px);
}

.fv-hero-slider-wrap .carousel-control-prev,
.fv-hero-slider-wrap .carousel-control-next {
  width: 64px;
  opacity: 1;
}

.fv-hero-slider-wrap .carousel-control-prev-icon,
.fv-hero-slider-wrap .carousel-control-next-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-image: none;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.fv-hero-slider-wrap .carousel-control-prev-icon::before,
.fv-hero-slider-wrap .carousel-control-next-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.fv-hero-slider-wrap .carousel-control-prev-icon::before {
  margin-left: -2px;
  border-right: 14px solid #ffffff;
}

.fv-hero-slider-wrap .carousel-control-next-icon::before {
  margin-right: -2px;
  border-left: 14px solid #ffffff;
}

.fv-hero-slider-wrap .carousel-control-prev:hover .carousel-control-prev-icon,
.fv-hero-slider-wrap .carousel-control-next:hover .carousel-control-next-icon {
  background: rgba(255, 255, 255, 0.28);
}

.fv-hero-slider-wrap .carousel-indicators {
  display: none;
}

.fv-home-slider .fv-hero-slider__control,
#fvHomeHeroCarousel .fv-hero-slider__control {
  z-index: 5;
  width: 90px;
  opacity: 1;
}

.fv-home-slider .fv-hero-slider__control:focus,
.fv-home-slider .fv-hero-slider__control:active {
  outline: none;
  box-shadow: none;
}

.fv-home-slider .fv-hero-slider__icon,
#fvHomeHeroCarousel .fv-hero-slider__icon {
  display: block;
  width: 40px;
  height: 40px;
  border-right: 4px solid rgba(255, 255, 255, 0.95);
  border-bottom: 4px solid rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.fv-home-slider .fv-hero-slider__icon--prev,
#fvHomeHeroCarousel .fv-hero-slider__icon--prev {
  transform: rotate(135deg);
}

.fv-home-slider .fv-hero-slider__icon--next,
#fvHomeHeroCarousel .fv-hero-slider__icon--next {
  transform: rotate(-45deg);
}

.fv-home-slider .fv-hero-slider.is-dragging {
  user-select: none;
}

.fv-home-slider .fv-hero-slider.is-dragging a {
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .fv-home-slider .carousel-item:hover .fv-hero-slide__bg {
    transform: scale(1.15);
  }

  .fv-home-slider .fv-hero-slider {
    cursor: grab;
  }

  .fv-home-slider .fv-hero-slider.is-pointer-down,
  .fv-home-slider .fv-hero-slider.is-dragging {
    cursor: grabbing;
  }

  .fv-home-slider .fv-hero-slider__control:hover .fv-hero-slider__icon,
  #fvHomeHeroCarousel .fv-hero-slider__control:hover .fv-hero-slider__icon {
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
  }
}

@media (max-width: 1199px) {
  .fv-hero-slide__title {
    font-size: 48px;
  }

  .fv-hero-slide__container {
    align-items: flex-end;
    padding-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .fv-home-slider .fv-hero-slider__icon,
  #fvHomeHeroCarousel .fv-hero-slider__icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 991px) {
  .fv-hero-slide__content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .fv-home-slider .carousel,
  .fv-home-slider .carousel-inner,
  .fv-home-slider .carousel-item {
    height: 500px;
  }

  .fv-hero-slide__inner {
    padding-bottom: 28px;
  }

  .fv-hero-slide__title {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 24px;
  }

  .fv-hero-slide__date,
  .fv-hero-slide__text,
  .fv-hero-slide__cta {
    display: none !important;
  }

  .fv-home-slider .fv-hero-slide__cta .btn.btn-cta-fv,
  #fvHomeHeroCarousel .fv-hero-slide__cta .btn.btn-cta-fv {
    min-height: 46px;
    padding: 12px 32px !important;
    font-size: 16px !important;
  }
}

/* =========================
   REVEAL
   ========================= */

.fv-reveal {
  opacity: 0;
  transform: translate3d(0, var(--fv-reveal-distance), 0);
  transition: opacity var(--fv-reveal-duration) var(--fv-reveal-ease), transform var(--fv-reveal-duration) var(--fv-reveal-ease);
  transition-delay: var(--fv-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.fv-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fv-reveal--up {
  transform: translate3d(0, var(--fv-reveal-distance), 0);
}

.fv-reveal--left {
  transform: translate3d(calc(var(--fv-reveal-distance) * -1), 0, 0);
}

.fv-reveal--right {
  transform: translate3d(var(--fv-reveal-distance), 0, 0);
}

.fv-reveal--fade {
  transform: none;
}

.fv-reveal--scale {
  transform: scale(0.96);
}

.fv-reveal--fast {
  transition-duration: 480ms;
}

.fv-reveal--slow {
  transition-duration: 900ms;
}

.fv-reveal-group > .fv-reveal:nth-child(1)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 0); }
.fv-reveal-group > .fv-reveal:nth-child(2)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 1); }
.fv-reveal-group > .fv-reveal:nth-child(3)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 2); }
.fv-reveal-group > .fv-reveal:nth-child(4)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 3); }
.fv-reveal-group > .fv-reveal:nth-child(5)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 4); }
.fv-reveal-group > .fv-reveal:nth-child(6)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 5); }
.fv-reveal-group > .fv-reveal:nth-child(7)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 6); }
.fv-reveal-group > .fv-reveal:nth-child(8)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 7); }
.fv-reveal-group > .fv-reveal:nth-child(9)  { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 8); }
.fv-reveal-group > .fv-reveal:nth-child(10) { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 9); }
.fv-reveal-group > .fv-reveal:nth-child(11) { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 10); }
.fv-reveal-group > .fv-reveal:nth-child(12) { --fv-reveal-delay: calc(var(--fv-reveal-delay-step) * 11); }

@media (prefers-reduced-motion: reduce) {
  .fv-reveal,
  .fv-reveal--up,
  .fv-reveal--left,
  .fv-reveal--right,
  .fv-reveal--fade,
  .fv-reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   PRINT
   ========================= */

@media print {
  #masthead,
  footer,
  .pdfemb-viewer,
  .fv-page-sidebar,
  .top-button,
  .noprint {
    display: none !important;
  }

  #content {
    padding: 0 !important;
  }

  .fv-hero__container {
    margin: 0 !important;
    padding: 0 !important;
  }

  .fv-hero {
    width: 100%;
    height: auto;
    margin-left: 0;
    background: none;
  }

  .fv-hero::before {
    display: none;
  }

  .fv-hero__title {
    margin: 50px 0 20px;
    color: #000000;
    font-size: 56px;
    font-weight: 700;
    text-shadow: none;
  }

  .entry-content > * {
    margin-top: 0;
    margin-bottom: 20px;
  }
}