/* =============================================================================
   Restivo 2 Banner – Layout & Typography Overrides
   ========================================================================== */

/* Container */
.restivo-footer-featured-xl {
  width: 100%;
  padding: 8rem 5vw;
  background-color: #fff;
  text-align: center;
}

/* Intro text container */
.featured-intro-xl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 20px;
}
.featured-intro-xl h2 {
  font-family: var(--ff-head);
  font-weight: var(--fw-thin);
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-head);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.featured-intro-xl p {
  font-family: var(--ff-base);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-base);
  font-size: 0.9375rem;
  color: var(--clr-text);
  max-width: 640px;
  margin: 0 auto;
}

/* Columns layout */
.featured-columns-xl {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Single box */
.featured-box-xl {
  flex: 1 1 600px;
  max-width: 720px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.featured-box-xl .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-box-xl .text-content {
  padding: 2.5rem;
  text-align: center;
}
.featured-box-xl h3 {
  font-family: var(--ff-head);
  font-weight: var(--fw-thin);
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-head);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.featured-box-xl p {
  font-family: var(--ff-base);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-base);
  font-size: 1rem;
  color: var(--clr-text);
  margin-bottom: 2rem;
}

/* Buttons in banners */
.featured-box-xl .btn-discover {
  font-family: var(--ff-base);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  font-size: 0.875rem;
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--clr-text);
  text-decoration: none;
  color: var(--clr-text);
  transition: background var(--transition),
              color var(--transition),
              border-color var(--transition);
  margin-top: 0;
}
.featured-box-xl .btn-discover:hover {
  background: var(--clr-link-hover);
  color: #ffffff;
  border-color: var(--clr-link-hover);
}

/* Responsive padding override */
@media (max-width: 768px) {
  .restivo-footer-featured-xl {
    padding: 4rem 5vw;
  }
}

/* =============================================================================
   Footer global styles – separate module
   ========================================================================== */
.site-footer,
.site-footer .widget,
.site-footer .site-info {
  background-color: #010307;
  color: #a2a3a4;
}
.site-footer a {
  color: #a2a3a4;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .widget-title,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  font-family: var(--ff-head);
  font-weight: var(--fw-thin);
  color: #ffffff;
  margin-bottom: 1rem;
}
.site-footer .site-info {
  font-family: var(--ff-base);
  font-weight: var(--fw-light);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 2rem;
}
.site-footer .social-icons a {
  color: #a2a3a4;
}
.site-footer .social-icons a:hover {
  color: #ffffff;
}
