/* Redeem Vacations — new About Us page content (scoped under .about-page-new) */

.about-page-new {
  --green: #69ad4b;
  --green-dark: #388e2f;
  --green-rule: #7ad45a;
  --trustpilot: #00b67a;
  --text: #121b2a;
  --muted: #5e6673;
  --line: #e3e7ea;
  --soft: #f4f7f5;
  color: var(--text);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

.about-page-new,
.about-page-new * {
  box-sizing: border-box;
}

.about-page-new a {
  text-decoration: none;
  color: inherit;
}

.about-page-new svg.ic {
  display: block;
  flex: none;
}

/* ---- Hero ---- */
.about-page-new .hero {
  min-height: 330px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.05) 100%),
    url('/assets/images/about/hero-bg.jpg') center 45% / cover no-repeat;
  color: #fff;
  padding: 34px 0;
}

.about-page-new .hero-inner {
  width: 1180px;
  max-width: calc(100% - 48px);
  margin: auto;
  padding-left: 90px;
}

.about-page-new .hero h1 {
  font-size: 52px;
  line-height: 1.05;
  max-width: 780px;
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.about-page-new .hero-rule {
  width: 50px;
  height: 7px;
  background: var(--green-rule);
  border-radius: 2px;
  margin: 0 0 18px;
}

.about-page-new .hero p {
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
  max-width: 650px;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* ---- Main / story ---- */
.about-page-new .about-main {
  width: 1180px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  padding: 50px 0 0;
}

.about-page-new .story {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.about-page-new .story h2 {
  color: var(--green-dark);
  font-size: 29px;
  line-height: 1.3;
  margin: 0 0 22px;
  letter-spacing: -0.3px;
  font-weight: 700;
}

.about-page-new .story p {
  color: #2d3340;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.about-page-new .story img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}

/* ---- Pillars (desktop) ---- */
.about-page-new .pillars {
  margin-top: 40px;
  background: var(--soft);
  border: 1px solid #edf0ee;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px 0;
}

.about-page-new .pillar {
  padding: 16px 28px 20px;
  text-align: center;
  position: relative;
}

.about-page-new .pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: #dfe4e0;
}

.about-page-new .icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.about-page-new .icon svg {
  width: 24px;
  height: 24px;
}

.about-page-new .pillar h3 {
  font-size: 14.5px;
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.about-page-new .pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: #333b46;
  margin: 0;
}

/* ---- Bottom (desktop) ---- */
.about-page-new .bottom {
  display: grid;
  grid-template-columns: 220px 1fr 270px;
  gap: 42px;
  align-items: center;
  padding: 36px 0 48px;
}

.about-page-new .trust {
  font-weight: 700;
  text-align: center;
}

.about-page-new .trust .name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 900;
}

.about-page-new .trust .name svg {
  width: 24px;
  height: 24px;
  color: var(--trustpilot);
}

.about-page-new .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 9px;
  justify-content: center;
}

.about-page-new .starbox {
  width: 29px;
  height: 29px;
  background: var(--trustpilot);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.about-page-new .trust small {
  font-size: 12.5px;
  font-weight: 700;
}

.about-page-new .statement {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-page-new .palm {
  width: 64px;
  height: 64px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--green-dark);
}

.about-page-new .palm svg {
  width: 34px;
  height: 34px;
}

.about-page-new .statement h3 {
  font-size: 23px;
  margin: 0 0 6px;
  font-weight: 900;
}

.about-page-new .statement p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.about-page-new .statement .green {
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 5px;
}

.about-page-new .address {
  border-left: 1px solid #ddd;
  padding-left: 34px;
  color: #5b6470;
  font-size: 15px;
  line-height: 1.6;
}

.about-page-new .address a {
  color: #1267d8;
}

.about-page-new .address a:hover {
  text-decoration: underline;
}

/* ---- Tablet collapse (desktop mockup) ---- */
@media (max-width: 900px) {
  .about-page-new .hero-inner {
    padding-left: 0;
  }

  .about-page-new .hero h1 {
    font-size: 38px;
  }

  .about-page-new .story {
    grid-template-columns: 1fr;
  }

  .about-page-new .pillars {
    grid-template-columns: 1fr 1fr;
  }

  .about-page-new .pillar:nth-child(2)::after {
    display: none;
  }

  .about-page-new .bottom {
    grid-template-columns: 1fr;
  }

  .about-page-new .address {
    border-left: 0;
    padding-left: 0;
  }
}

/* ---- Mobile mockup ---- */
@media (max-width: 700px) {
  .about-page-new .hero {
    min-height: 225px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.12)),
      url('/assets/images/about/hero-bg.jpg') 76% 45% / cover no-repeat;
    padding: 0;
  }

  .about-page-new .hero-inner {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 30px 22px;
  }

  .about-page-new .hero h1 {
    font-size: 29px;
    line-height: 1.12;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    max-width: none;
  }

  .about-page-new .hero-rule {
    height: 5px;
    width: 44px;
    margin: 0 0 12px;
  }

  .about-page-new .hero p {
    font-size: 15.5px;
    line-height: 1.4;
    max-width: none;
  }

  .about-page-new .about-main {
    width: auto;
    max-width: none;
    padding: 24px 18px 34px;
  }

  .about-page-new .story h2 {
    font-size: 21px;
    margin: 0 0 16px;
  }

  .about-page-new .story p {
    font-size: 14px;
    line-height: 1.55;
    color: #2e3440;
    margin: 0 0 12px;
  }

  .about-page-new .story img {
    height: auto;
    aspect-ratio: 492 / 300;
    border-radius: 12px;
    margin-top: 16px;
  }

  .about-page-new .pillars {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fafcfb;
    display: block;
    padding: 0;
  }

  .about-page-new .pillar {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px 13px;
    border-bottom: 1px solid var(--line);
    align-items: start;
    text-align: left;
  }

  .about-page-new .pillar:last-child {
    border-bottom: 0;
  }

  .about-page-new .pillar::after {
    display: none;
  }

  .about-page-new .icon {
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .about-page-new .icon svg {
    width: 19px;
    height: 19px;
  }

  .about-page-new .pillar h3 {
    font-size: 12.5px;
    margin: 2px 0 4px;
  }

  .about-page-new .pillar p {
    font-size: 12px;
    line-height: 1.5;
  }

  .about-page-new .bottom {
    display: block;
    padding: 0;
    gap: 0;
  }

  .about-page-new .trust {
    padding: 22px 4px 18px;
  }

  .about-page-new .trust .name {
    font-size: 19px;
    margin-bottom: 9px;
    gap: 6px;
  }

  .about-page-new .trust .name svg {
    width: 22px;
    height: 22px;
  }

  .about-page-new .stars {
    gap: 3px;
    margin-bottom: 8px;
  }

  .about-page-new .starbox {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .about-page-new .trust small {
    font-size: 11.5px;
  }

  .about-page-new .statement {
    border-top: 1px solid #e3e5e3;
    padding: 18px 0 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 13px;
    align-items: start;
  }

  .about-page-new .palm {
    width: 50px;
    height: 50px;
  }

  .about-page-new .palm svg {
    width: 27px;
    height: 27px;
  }

  .about-page-new .statement h3 {
    font-size: 17.5px;
    line-height: 1.15;
    margin: 0 0 6px;
  }

  .about-page-new .statement p {
    font-size: 13px;
    line-height: 1.45;
  }

  .about-page-new .statement .green {
    margin-top: 5px !important;
  }

  .about-page-new .address {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e3e5e3;
    border-left: 0;
    padding-left: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .about-page-new .address a {
    font-weight: 700;
  }
}
