/* ===== ZOOM FIX: Prevent iOS Safari from zooming on input focus ===== */
/* Force 16px font on all inputs to prevent iOS auto-zoom */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="time"],
textarea,
select {
  font-size: 16px !important;
  padding: 10px 12px;
}

/* Lock viewport when modal is open - AGGRESSIVE iOS zoom prevention */
body.modal-open {
  position: fixed !important;
  width: 100% !important;
  height: 100vh !important;
  overflow: hidden !important;
  top: 0 !important;
  left: 0 !important;
  touch-action: none !important;
}

/* Additional iOS zoom lock on modal itself */
#auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  touch-action: manipulation;
}

/* Force input zoom prevention in modal */
#auth-modal input,
#auth-modal textarea,
#auth-modal select {
  font-size: 16px !important;
  padding: 10px 12px !important;
}

*, *::before, *::after { 
  box-sizing: border-box; 
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Proxima Nova", 'Inter', Arial, sans-serif;
  background: #f4f7fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#course-content h4,
.compact-main-header {
  margin-top: 0px !important;
  margin-bottom: 14px !important;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.video-container {
  margin-top: 2px;
  margin-bottom: 2px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Lesson header styling */
.lesson-header {
  margin-bottom: 15px;
}

/* Video styling - applies to both free and member videos */
.video-js, video, .vjs-tech {
  border-radius: 13px !important; 
  border: 2px solid #87CEEB !important; /* Light blue border */
  overflow: hidden !important; /* Ensure content doesn't leak outside border-radius */
  background: #000 !important; /* Black background for video loading */
  width: 100% !important;
  height: auto !important;
  max-width: 1000px;
  aspect-ratio: 16/9; /* Maintain consistent video proportions */
}

.video-boxes-row {
  background: #f9f9f9;
  border-radius: 14px;      /* Rounded corners */
  box-shadow: 0 4px 18px rgba(10,105,158,0.11); /* Slight shadow */
  padding: 12px;            /* Internal padding */
  margin-bottom: 20px;      /* Margin below */
  display: flex;            /* Make boxes side by side */
  gap: 20px;               /* Space between boxes */
}

.video-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(10,105,158,0.11);
  padding: 8px;            /* Double the padding for more height */
  margin-bottom: 0;
  flex: 1;                  /* Equal width boxes */
  min-height: 250px;        /* Set minimum height for taller boxes */
}

/* Hero boxes - equal height */
.hero-box {
  min-height: 300px;
}

/* Header bottom border */
.site-header {
  border-bottom: 1px solid #ddd;
}

/* Footer top border */
footer {
  border-top: 1px solid #ddd;
}

.register-btn {
  background: linear-gradient(90deg, #0A699E 70%, #33495E 100%);
  color: #fff;
  border-radius: 10px;
  padding: 18px 25px;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 12px;
  margin-bottom: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(10,105,158,0.13);
  width: 100%;
  display: block;
  transition: background 0.22s, box-shadow 0.22s;
}
.register-btn:hover {
  background: linear-gradient(90deg, #33495E 60%, #0A699E 100%);
  box-shadow: 0 8px 24px rgba(10,105,158,0.22);
}

@media (max-width: 900px) {
  .video-boxes-row {
    flex-direction: column;
    gap: 16px;
    padding: 14px;
  }
}
@media (max-width: 800px) {
  .video-boxes-row {
    flex-direction: column;
    gap: 14px;
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .video-boxes-row {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }
}


.video-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 11px 0 15px 0;
  flex-wrap: wrap;
}
.video-controls-row .nav-btn {
  flex-shrink: 0;
  min-width: 50px;
}
.video-controls-row .progress-bar-row {
  flex: 1 1 300px;
  min-width: 180px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  width: 100%;
  z-index: 100;
  top: 0;
  position: relative;
  padding: 0;
}

.header {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  flex-wrap: wrap;
}

.auth-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3rem;
  margin-left: auto;
  min-width: 110px;
  flex-shrink: 0;
  position: relative;
  margin-top: 35px;
  width: 140px;
  height: 64px;
}

#open-auth-btn, .auth-buttons button {
  background: #0A699E;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 9px 15px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(10,105,158,0.09);
  transition: background 0.18s, box-shadow 0.18s;
  text-align: center;
  display: block;
  margin: 0 auto;
  width: 140px;
  min-width: 90px;
  max-width: 140px;
}

#open-auth-btn:hover, .auth-buttons button:hover {
  background: #0A9FFE;
  box-shadow: 0 4px 20px rgba(10,105,158,0.11);
}

#logged-in-span {
  font-size: 0.9rem;
  color: #0573ff;
  font-weight: 500;
  margin-left: 0;
  margin-top: 7px;
  opacity: 1;
  transition: opacity 0.2s;
  display: block;
  text-align: center;
  width: 100%;
  min-height: 24px;
  visibility: visible;
  background: none;
  pointer-events: none;
}

#logged-in-span.hidden {
  visibility: hidden;
  opacity: 0;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
  transition: height 0.3s;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
  font-size: 1.06rem;
  font-weight: 500;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: #0A699E;
  font-size: 18px;
  padding: 7px 14px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.2s, font-weight 0.2s, background 0.3s;
}

.nav-links a:hover {
  color: #0573ff;
  background: #f0f4ff;
  font-weight: bold;
}

#status-span {
  font-size: 0.82rem;
  color: #0573ff;
  margin-left: 10px;
  opacity: 1;
  transition: opacity 0.2s;
}

:root {
  --main-padding-top: 32px;
  --main-padding-left: 24px;
  --main-padding-right: 24px;
}

main {
  padding-top: var(--main-padding-top);
  padding-left: var(--main-padding-left);
  padding-right: var(--main-padding-right);
  flex-grow: 1;
  background: linear-gradient(to right, #0A699E, #0A699E, #0A699E);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#course-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

#auth-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.47);
  align-items: center;
  justify-content: center;
}

#auth-modal.active {
  display: flex;
}

#auth-modal .modal-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(10,105,158,0.09);
  padding: 2rem 1.2rem 1.7rem 1.2rem;
  width: 340px;
  max-width: 340px;
  position: relative;
  animation: fadeIn 0.25s ease-in-out;
}

#auth-modal .close-btn {
  position: absolute;
  right: 18px;
  top: 13px;
  font-size: 1.45rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}

#auth-modal .close-btn:hover {
  color: #555;
}

/* Basic input styling to ensure consistency */
#auth-modal input {
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: 8px 12px !important;
  margin-bottom: 10px;
  font-size: 16px !important;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Ensure buttons have no default styling that could interfere */
#auth-modal button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

video,
.video-js, .vjs-tech {
  width: 100% !important;
  height: 100% !important;
  max-width: 1000px;
  max-height: 1000px;
  border-radius: 13px !important; /* Match the container border-radius */
  border: 2px solid #87CEEB !important; /* Ensure light blue border is always applied */
  overflow: hidden !important; /* Ensure content doesn't leak outside border-radius */
  background: #000 !important; /* Black background for video loading */
}

.video-js.vjs-fullscreen,
.vjs-fullscreen {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  z-index: 99999 !important;
  background: #000 !important;
  display: block !important;
  border-radius: 0 !important;
  border: none !important;
  aspect-ratio: auto !important;
}

/* Ensure the actual video fills the entire fullscreen area */
.vjs-fullscreen .vjs-tech,
.vjs-fullscreen video {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  object-fit: contain !important; /* keep aspect ratio without cropping */
  object-position: center center !important;
  background: #000 !important;
}

.nav-btn {
  background: #737373;
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
}

.nav-btn:hover {
  background: #fff;
  color: #000;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(-20px);} to { opacity: 1; transform: none;} }

.progress-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 5px auto 6px auto;
  width: 100%;
  font-size: 1rem;
  color: #fff;
}
.progress-bar-label {
  min-width: 10px;
  text-align: left;
  font-weight: 300;
}
.progress-bar-percentage {
  min-width: 18px;
  text-align: right;
  font-weight: 300;
}
.progress-bar-container {
  flex: 1;
  margin: 0 16px;
  height: 15px;
  background: #e5e7eb;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.progress-bar-fill {
  background: #33495E;
  height: 100%;
  border-radius: 7px;
  transition: width 0.3s;
}
.buy-now-btn {
  background: linear-gradient(90deg, #16a34a 60%, #0A699E 100%);
  color: #fff;
  border-radius: 7px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 1.09rem;
  margin-bottom: 0.4rem;
  border: none;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: background 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 10px rgba(10,105,158,0.10);
}
.buy-now-btn:hover {
  background: linear-gradient(90deg, #0A699E 60%, #16a34a 100%);
  box-shadow: 0 6px 20px rgba(10,105,158,0.18);
}

/* --- 900px SECTION --- */
@media (max-width: 900px) and (min-width: 801px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 30px 6px;
    border-top: 3px solid #0A699E; /* Example enhancement: highlight section */
  }
  .logo {
    margin-top: 2px;
    margin-left: 10px;
    order: 1;
  }
  .auth-buttons {
    order: 2;
    align-self: flex-end;
    position: absolute;
    top: 47px;
    right: 0;
    margin-top: 0;
  }
  .auth-buttons button, #open-auth-btn {
    font-size: 13px;
    padding: 7px 13px;
    width: 88px;
    min-width: 70px;
    max-width: 110px;
  }
  .nav-links {
    order: 3;
    position: static;
    transform: none;
    margin-top: 18px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }
  .nav-links a {
    font-size: 18px;
    padding: 6px 10px;
  }
}

/* --- 800px SECTION --- */
@media (max-width: 800px) and (min-width: 601px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 24px 4px;
    border-top: 3px solid #0573ff; /* Example enhancement: highlight section */
  }
  .logo {
    margin-top: 2px;
    margin-left: 10px;
    order: 1;
  }
  .auth-buttons {
    order: 2;
    align-self: flex-end;
    position: absolute;
    top: 47px;
    right: 0;
    margin-top: 0;
  }
  .auth-buttons button, #open-auth-btn {
    font-size: 12px;
    padding: 6px 11px;
    width: 75px;
    min-width: 60px;
    max-width: 100px;
  }
  .nav-links {
    order: 3;
    position: static;
    transform: none;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
  }
  .nav-links a {
    font-size: 18px;
    padding: 5px 8px;
  }
}

/* --- 600px SECTION --- */
@media (max-width: 600px) {
  :root {
    --main-padding-top: 30px;
    --main-padding-left: 12px;
    --main-padding-right: 12px;
  }
  .header {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 16px 2px 12px 2px;
    border-top: 3px solid #8cd4ff;
  }
  .logo {
    margin-top: 2px;
    margin-left: 10px;
    order: 1;
  }
  .auth-buttons {
    order: 2;
    align-self: flex-end;
    position: absolute;
    top: 20px;
    right: 10px;
    margin-top: 0;
    width: auto; /* Only as wide as content */
    min-width: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Button aligns right, message below aligns right too */
  }
  .auth-buttons button, #open-auth-btn {
    font-size: 11px;
    padding: 4px 7px;
    width: 62px;
    min-width: 50px;
    max-width: 80px;
  }
  #logged-in-span {
    position: absolute;
    bottom: -15px;
    right: 0;
    margin: 0;
    width: auto;
    white-space: nowrap;
    text-align: right;
    font-size: 0.85rem;
    color: #0573ff;
    background: none;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
  }
  .nav-links {
    order: 3;
    position: static;
    transform: none;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    display: flex;
  }
  .nav-links a {
    font-size: 15px;
    padding: 4px 4px;
    white-space: nowrap;
  }
.nav-btn {
  background: #737373;
  color: #fff;
  border-radius: 10px;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 300;
  font-size: 12px;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
  }
  
  /* Hero boxes stack vertically on mobile */
  .hero-boxes {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: auto !important;
    gap: 16px !important;
  }
  
  .hero-box {
    width: 100% !important;
    min-height: 280px !important;
    max-height: 340px !important;
  }
}


/* Footer Styling - Based on powerbi.html design with semantic classes */
.site-footer {
  background: #23272a;
  color: #fff;
  padding: 38px 0 18px 0;
}

.footer-inner {
  max-width: 950px;
  margin: 0 auto;
}

.footer-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
  justify-items: center;
  text-align: center;
}

.footer-description {
  font-size: 0.97rem;
  color: #d1d5db;
  padding-left: 16px;
  padding-right: 14px;
}

.footer-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 7px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-bottom: 14px;
}

.footer-social .social-link {
  margin: 0 7px;
  display: inline-block;
  transition: opacity 0.2s;
}

.footer-social .social-link:hover {
  opacity: 0.8;
}

.footer-contact {
  font-size: 14px;
  margin-top: 5px;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
}

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

.footer-copy {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #b3c2e0;
  border-top: 1px solid #2a4365;
  padding-top: 10px;
}

/* Footer Mobile Adjustments (applies to all mobile sizes) */
@media (max-width: 900px) {
  .site-footer {
    padding: 28px 0 14px 0 !important;
  }
  .footer-table {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center;
  }
  .footer-title {
    font-size: 0.95rem !important;
  }
  .footer-description,
  .footer-links {
    font-size: 0.85rem !important;
  }
  .footer-social svg {
    width: 20px !important;
    height: 20px !important;
  }
  .footer-contact {
    font-size: 0.8rem !important;
  }
  .footer-copy {
    font-size: 0.75rem !important;
  }
}

/* Smaller mobile footer adjustments */
@media (max-width: 600px) {
  .site-footer {
    padding: 20px 0 12px 0 !important;
  }
  .footer-table {
    gap: 16px !important;
    padding: 0 12px !important;
  }
  .footer-title {
    font-size: 0.9rem !important;
  }
  .footer-description,
  .footer-links {
    font-size: 0.82rem !important;
  }
  .footer-social svg {
    width: 18px !important;
    height: 18px !important;
  }
  .footer-contact {
    font-size: 0.78rem !important;
  }
  .footer-copy {
    font-size: 0.72rem !important;
  }
}

/* Smaller mobile footer adjustments */
@media (max-width: 600px) {
  footer {
    padding: 20px 0 12px 0 !important;
  }
  .footer-table {
    gap: 16px !important;
    padding: 0 12px !important;
  }
  footer div[style*="font-size:1.09rem"] {
    font-size: 0.9rem !important;
  }
  footer div[style*="font-size:0.97rem"],
  footer ul {
    font-size: 0.82rem !important;
  }
  footer svg {
    width: 18px !important;
    height: 18px !important;
  }
  footer div[style*="font-size:0.99rem"] {
    font-size: 0.78rem !important;
  }
  footer div[style*="font-size:0.9rem"] {
    font-size: 0.72rem !important;
  }
}
  footer div[style*="font-size:1.09rem"] {
    font-size: 0.95rem !important;
  }
  footer div[style*="font-size:0.97rem"],
  footer ul {
    font-size: 0.85rem !important;
  }
  footer svg {
    width: 20px !important;
    height: 20px !important;
  }
  footer div[style*="font-size:0.99rem"] {
    font-size: 0.8rem !important;
  }
  footer div[style*="font-size:0.9rem"] {
    font-size: 0.75rem !important;
  }


@keyframes fadeIn { 
  from { opacity: 0; transform: translateY(-20px);} 
  to { opacity: 1; transform: none;} 
}

.progress-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 10px auto 18px auto;
  width: 100%;
  font-size: 1rem;
  color: #fff;
}
.progress-bar-label {
  min-width: 10px;
  text-align: left;
  font-weight: 500;
}
.progress-bar-percentage {
  min-width: 98px;
  text-align: right;
  font-weight: 500;
}
.progress-bar-container {
  flex: 1;
  margin: 0 16px;
  height: 15px;
  background: #e5e7eb; /* light grey for not yet completed */
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.progress-bar-fill {
  background: #33495E; /* progress so far */
  height: 100%;
  border-radius: 7px;
  transition: width 0.3s;
}

.buy-now-btn {
  background: linear-gradient(90deg, #16a34a 60%, #0A699E 100%);
  color: #fff;
  border-radius: 7px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 1.09rem;
  margin-bottom: 0.4rem;
  border: none;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: background 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 10px rgba(10,105,158,0.10);
}

.buy-now-btn:hover {
  background: linear-gradient(90deg, #0A699E 60%, #16a34a 100%);
  box-shadow: 0 6px 20px rgba(10,105,158,0.18);
}


/* -------------------------
   Mobile controls tweaks
   (ensures Back / Progress / Next fit on one row at <=600px)
   ------------------------- */
@media (max-width: 600px) {
  /* Keep the controls on a single line and reduce gaps */
  .video-controls-row {
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin: 8px 8px 12px 6px;
    overflow: visible; /* allow transforms to show outside container */
  }

  /* Make nav buttons centered, slightly larger, and allow them to shrink */
  .video-controls-row .nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;          /* increased horizontal padding so text isn't flush */
    box-sizing: border-box;
    text-align: center;
    font-size: 10px;
    border-radius: 4px;
    min-width: 44px;
    max-width: 51px;            /* a bit more room if needed */
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;                 /* ensure buttons sit above the progress bar if they overlap */
    transition: transform 120ms ease;
  }

  /* shift Back left and Next right by ~5px to free the progress bar */
  .video-controls-row .nav-btn:first-child {
    transform: translateX(-5px);
    margin-left: 2px; /* small positive margin so it doesn't sit exactly at the edge */
  }
  .video-controls-row .nav-btn:last-child {
    transform: translateX(5px);
    margin-right: 2px;
  }

  /* Let the progress area take available space but not force wrapping */
  .video-controls-row .progress-bar-row {
    flex: 1 1 auto;
    min-width: 0; /* allow shrinking */
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Reduce label font sizes so text is shorter */
  .progress-bar-label,
  .progress-bar-percentage {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Reduce the percentage area's minimal width */
  .progress-bar-percentage {
    min-width: 38px;
    text-align: right;
  }

  /* Thinner progress bar for mobile */
  .progress-bar-container {
    height: 10px;
    margin: 0 6px;
  }

  .progress-bar-fill {
    height: 100%;
  }

  /* If space is still very tight, allow the label to truncate */
  .progress-bar-label {
    max-width: 92px; /* increased so "Lesson: 1/8" fits */
  }
}

/* Footer font bump: increase inline font-sizes by +2px on live */
.footer-tagline {
  font-size: 16px;
}

footer [style*="font-size:1.09rem"] { font-size: calc(1.09rem + 2px) !important; }
footer [style*="font-size:0.99rem"] { font-size: calc(0.99rem + 2px) !important; }
footer [style*="font-size:0.97rem"] { font-size: calc(0.97rem + 2px) !important; }
footer [style*="font-size:0.9rem"]  { font-size: calc(0.9rem + 2px) !important; }
