/*
 * Imam Ali Theme — Elementor Addons
 *
 * Elementor ships a global reset, `.elementor img { height: auto; border-radius: 0; }`.
 * Its selector (a class plus an element) outranks Tailwind's one-class utilities,
 * so inside Elementor the widgets' fixed image heights and rounded corners quietly
 * stop applying: hero and banner photos stop filling their box and sit pinned to
 * its top instead of centred, card images come out at whatever height the file
 * happens to be, and the big section images lose their rounded corners.
 * These rules put those utilities back, for the Imam Ali widgets only.
 */
[class*="elementor-widget-ia-"] img.h-full      { height: 100%; }
[class*="elementor-widget-ia-"] img.h-14        { height: 3.5rem; }
[class*="elementor-widget-ia-"] img.h-\[64px\]  { height: 64px; }
[class*="elementor-widget-ia-"] img.h-\[80px\]  { height: 80px; }
[class*="elementor-widget-ia-"] img.h-\[220px\] { height: 220px; }
[class*="elementor-widget-ia-"] img.h-\[300px\] { height: 300px; }
[class*="elementor-widget-ia-"] img.h-\[320px\] { height: 320px; }
[class*="elementor-widget-ia-"] img.rounded-xl  { border-radius: 0.75rem; }
[class*="elementor-widget-ia-"] img.rounded-2xl { border-radius: 1rem; }

/*
 * ── IA Hero Slider: the static hero ──────────────────────────────
 * The photo is printed as it was uploaded — no resized copy, no srcset and
 * nothing laid over it — so these rules only decide how much of it is in view.
 * On a wide screen the text sits on the picture, left and vertically centred;
 * on a phone the picture takes the top of the screen and the text follows
 * underneath it, with --ia-hero-mobile-gap of free space between the two.
 */
.ia-hero-static {
  --ia-hero-mobile-image: 380px;
  --ia-hero-mobile-gap: 28px;
  position: relative;
  font-family: 'Manrope', system-ui, sans-serif;
}
.ia-hero-static .ia-hero-static__desktop { display: none; }
.ia-hero-static .ia-hero-static__mobile { display: block; }

@media (min-width: 1024px) {
  .ia-hero-static .ia-hero-static__desktop { display: block; }
  .ia-hero-static .ia-hero-static__mobile { display: none; }
}

.ia-hero-static .ia-hero-static__desktop {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
}
.ia-hero-static .ia-hero-static__desktop .ia-hero-static__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
.ia-hero-static .ia-hero-static__text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.ia-hero-static .ia-hero-static__inner { width: 100%; max-width: 1440px; margin: 0 auto; }

/* Phone: picture on top, text below it. */
.ia-hero-static .ia-hero-static__mobile .ia-hero-static__image {
  width: 100%;
  height: var(--ia-hero-mobile-image);
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
.ia-hero-static .ia-hero-static__panel {
  padding: var(--ia-hero-mobile-gap) 24px 48px;
}
@media (min-width: 768px) {
  .ia-hero-static .ia-hero-static__panel { padding-left: 48px; padding-right: 48px; }
}

/* Light: the article's own dark brown on cream. Dark: white on brown. */
.ia-hero-static.is-light .ia-hero-static__panel { background: var(--e-global-color-ia-cream, #f5f0e8); }
.ia-hero-static.is-dark  .ia-hero-static__panel { background: var(--e-global-color-text, #2a1b0f); }

.ia-hero-static .ia-hero-static__eyebrow {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .44px;
  text-transform: uppercase;
  color: var(--e-global-color-primary, #068f5f);
}
.ia-hero-static .ia-hero-static__title {
  margin: 0 0 20px;
  max-width: 720px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.12;
}
.ia-hero-static .ia-hero-static__title a { color: inherit; text-decoration: none; transition: color .2s; }
.ia-hero-static .ia-hero-static__title a:hover { color: var(--e-global-color-primary, #068f5f); }
.ia-hero-static .ia-hero-static__excerpt {
  margin: 0 0 32px;
  max-width: 540px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .ia-hero-static .ia-hero-static__title { font-size: 72px; }
  .ia-hero-static .ia-hero-static__excerpt { font-size: 17px; }
}

.ia-hero-static.is-light .ia-hero-static__title   { color: var(--e-global-color-text, #2a1b0f); }
.ia-hero-static.is-light .ia-hero-static__excerpt { color: rgba(42, 27, 15, .75); }
.ia-hero-static.is-light .ia-hero-static__meta    { color: rgba(42, 27, 15, .5); }
.ia-hero-static.is-dark  .ia-hero-static__title   { color: #fff; }
.ia-hero-static.is-dark  .ia-hero-static__excerpt { color: rgba(255, 255, 255, .7); }
.ia-hero-static.is-dark  .ia-hero-static__meta    { color: rgba(255, 255, 255, .5); }

.ia-hero-static .ia-hero-static__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.ia-hero-static .ia-hero-static__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--e-global-color-primary, #068f5f);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(6, 143, 95, .4);
  transition: background-color .2s;
}
.ia-hero-static .ia-hero-static__button:hover { background: var(--e-global-color-secondary, #056b47); }
.ia-hero-static .ia-hero-static__meta { font-size: 13px; font-weight: 500; }

/* ── IA Quotes Block ───────────────────────────────────────────── */
.ia-quotes {
  padding: 80px 24px;
  background-color: var(--e-global-color-primary, #068f5f);
  font-family: 'Manrope', system-ui, sans-serif;
  overflow: hidden;
}
@media (min-width: 768px) { .ia-quotes { padding-left: 48px; padding-right: 48px; } }
@media (min-width: 1024px) { .ia-quotes { padding-left: 80px; padding-right: 80px; } }

.ia-quotes .ia-quotes__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ia-quotes .ia-quotes__mark { margin-bottom: 28px; color: rgba(255, 255, 255, .28); }

/* Every quote shares one grid cell, so the band is as tall as the longest of
   them and swapping between them never moves the page. */
.ia-quotes .ia-quotes__stage { display: grid; width: 100%; }
.ia-quotes .ia-quotes__slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease, visibility 0s linear .6s;
}
.ia-quotes .ia-quotes__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .6s ease, transform .6s ease, visibility 0s;
}
.ia-quotes .ia-quotes__text {
  margin: 0;
  padding: 0;
  border: 0;
  quotes: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: #fff;
}
@media (min-width: 768px) { .ia-quotes .ia-quotes__text { font-size: 36px; } }
.ia-quotes .ia-quotes__author {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  color: rgba(255, 255, 255, .72);
}

.ia-quotes .ia-quotes__controls {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ia-quotes .ia-quotes__arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.ia-quotes .ia-quotes__arrow:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .5); }
.ia-quotes .ia-quotes__dots { display: flex; align-items: center; gap: 8px; }
.ia-quotes .ia-quotes__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: width .3s ease, background-color .3s ease;
}
.ia-quotes .ia-quotes__dot.is-active { width: 26px; background: #fff; }

@media (prefers-reduced-motion: reduce) {
  .ia-quotes .ia-quotes__slide,
  .ia-quotes .ia-quotes__slide.is-active { transition: none; transform: none; }
}

/* ── IA Banner Section ─────────────────────────────────────────── */
.ia-banner-section-widget .ia-banner__bg {
  max-width: none;
  object-fit: cover;
}

/* ── IA Featured Articles Grid: list thumbnails ────────────────── */
/* A fixed frame that does not stretch with the text beside it, so the image
   always fills it and every corner stays rounded. */
.ia-featured-grid-widget .ia-thumb {
  width: 140px;
  height: 110px;
  flex-shrink: 0;
  align-self: flex-start;
}

/*
 * ── Footer widgets ───────────────────────────────────────────────
 * The two footer widgets carry their own styles instead of utility classes,
 * and every selector is two classes deep, so page, article or Elementor
 * "Theme Style" rules for links and headings cannot restyle them. Colours
 * follow Elementor's Global Colors, with the theme palette as the fallback.
 *
 * Their layouts follow the widget's own width (container queries), not the
 * window's, so they fit wherever they are placed — including the Elementor
 * editor, where the canvas is narrower than the screen. The side padding
 * still follows the window, to line up with the header and page content.
 */
.ia-flinks,
.ia-footer {
  container-type: inline-size;
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
  font-family: 'Manrope', system-ui, sans-serif;
}
@media (min-width: 768px) {
  .ia-flinks, .ia-footer { padding-left: 48px; padding-right: 48px; }
}
@media (min-width: 1024px) {
  .ia-flinks, .ia-footer { padding-left: 80px; padding-right: 80px; }
}

/* ── IA Footer — Chapter Links ── */
.ia-flinks {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: var(--e-global-color-ia-cream, #f5f0e8);
  border-top: 1px solid var(--e-global-color-ia-border, #d9cec0);
}
/* Columns per row as the widget narrows; the counts come from the widget
   (all of them on a wide row, balanced rows below that). */
.ia-flinks .ia-flinks__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(var(--ia-cols-sm, 2), minmax(0, 1fr));
}
@container (min-width: 600px)  { .ia-flinks .ia-flinks__grid { grid-template-columns: repeat(var(--ia-cols-md, 3), minmax(0, 1fr)); } }
@container (min-width: 900px)  { .ia-flinks .ia-flinks__grid { grid-template-columns: repeat(var(--ia-cols-lg, 4), minmax(0, 1fr)); } }
@container (min-width: 1100px) { .ia-flinks .ia-flinks__grid { grid-template-columns: repeat(var(--ia-cols-xl, 5), minmax(0, 1fr)); } }
@container (min-width: 1300px) { .ia-flinks .ia-flinks__grid { grid-template-columns: repeat(var(--ia-cols, 5), minmax(0, 1fr)); } }

.ia-flinks .ia-flinks__col { min-width: 0; }
.ia-flinks .ia-flinks__heading {
  display: block;
  margin: 0 0 20px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--e-global-color-text, #2a1b0f);
  text-decoration: none;
  transition: color .2s;
}
.ia-flinks a.ia-flinks__heading:hover { color: var(--e-global-color-primary, #068f5f); }

.ia-flinks .ia-flinks__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ia-flinks .ia-flinks__item {
  display: flex;
  align-items: flex-start; /* the arrow stays on the first line when a title wraps */
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.375;
}
.ia-flinks .ia-flinks__item::before,
.ia-flinks .ia-flinks__item::marker { content: none; }
.ia-flinks .ia-flinks__icon {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  /* centre the 7px arrow on the first line of text */
  margin-top: calc((1.375em - 7px) / 2);
  color: var(--e-global-color-primary, #068f5f);
  opacity: .5;
  transition: opacity .2s;
}
.ia-flinks .ia-flinks__item:hover .ia-flinks__icon { opacity: 1; }
.ia-flinks .ia-flinks__link {
  min-width: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.375;
  color: #4a3828;
  text-decoration: none;
  overflow-wrap: break-word;
  transition: color .2s;
}
.ia-flinks .ia-flinks__item:hover .ia-flinks__link { color: var(--e-global-color-primary, #068f5f); }
.ia-flinks .ia-flinks__hint {
  margin: 0;
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
  color: var(--e-global-color-ia-muted, #6b5a47);
}

/* ── IA Footer — Brand, Sites & Newsletter ── */
.ia-footer {
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: var(--e-global-color-text, #2a1b0f);
  color: #fff;
}
/* Narrow: one column. Medium: brand | newsletter, sister sites across below.
   Wide: brand | sites | newsletter. */
.ia-footer .ia-footer__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr);
}
@container (min-width: 720px) and (max-width: 1023.98px) {
  .ia-footer .ia-footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  /* The cards run the full width here, so they sit side by side whatever the
     widget's own "cards per row" setting says. */
  .ia-footer .ia-footer__grid:has(.ia-footer__newsletter) .ia-footer__sites { grid-column: 1 / -1; grid-row: 2; }
  .ia-footer .ia-footer__sites { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@container (min-width: 1024px) {
  .ia-footer .ia-footer__grid { grid-template-columns: var(--ia-footer-cols, minmax(0, 1fr) 260px 360px); }
}

.ia-footer .ia-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.ia-footer .ia-footer__logo { display: inline-block; align-self: flex-start; line-height: 0; }
.ia-footer .ia-footer__logo img {
  height: 80px;
  width: auto;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
}
.ia-footer .ia-footer__wordmark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  line-height: 1.2;
  color: #fff;
}
.ia-footer .ia-footer__email {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color .2s;
}
@container (min-width: 480px) { .ia-footer .ia-footer__email { font-size: 32px; } }
.ia-footer .ia-footer__email:hover { color: var(--e-global-color-primary, #068f5f); }

.ia-footer .ia-footer__social { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.ia-footer .ia-footer__social-label {
  margin-right: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .44px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}
.ia-footer .ia-footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  transition: color .2s, border-color .2s;
}
.ia-footer .ia-footer__social-link:hover { color: #fff; border-color: rgba(255, 255, 255, .4); }
.ia-footer .ia-footer__about {
  margin: 4px 0 0;
  max-width: 480px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, .25);
}

/* One column of cards on a phone; --ia-sites-cols (set by the widget) takes
   over once there is room, so four sites read as two rows of two. */
.ia-footer .ia-footer__sites {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-content: start;
}
@container (min-width: 480px) {
  .ia-footer .ia-footer__sites { grid-template-columns: repeat(var(--ia-sites-cols, 1), minmax(0, 1fr)); }
}
.ia-footer .ia-site-card {
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow .2s;
}
.ia-footer .ia-site-card:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, .15); }
.ia-footer .ia-site-card__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
}
/* Two cards abreast leaves each of them less room. The variable is written on
   the grid, which is where the widget sets it. */
.ia-footer .ia-footer__grid[style*="--ia-sites-cols:2"] .ia-site-card { padding: 18px; gap: 14px; }
.ia-footer .ia-footer__grid[style*="--ia-sites-cols:2"] .ia-site-card__logo { width: 48px; height: 48px; }
.ia-footer .ia-site-card__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ia-footer .ia-site-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
  line-height: 1.25;
  color: #1a4a2e;
  transition: opacity .2s;
}
.ia-footer .ia-site-card:hover .ia-site-card__title { opacity: .8; }
.ia-footer .ia-site-card__text { font-size: 12px; font-weight: 500; line-height: 1.6; color: #3a2a1a; }

.ia-footer .ia-footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
}
.ia-footer .ia-footer__nl-title {
  margin: 0 0 4px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}
.ia-footer .ia-footer__nl-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, .55);
}
.ia-footer .ia-footer__form { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.ia-footer .ia-footer__input {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}
.ia-footer .ia-footer__input::placeholder { color: rgba(255, 255, 255, .3); }
.ia-footer .ia-footer__input:focus { border-color: rgba(6, 143, 95, .6); }
.ia-footer .ia-footer__button {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--e-global-color-primary, #068f5f);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(6, 143, 95, .35);
  transition: background-color .2s;
}
.ia-footer .ia-footer__button:hover { background: var(--e-global-color-secondary, #056b47); }
.ia-footer .ia-footer__button:disabled { opacity: .7; cursor: default; }
.ia-footer .ia-footer__fineprint {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, .3);
}
/* Empty until MailPoet answers, so it takes no room before then. */
.ia-footer .ia-footer__nl-status {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.ia-footer .ia-footer__nl-status:empty { display: none; }
.ia-footer .ia-footer__nl-status.is-ok { color: #7fe3bb; }
.ia-footer .ia-footer__nl-status.is-error { color: #ffb4ab; }

/*
 * A MailPoet form dropped into the footer brings its own light-background
 * styling; these put it on the dark bar without touching MailPoet itself.
 */
.ia-footer .ia-footer__mailpoet .mailpoet_form { padding: 0; background: none; }
.ia-footer .ia-footer__mailpoet .mailpoet_paragraph { margin-bottom: 12px; }
.ia-footer .ia-footer__mailpoet .mailpoet_paragraph:last-child { margin-bottom: 0; }
.ia-footer .ia-footer__mailpoet label,
.ia-footer .ia-footer__mailpoet .mailpoet_text_label,
.ia-footer .ia-footer__mailpoet .mailpoet_segment_label,
.ia-footer .ia-footer__mailpoet .mailpoet_checkbox_label,
.ia-footer .ia-footer__mailpoet p { color: rgba(255, 255, 255, .55); font-size: 13px; }
.ia-footer .ia-footer__mailpoet input[type="text"],
.ia-footer .ia-footer__mailpoet input[type="email"],
.ia-footer .ia-footer__mailpoet textarea,
.ia-footer .ia-footer__mailpoet select {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14px;
  color: #fff;
}
.ia-footer .ia-footer__mailpoet input::placeholder,
.ia-footer .ia-footer__mailpoet textarea::placeholder { color: rgba(255, 255, 255, .3); }
.ia-footer .ia-footer__mailpoet input[type="submit"],
.ia-footer .ia-footer__mailpoet button[type="submit"] {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--e-global-color-primary, #068f5f);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(6, 143, 95, .35);
}
.ia-footer .ia-footer__mailpoet .mailpoet_validate_success { color: #7fe3bb; }
.ia-footer .ia-footer__mailpoet .mailpoet_validate_error { color: #ffb4ab; }
.ia-footer .ia-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
