/*
Theme Name: Green Captions Simple
Theme URI: https://greencaptions.com
Author: Ahtasham Ali
Description: Clean, bright, flat editorial theme for Green Captions. No 3D-looking effects, no box shapes, no animation. No comments, no tags, no newsletter.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: gcs
*/

/* ==========================================================================
   DESIGN TOKENS — bright green, flat, rounded
   ========================================================================== */
:root{
  --ink:        #1F2A22;
  --ink-soft:   #4B5A4E;
  --paper:      #FFFFFF;
  --paper-alt:  #F0FDF4;
  --green:      #05B540;
  --green-dark: #048A32;
  --teal:       #0D9488;
  --lime:       #84CC16;
  --line:       #E2E8DD;
  --white:      #FFFFFF;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --content-width: 1180px;
  --article-width: 720px;

  --radius-card: 16px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
li{ list-style: none; margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}
:focus-visible{ outline: 2px solid var(--green-dark); outline-offset: 2px; }

.wrap{ max-width: var(--content-width); margin: 0 auto; padding: 0 24px; }

/* Page load: every main content block eases up into place once. */
@keyframes gcs-fade-up{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
.post-grid-section,
.article-hero,
.page-content{
  animation: gcs-fade-up 0.5s ease both;
}
.skip-link{ position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white); padding: 10px 16px; z-index: 200; }
.skip-link:focus{ left: 16px; top: 16px; }

/* ==========================================================================
   HEADER — bright green, flat, no shadow tricks
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--white) 0%, var(--green) 100%);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.site-logo{
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.2s ease;
}
.site-logo:hover{ transform: scale(1.04); }
.site-logo img,
.site-logo .custom-logo-link img,
.custom-logo{
  max-height: 38px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}
.site-logo .custom-logo-link{ display: flex; align-items: center; }
.site-logo .leaf{
  background: var(--green);
  color: var(--white);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  animation: gcs-leaf-float 3s ease-in-out infinite;
}
@keyframes gcs-leaf-float{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-3px) rotate(-8deg); }
}
@media (prefers-reduced-motion: reduce){
  .site-logo .leaf{ animation: none; }
}

.header-actions{ display: flex; align-items: center; gap: 10px; }
.header-search-toggle,
.hamburger{
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}
.hamburger{ display: flex; flex-direction: column; gap: 4px; }
.header-search-toggle:hover,
.hamburger:hover{ background: rgba(255,255,255,0.3); transform: translateY(-2px) scale(1.05); }
.header-search-toggle:active,
.hamburger:active{ transform: translateY(0) scale(0.94); }
.hamburger span{ width: 18px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.2s var(--ease), opacity 0.2s var(--ease); }
.hamburger.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Drawer menu — the only navigation, on every screen size */
.mobile-menu{
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 86vw);
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.25s var(--ease);
  z-index: 150;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.is-open{ transform: translateX(0); }
.mobile-menu-header{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-menu-header button{
  width: 36px; height: 36px;
  border: none;
  background: var(--paper-alt);
  color: var(--ink);
  border-radius: 50%;
}
.mobile-menu a{
  display: block;
  padding: 15px 16px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper-alt);
  border-radius: 12px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), transform 0.15s var(--ease);
}
.mobile-menu a:hover{ background: var(--green); color: var(--white); transform: translateX(4px); }

/* Menu items ease in one after another when the drawer opens. */
.mobile-menu-list li a{ opacity: 0; transform: translateX(16px); }
.mobile-menu.is-open .mobile-menu-list li a{
  animation: gcs-menu-item-in 0.3s var(--ease) forwards;
}
.mobile-menu.is-open .mobile-menu-list li:nth-child(1) a{ animation-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu-list li:nth-child(2) a{ animation-delay: 0.10s; }
.mobile-menu.is-open .mobile-menu-list li:nth-child(3) a{ animation-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu-list li:nth-child(4) a{ animation-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu-list li:nth-child(5) a{ animation-delay: 0.25s; }
@keyframes gcs-menu-item-in{
  from{ opacity: 0; transform: translateX(16px); }
  to{ opacity: 1; transform: translateX(0); }
}

.menu-scrim{
  position: fixed;
  inset: 0;
  background: rgba(31,42,34,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
  z-index: 140;
}
.menu-scrim.is-open{ opacity: 1; pointer-events: auto; }
body.menu-locked{ overflow: hidden; }

/* Search panel */
.search-panel{ max-height: 0; overflow: hidden; background: var(--green-dark); transition: max-height 0.25s var(--ease); }
.search-panel.is-open{ max-height: 90px; }
.search-panel form{ display: flex; gap: 8px; padding: 16px 0; }
.search-panel input[type="search"]{ flex: 1; border: 2px solid transparent; background: var(--white); padding: 12px 16px; border-radius: 999px; font-size: 15px; font-family: var(--font); transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease); }
.search-panel input[type="search"]:focus{ outline: none; border-color: var(--lime); box-shadow: 0 0 0 4px rgba(132,204,22,0.25); }

/* Generic focus animation for any form on the site (contact form,
   search box) — a soft glow appears around the active field. */
.page-content input:not([type="submit"]),
.page-content textarea,
.page-content select{
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.page-content input:not([type="submit"]):focus,
.page-content textarea:focus,
.page-content select:focus{
  outline: none;
  border-color: var(--green) !important;
  box-shadow: 0 0 0 4px rgba(5,181,64,0.15);
}
.search-panel button{ background: var(--white); color: var(--green-dark); border: none; padding: 0 22px; border-radius: 999px; font-weight: 600; }

/* ==========================================================================
   HOME INTRO
   ========================================================================== */
.home-intro{ padding: 52px 0 40px; background: var(--paper-alt); }
.home-intro h1{ font-size: clamp(30px, 4vw, 44px); max-width: 720px; margin-bottom: 14px; }
.home-intro p{ max-width: 560px; color: var(--ink-soft); font-size: 17px; }
.home-intro-categories{ display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.cat-chip{
  padding: 9px 18px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  color: var(--ink);
  transition: background 0.15s var(--ease), color 0.15s var(--ease), transform 0.15s var(--ease);
}
.cat-chip:hover{ background: var(--green); color: var(--white); transform: translateY(-2px); }

/* ==========================================================================
   POST GRID / CARDS — uniform, flat at rest, gentle lift + zoom on hover
   ========================================================================== */
.post-grid-section{ padding: 44px 0 60px; position: relative; overflow: hidden; }

/* Soft, slow-drifting glow behind the top of the homepage —
   purely decorative, very low opacity, non-distracting. */
.post-grid-section::before{
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: 560px;
  height: 560px;
  margin-left: -280px;
  background: radial-gradient(circle, rgba(5,181,64,0.10) 0%, rgba(5,181,64,0) 70%);
  border-radius: 50%;
  animation: gcs-bg-drift 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.post-grid-section .wrap{ position: relative; z-index: 1; }
@keyframes gcs-bg-drift{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(40px, 30px) scale(1.12); }
}
@media (prefers-reduced-motion: reduce){
  .post-grid-section::before{ animation: none; }
}

/* The first row of cards eases in immediately on page load,
   staggered, instead of waiting for scroll. */
.post-grid .post-card:nth-child(1),
.post-grid .post-card:nth-child(2){
  animation: gcs-fade-up 0.6s var(--ease) both;
}
.post-grid .post-card:nth-child(1){ animation-delay: 0.05s; }
.post-grid .post-card:nth-child(2){ animation-delay: 0.15s; }
.post-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }

.post-card{
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  opacity: 0;
  transform: translateY(16px);
}
.post-card.in-view{
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.post-card:hover{
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(31,42,34,0.10);
}

.card-media{
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper-alt);
}
.card-media-link{ display: block; width: 100%; height: 100%; }
.card-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.post-card:hover .card-media img{ transform: scale(1.06); }

.card-body{ padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

/* Category badge — simple rounded pill overlay, no rotation, no animation */
.card-category{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  color: var(--white);
}
.cat-captions .card-category{ background: var(--green-dark); }
.cat-quotes .card-category{ background: var(--teal); }
.cat-wishes .card-category{ background: var(--lime); color: var(--ink); }

.card-title{ font-size: 19px; line-height: 1.3; }
.card-title a{ transition: color 0.15s var(--ease); }
.post-card:hover .card-title a{ color: var(--green-dark); }

.card-meta{ margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); }
.card-meta img{ width: 22px; height: 22px; border-radius: 50%; }

.read-more{ display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--green-dark); transition: gap 0.2s var(--ease); }
.post-card:hover .read-more{ gap: 10px; }

/* Responsive tuning: base layout above is 2 posts per row for
   tablets and desktops. Phones drop to a single column, and very
   small phones get tighter spacing so nothing feels cramped. */
@media (max-width: 640px){
  .post-grid{ grid-template-columns: 1fr; gap: 24px; }
  .post-grid-section{ padding: 32px 0 44px; }
}
@media (max-width: 380px){
  .wrap{ padding: 0 16px; }
  .post-grid{ gap: 20px; }
  .card-body{ padding: 14px; }
}

/* ==========================================================================
   PAGINATION — circular, flat, gentle hover lift
   ========================================================================== */
.site-pagination{ display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.site-pagination a,
.site-pagination span{
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  padding: 0 8px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.site-pagination a:hover{ background: var(--paper-alt); border-color: var(--green); transform: translateY(-2px); }
.site-pagination a:active{ transform: translateY(0); }
.site-pagination .current{ background: var(--green); color: var(--white); border-color: var(--green); }
.site-pagination .dots{ border: none; background: none; }

/* ==========================================================================
   ARTICLE HERO + CONTENT
   ========================================================================== */
.article-hero{ padding: 40px 0 0; background: var(--paper-alt); }
.article-hero-inner{ max-width: var(--article-width); margin: 0 auto; padding-bottom: 36px; }
.article-category{
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  margin-bottom: 16px;
}
.article-hero h1{ font-size: clamp(28px, 4.2vw, 44px); margin-bottom: 18px; }
.article-meta{ display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 14px; flex-wrap: wrap; }
.article-meta img{ width: 32px; height: 32px; border-radius: 50%; }
.article-meta .divider{ color: var(--line); }

.article-featured-image{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 36px;
}
.article-featured-image img{ width: 100%; height: 100%; object-fit: cover; }

.article-body{ max-width: var(--article-width); margin: 0 auto; padding: 0 0 60px; }
.article-body p{ margin: 0 0 20px; color: var(--ink-soft); font-size: 18px; }
.article-body h2{ font-size: clamp(22px, 2.6vw, 27px); margin: 44px 0 16px; }
.article-body h3{ font-size: 20px; margin: 30px 0 14px; }
.article-body ul, .article-body ol{ margin: 0 0 20px; padding-left: 22px; color: var(--ink-soft); }
.article-body li{ margin-bottom: 8px; list-style: revert; }

/* Caption / quote lines get a small copy button. Flex layout,
   no motion — only a background/color change on hover or click. */
.article-body p.caption-line,
.article-body li.caption-line{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--paper-alt);
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  list-style: none;
  transition: background 0.15s var(--ease);
}
.article-body p.caption-line:hover,
.article-body li.caption-line:hover{ background: #E4F8EC; }
.caption-copy-btn{
  flex-shrink: 0;
  border: none;
  background: var(--white);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), transform 0.15s var(--ease);
}
.caption-copy-btn:hover{ background: var(--green); color: var(--white); transform: scale(1.06); }
.caption-copy-btn:active{ transform: scale(0.95); }
.article-body img{ border-radius: var(--radius-card); margin: 8px 0 26px; }
.article-body blockquote{
  border-left: 4px solid var(--green);
  background: var(--paper-alt);
  margin: 26px 0;
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  font-weight: 600;
  font-size: 19px;
  color: var(--green-dark);
}
.article-body a{ color: var(--green-dark); text-decoration: underline; text-decoration-color: var(--line); }
.article-body a:hover{ text-decoration-color: var(--green-dark); }

/* Table of contents */
.article-toc{ max-width: var(--article-width); margin: 0 auto 36px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--white); }
.article-toc summary{ cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: 17px; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.article-toc summary::-webkit-details-marker{ display: none; }
.article-toc summary::after{ content: "+"; font-size: 20px; color: var(--green-dark); transition: transform 0.25s var(--ease); }
.article-toc[open] summary::after{ content: "+"; transform: rotate(135deg); }
.article-toc ul{ padding: 0 20px 16px; margin: 0; }
.article-toc li{ padding: 6px 0; }
.article-toc a{ font-size: 15px; color: var(--ink-soft); }
.article-toc a:hover{ color: var(--green-dark); }

/* Smooth accordion open/close for TOC + FAQ (details/summary snaps
   instantly by default — this animates the content height instead). */
.article-toc > *:not(summary),
.faq-item > *:not(summary){ display: block !important; }
.article-toc .details-content,
.faq-item .details-content{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease);
}
.article-toc[open] .details-content,
.faq-item[open] .details-content{ max-height: 1200px; opacity: 1; }

.article-faq{ max-width: var(--article-width); margin: 36px auto; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-item summary{ list-style: none; cursor: pointer; padding: 16px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 600; font-size: 17px; transition: color 0.15s var(--ease); }
.faq-item summary:hover{ color: var(--green-dark); }
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{ content: "+"; color: var(--green-dark); font-size: 20px; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.faq-item[open] summary::after{ content: "+"; transform: rotate(135deg); }
.faq-item p{ padding: 0 4px 18px; color: var(--ink-soft); margin: 0; }

/* Related posts */
.related-posts{ background: var(--paper-alt); padding: 52px 0; }
.related-posts h2{ font-size: 24px; margin-bottom: 22px; }
.related-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px){ .related-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .related-grid{ grid-template-columns: 1fr; } }

/* Footer never had a responsive fallback — it would stay cramped
   into 3 tight columns on tablets and phones without this. */
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; gap: 24px; }
  .header-inner{ height: 72px; }
  .site-logo{ font-size: 19px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: linear-gradient(90deg, var(--white) 0%, var(--green) 100%); color: var(--ink); padding: 52px 0 26px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(31,42,34,0.15); }
.footer-brand .site-logo{ color: var(--ink); }
.footer-brand p{ margin-top: 12px; color: var(--ink-soft); max-width: 320px; font-size: 15px; }
.footer-col h4{ font-size: 14px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.footer-col a{ display: block; padding: 6px 0; font-size: 15px; color: var(--ink-soft); transition: color 0.15s var(--ease), transform 0.15s var(--ease); }
.footer-col a:hover{ color: var(--green-dark); transform: translateX(4px); }
.footer-social{ display: flex; gap: 10px; margin-top: 16px; }
.footer-social a{ width: 38px; height: 38px; border-radius: 50%; background: rgba(31,42,34,0.08); border: 1px solid rgba(31,42,34,0.15); color: var(--ink); display: flex; align-items: center; justify-content: center; transition: background 0.15s var(--ease), transform 0.15s var(--ease), color 0.15s var(--ease); }
.footer-social a:hover{ background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-3px); }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; gap: 10px; }

/* ==========================================================================
   SCROLL TO TOP — circle, flat
   ========================================================================== */
.scroll-top{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.15s var(--ease);
  z-index: 90;
}
.scroll-top.is-visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover{ background: var(--green-dark); transform: translateY(-3px); animation-play-state: paused; }
.scroll-top:active{ transform: translateY(0) scale(0.92); }
.scroll-top.is-visible{ animation: gcs-pulse-soft 2.4s ease-in-out infinite; }
@keyframes gcs-pulse-soft{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(5,181,64,0.35); }
  50%{ box-shadow: 0 0 0 8px rgba(5,181,64,0); }
}
@media (prefers-reduced-motion: reduce){
  .scroll-top.is-visible{ animation: none; }
}

/* ==========================================================================
   PAGE TEMPLATE
   ========================================================================== */
.page-content{ max-width: var(--article-width); margin: 0 auto; padding: 52px 0 68px; }
.page-content h1{ font-size: clamp(28px, 4vw, 38px); margin-bottom: 22px; }
.page-content p{ color: var(--ink-soft); font-size: 17px; margin-bottom: 18px; }

.visually-hidden{ position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
