/* =========================================================
   RESET
========================================================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* =========================================================
   VARIABLES
========================================================= */
:root {
  --bg:         #f7f9fd;
  --panel:      #ffffff;
  --fg:         #1a1f2e;
  --text:       #1a1f2e;
  --muted:      #5a6278;
  --line:       rgba(53,88,168,0.15);
  --line-mid:   rgba(53,88,168,0.28);

  --brand:      #3558A8;
  --brand-dark: #2a469a;
  --brand-deep: #1e3580;

  /* Radius-schaal (merkbeslissing 17-07-2026) */
  --radius-btn: 6px;
  --radius-sm:  8px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  18px;
  --radius:     var(--radius-lg); /* legacy alias — was 22px */
  --max:        1060px;
}

/* =========================================================
   BASE
========================================================= */
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */
.header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-weight: 800;
  letter-spacing: .4px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero-brand {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.85;
}
.hero--lg .hero-brand {
  margin-bottom: 0.75rem;
}
.hero-contact a[href*="wa.me"] {
  font-weight: 600;
}
/* =========================================================
   BUTTONS
========================================================= */
.btn {
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(53,88,168,0.45) 0%, transparent 60%),
    linear-gradient(
      120deg,
      rgba(30,53,128,.92),
      rgba(36,58,115,.88)
    ),
    url("hero.jpg") center / cover no-repeat;
  z-index: -1;
}

.hero-inner {
  padding: 18px 0 16px;
  max-width: 920px;
}

.hero--lg .hero-inner {
  padding: 36px 0 32px;
}

.hero h1 {
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.1;
  margin: 0 0 6px;
}

.hero--lg h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.07;
  margin: 0 0 10px;
}

.hero h1 span {
  opacity: .85;
}

.hero p {
  max-width: 720px;
  opacity: .9;
  margin-bottom: 24px;
}

/* Contact info in hero */
.hero-contact {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-contact span {
  opacity: 0.6;
}

.hero-contact a {
  color: inherit;
  text-decoration: none;
}

.hero-contact a:hover {
  text-decoration: none;
}

/* =========================================================
   INTRO CARD (boven services)
========================================================= */

.intro {
  margin-top: 3rem;
}

.intro-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;

  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.intro-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(53, 88, 168, 0.08);
  display: grid;
  place-items: center;
}

.intro-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-content h2 {
  margin: 0 0 0.75rem;
  font-size: 22px;
}

.intro-content p {
  margin: 0;
  color: var(--muted);
  max-width: 1100px;
}

@media (max-width: 900px) {
  .intro-card {
    padding: 2rem;
    grid-template-columns: 1fr;
  }

  .intro-icon {
    width: 48px;
    height: 48px;
  }
}

/* =========================================================
   SERVICES
========================================================= */
.services {
  margin-top: 1rem;
  padding: 1rem 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per rij */
  gap: 3rem;                             /* meer adem */
}

.service {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);

  display: flex;
  flex-direction: column;
}

.service svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .9;
}

.service h2 {
  margin: 0 0 0.25rem;
  font-size: 18px;
}

.service p {
  margin: 0;
  color: var(--muted);
}

/* Dit duwt alles wat volgt (de foto) naar beneden */
.service p {
  margin-bottom: auto;
}

/* Service image altijd onderaan */
.service > img {
  margin-top: 1.25rem;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  margin-top: 1rem;
  padding: 2.5rem 0 3rem;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}

.footer .container {
  max-width: 1100px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .hero-inner {
    padding: 52px 0 40px;
  }
      
      .intro {
          margin-top: 1.5rem;
        }
      
.intro-card {
    padding: 2rem;
  }

  .services {
    grid-template-columns: 1fr;
    padding: 2rem 0;
   
  }

 
 .service > img {
   height: 200px;
 }

 .service-slider .slides img,
 .service-slider .slides video {
   height: 200px;
 }
}

/* ===== PRICING OVERRIDE (FORCE) ===== */
.pricing-table {
  display: block;
}

.pricing-row {
  display: grid !important;
  grid-template-columns: 1.1fr 2.2fr .9fr .9fr !important;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.pricing-row.pricing-head {
  background: rgba(0,0,0,.04);
  font-weight: 700;
}

.pricing-row > div:nth-child(3),
.pricing-row > div:nth-child(4) {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

/* PRICING CARD */
.pricing{
  padding: 80px 0;
}

.pricing-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.pricing-card h2{
  margin: 0 0 12px;
}

.pricing-intro{
  max-width: 990px;
  color: var(--muted);
  margin: 0 0 20px;
}

/* TABLE */
.pricing-table{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.pricing-row{
  display: grid;
  grid-template-columns: 1.1fr 2.2fr .9fr .9fr;
  gap: 16px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.pricing-row:first-child{
  border-top: 0;
}

.pricing-head{
  background: rgba(0,0,0,.03);
  font-weight: 700;
}

.pricing-head small{
  font-weight: 400;
  color: var(--muted);
}

.pricing-row > div:nth-child(3),
.pricing-row > div:nth-child(4){
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-note{
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 990px;
}


@media (max-width: 900px){
  .pricing-row {
    grid-template-columns: 1fr !important;
  }
  .pricing-row > div {
    text-align: left !important;
  }
  .pricing-card{ padding: 22px; }
  .pricing-row{ grid-template-columns: 1fr; }
  .pricing-row > div{ text-align: left !important; }
}

/* =========================
   PRICING — MOBILE FIX
========================= */
@media (max-width: 900px){

  .pricing-card{
    padding: 20px;
  }

  .pricing-table{
    border: none;
    background: transparent;
  }

  /* Header rij verbergen */
  .pricing-head{
    display: none;
  }

  /* Elke rij wordt een card */
  .pricing-row{
    grid-template-columns: 1fr;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 14px;
    background: #fff;
  }

  /* Dienst = titel */
  .pricing-row > div:nth-child(1){
    font-weight: 700;
    font-size: 15px;
  }

  /* Omschrijving */
  .pricing-row > div:nth-child(2){
    color: var(--muted);
    font-size: 14px;
  }

  /* Prijs excl. btw */
  .pricing-row > div:nth-child(3)::before{
    content: "Excl. btw: ";
    font-weight: 600;
    color: var(--muted);
  }

  /* Prijs incl. btw */
  .pricing-row > div:nth-child(4)::before{
    content: "Incl. btw: ";
    font-weight: 600;
    color: var(--muted);
  }

  .pricing-row > div:nth-child(3),
  .pricing-row > div:nth-child(4){
    text-align: left;
    font-weight: 700;
  }
}
/* =========================
   PRICING — HEADER CLEANUP
========================= */
@media (max-width: 900px){

  /* Zorg dat eerste echte rij ook echt de eerste is */
  .pricing-table .pricing-row{
    border-top: none;
  }

  /* spacing reset bovenaan */
  .pricing-table{
    margin-top: 0;
  }
}

/* SLIDER NAV — refined */
.service-slider .nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;

  display: grid;
  place-items: center;

  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  opacity: 0;
  transition: 
    opacity .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.service-slider:hover .nav{
  opacity: 1;
}

.service-slider .prev{ left: 10px; }
.service-slider .next{ right: 10px; }

.service-slider .nav svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hover / focus */
.service-slider .nav:hover{
  background: var(--brand-dark);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.service-slider .nav:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(53,88,168,.35);
}

/* Mobile: altijd zichtbaar, iets kleiner */
@media (max-width: 900px){
  .service-slider .nav{
    opacity: .95;
    width: 32px;
    height: 32px;
  }
}
/* =========================
   SERVICE SLIDER — CORE
========================= */
.service-slider{
  position: relative;
  margin-top: 1.75rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f5f7fb;
}

.service-slider .slides{
  display: flex;                 /* 🔴 ESSENTIEEL */
  width: 100%;
  transition: transform .35s ease;

  }

.service-slider .slides img,
.service-slider .slides video {
  width: 100%;
  flex-shrink: 0;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .service-slider .slides img,
  .service-slider .slides video {
    height: 200px;
  }
}
  
.dc-card-wrap {
  max-width: 1140px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.dc-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

.dc-card-split {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 2rem;
}

.dc-card-text {
  flex: 1;
  color: var(--text);
}

.dc-card-text p {
  margin: 0 0 .75rem 0;
}

.dc-card-text p:last-child {
  margin-bottom: 0;
}

.dc-card-logo {
  flex-shrink: 0;
  text-align: right;
}

.dc-card-logo img {
  transition: transform .2s ease, box-shadow .2s ease;
}

.dc-card-logo a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,23,42,.12);
}

/* Mobile */
@media (max-width: 720px) {
  .dc-card-split {
    flex-direction: column;
    text-align: left;
  }

  .dc-card-logo {
    text-align: center;
    margin-top: 1rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-logo img {
  width: 100px;
  max-width: 16vw;
  opacity: 0.75;
}

.hero--lg .hero-logo img {
  width: 160px;
  max-width: 22vw;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    margin-top: 2rem;
  }

  .hero-logo img {
    width: 160px;
    margin-left: 0;
  }
}


.intro-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(53,88,168,0.08);
  display: grid;
  place-items: center;
}

.intro-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* -----------------------------------------
   HERO LOGO — MOBILE TOP RIGHT CORNER
------------------------------------------ */
@media (max-width: 900px) {

  .hero {
    position: relative; /* anker voor absolute positioning */
  }

  .hero-grid {
    grid-template-columns: 1fr; /* tekst full width */
  }

  .hero-logo {
    position: absolute;
    top: 15px;
    right: 16px;
    margin: 0;
    pointer-events: none; /* puur decoratief */
  }

  .hero-logo img {
    width: 80px;        /* subtiel */
    max-width: none;
    opacity: 0.70;      /* watermerk-gevoel */
  }

  .hero-inner {
    padding-top: 72px;
  }
}


.as-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.as-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand */
.as-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.as-brand img {
  height: 34px;
}

.service-list.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem 1.5rem;
  padding-left: 1.1rem;
}

.service-list.two-cols li {
  margin: 0;
}
/* =========================================================
   SERVICES – LISTS WITH ICON BULLETS
========================================================= */

.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: .45rem 1.5rem;
}

/* 2 kolommen (desktop) */
.service-list.two-cols {
  grid-template-columns: 1fr;
}

/* 1 kolom op mobiel */
@media (max-width: 600px) {
  .service-list.two-cols {
    grid-template-columns: 1fr;
  }
}

.service-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.35;
  font-size: .95rem;
  color: var(--text);
}

/* icon bullet */
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brand);
  opacity: .6;
}

/* =========================================================
   SERVICE HEADER (ICON + TITLE)
========================================================= */

.service {
  display: block;
}

.service > svg {
  width: 36px;
  height: 36px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  margin-right: 14px;
  flex-shrink: 0;
}

.service > h2 {
  color: var(--brand);
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

/* icon + title on one line */
.service > svg,
.service > h2 {
  display: inline-block;
  vertical-align: middle;
}

/* spacing below header */
.service > h2 {
  margin-bottom: .75rem;
}

/* =========================================================
   SERVICES – STRUCTURE & ALIGNMENT
========================================================= */

.service {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);

  display: flex;
  flex-direction: column;
}

/* HEADER: SVG + TITLE */
.service-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: .75rem;
}

.service-header svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Icon container — brand guide stijl */
.service-header-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(53,88,168,0.10);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service-header h2 {
  color: var(--brand);
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

/* LISTS */
.service-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1rem;
  display: grid;
  gap: .45rem 1.5rem;
}

.service-list.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 600px) {
  .service-list.two-cols {
    grid-template-columns: 1fr;
  }
}

.service-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.35;
  font-size: .95rem;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: .55rem;
  height: .55rem;
  background: var(--brand);
  border-radius: 50%;
  opacity: .6;
}

/* DESCRIPTION */
.service-desc {
  color: var(--muted);
  margin-bottom: .75rem;
}

/* SLIDER ALWAYS AT BOTTOM */
.service-slider {
  margin-top: auto;
}
/* =========================================================
   PAGE NAV — BACK LINK (SUBTLE)
========================================================= */

.page-nav {
  margin: 1.25rem 0 2.25rem;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;

  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;

  color: var(--muted);
  text-decoration: none;

  opacity: .85;
  transition: opacity .15s ease, transform .15s ease;
}

.page-back .arrow {
  font-size: 1rem;
  transform: translateY(-1px);
}

.page-back:hover {
  opacity: 1;
  transform: translateX(-2px);
  text-decoration: none;
}
.page-nav-right {
  display: flex;
  justify-content: flex-end;
}

/* =========================
   VIDEO LOADING OVERLAY
========================= */
.video-loading {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  place-items: center;
  z-index: 10;
  border-radius: var(--radius-md);
}
.video-loading.active {
  display: grid;
}
.video-loading svg {
  width: 40px;
  height: 40px;
  stroke: white;
  animation: video-spin 1s linear infinite;
}
@keyframes video-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   OPDRACHTEN — FOTO GALERIJ & UPLOAD
   ============================================================ */

.foto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.foto-thumb {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f1f5f9;
  aspect-ratio: 4/3;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.foto-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.foto-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.foto-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 11px;
  padding: 18px 8px 7px;
  line-height: 1.3;
}

.foto-edit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.foto-edit-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.foto-edit-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f1f5f9;
}

.foto-edit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.foto-del-btn {
  position: absolute;
  top: 5px; right: 5px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  padding: 0;
}

.foto-del-btn:hover { background: #ef4444; }

.foto-caption-input {
  width: 100%;
  padding: 5px 8px;
  font-size: 12px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-btn);
  font-family: inherit;
  color: #475569;
  background: #f8fafc;
  box-sizing: border-box;
}

.foto-caption-input:focus {
  outline: none;
  border-color: #3558A8;
  background: #fff;
}

/* =========================================================
   SG-BACK-PILL — terugknop onder hero op solarguard subpagina's
========================================================= */
.sg-back-pill-wrap {
  padding: 14px 0 0;
  text-align: right;
}

.sg-back-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 5px 9px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(53,88,168,0.07);
  transition: box-shadow .2s, transform .15s, background .15s;
}

.sg-back-pill:hover {
  background: rgba(53,88,168,0.04);
  box-shadow: 0 4px 14px rgba(53,88,168,0.13);
  transform: translateY(-1px);
  text-decoration: none;
}

.sg-back-pill svg {
  flex-shrink: 0;
  transition: transform .15s;
}

.sg-back-pill:hover svg {
  transform: translateX(-2px);
}

/* =========================================================
   PAGE-BACK — terugknop onderaan via page.template.php
========================================================= */
.page-nav {
  padding: 24px 0 40px;
}

.page-nav-right {
  text-align: right;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  opacity: .7;
  transition: opacity .15s;
}

.page-back:hover {
  opacity: 1;
  text-decoration: none;
}

.page-back .arrow {
  display: inline-block;
  transition: transform .15s;
}

.page-back:hover .arrow {
  transform: translateX(-3px);
}
