/* ============ Design tokens ============ */
:root {
  --navy-900: #0d2436;
  --navy-800: #163c54;
  --navy-700: #1e4e6b;
  --navy-600: #2a648a;
  --teal-500: #2f9e97;
  --teal-600: #217871;
  --teal-700: #1a5f59;
  --bg: #ffffff;
  --bg-muted: #f4f8fa;
  --text-900: #14252f;
  --text-600: #4d6472;
  --text-400: #7c93a0;
  --border: #e2e9ec;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(13, 36, 54, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 36, 54, 0.10);
  --shadow-lg: 0 20px 48px rgba(13, 36, 54, 0.16);

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1c28;
    --bg-muted: #0f2431;
    --text-900: #eef4f7;
    --text-600: #a9bdc7;
    --text-400: #7c93a0;
    --border: #1c3646;
    /* Lightened so navy-800/700 stays visible as foreground text/icons on dark surfaces
       (used only for backgrounds are hardcoded separately and unaffected). */
    --navy-800: #9fc3de;
    --navy-700: #7fa8c9;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--text-900); margin: 0 0 0.5em; line-height: 1.25; }
p { margin: 0 0 1em; color: var(--text-600); }

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 0.85em 1.4em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--teal-600);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .carousel-track { transition: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.75em;
}
.center { text-align: center; }
.section-lead { max-width: 560px; margin: 0 auto 2.5rem; text-align: center; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-700); box-shadow: var(--shadow-md); }
.btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { border-color: var(--border); color: var(--navy-700); background: transparent; }
.btn-ghost:hover { border-color: var(--teal-600); color: var(--teal-600); }
.btn-sm { padding: 0.6em 1.2em; font-size: 0.85rem; min-height: 44px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
@media (prefers-color-scheme: dark) {
  .site-header { background: rgba(11,28,40,0.85); }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy-800); letter-spacing: 0.02em; }
.brand-text small { font-size: 0.72rem; color: var(--text-600); letter-spacing: 0.02em; }

.main-nav { display: flex; gap: 1.75rem; }
.main-nav a { font-weight: 500; font-size: 0.92rem; color: var(--text-600); transition: color 0.15s; }
.main-nav a:hover { color: var(--teal-600); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy-800); border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  background: linear-gradient(135deg, #0d2436, #1e4e6b);
  color: #fff;
  padding: 5rem 0 5.5rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}
.hero .eyebrow { color: #7fd7cf; }
.hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 46ch; }
.hero-sub strong { color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.75rem 0 1.5rem; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-trust li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.2em;
  position: relative;
}
.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fd7cf;
  font-weight: 700;
}
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.06);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media.img-fallback, .hero-inner .img-fallback {
  display: flex; align-items: center; justify-content: center;
}
.about-media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.about-media.img-fallback {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-muted);
  box-shadow: var(--shadow-md);
}
.hero-media.img-fallback::after, .about-media.img-fallback::after {
  content: "C-MEDiS";
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  font-size: 1.4rem;
}
.about-media.img-fallback::after { color: var(--text-400); }

/* ============ Sections ============ */
.section { padding: 5.5rem 0; }
.section-muted { background: var(--bg-muted); }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.cred-card {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
}
.cred-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--teal-600);
  background: rgba(47,158,151,0.12);
  padding: 0.25em 0.7em;
  border-radius: 20px;
  margin-bottom: 0.5em;
}
.cred-card p { margin: 0; font-size: 0.88rem; color: var(--text-600); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-photo { height: 150px; overflow: hidden; background: var(--bg-muted); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.service-body { padding: 1.5rem 1.75rem 1.75rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.service-card p { font-size: 0.9rem; margin: 0; }

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.location-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.location-card h3 { font-size: 1.2rem; }
.location-card h3 span { color: var(--text-600); font-weight: 400; font-size: 0.9rem; }
.location-address { font-size: 0.92rem; }
.location-phone a { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--teal-600); }
@media (prefers-color-scheme: dark) {
  .location-phone a { color: #7fd7cf; }
}
.location-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.location-actions.center-actions { justify-content: center; }

/* Testimonials */
.testimonial-carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.carousel-viewport { flex: 1; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel-track .testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  min-height: 220px;
}
.testimonial-card p { font-size: 0.95rem; font-style: italic; }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--navy-700); }

.carousel-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.carousel-arrow:hover { background: var(--teal-600); border-color: var(--teal-600); }
.carousel-arrow:hover svg { stroke: #fff; }
.carousel-arrow svg { width: 18px; height: 18px; fill: none; stroke: var(--navy-700); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 2.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.carousel-dot.is-active { background: var(--teal-500); width: 22px; border-radius: 4px; }

.testimonials-more { justify-content: center; }

@media (max-width: 640px) {
  .testimonial-carousel { max-width: 100%; }
  .testimonial-card { padding: 1.5rem; min-height: 260px; }
}

/* Insights / Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.articles-grid.articles-grid-wide { max-width: 900px; margin-left: auto; margin-right: auto; }
.article-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article-cover {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(47,158,151,0.14), rgba(22,60,84,0.08));
}
.article-cover svg {
  width: 56px; height: 56px;
  fill: none;
  stroke: var(--teal-600);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.post-article .article-cover { height: 320px; }
.article-body { padding: 1.75rem 2rem 2rem; }
.article-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: rgba(47,158,151,0.12);
  padding: 0.3em 0.8em;
  border-radius: 20px;
  margin-bottom: 0.85em;
}
.article-card h3 { font-size: 1.25rem; margin-bottom: 0.5em; }
.article-excerpt { font-size: 0.95rem; }

.article-full { margin-top: 1rem; }
.article-full p { font-size: 0.92rem; }
.article-full h2 { font-size: 0.95rem; margin: 1.4em 0 0.5em; color: var(--navy-800); }

.check-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.check-list li {
  position: relative;
  padding-left: 1.6em;
  font-size: 0.92rem;
  color: var(--text-600);
  margin-bottom: 0.5em;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal-500);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 0.62em;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.article-disclaimer {
  font-size: 0.85rem;
  color: var(--text-600);
  background: var(--bg-muted);
  border-left: 3px solid var(--teal-500);
  border-radius: 6px;
  padding: 0.9em 1.1em;
  margin: 1.2em 0;
}
.article-signature {
  font-size: 0.85rem;
  color: var(--text-600);
  margin-top: 1.5em;
  padding-top: 1.2em;
  border-top: 1px solid var(--border);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2em;
}
.article-tags span {
  font-size: 0.75rem;
  color: var(--teal-600);
  background: rgba(47,158,151,0.1);
  padding: 0.3em 0.7em;
  border-radius: 20px;
}

.article-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}
.article-link { font-size: 0.85rem; font-weight: 600; color: var(--teal-600); }
.article-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal-600);
}
.article-readmore:hover { color: var(--teal-700); }

/* Blog / article page chrome */
.page-hero {
  background: linear-gradient(135deg, #0d2436, #1e4e6b);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero .eyebrow { color: #7fd7cf; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.4em; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-600);
  margin-bottom: 1.5rem;
}
.breadcrumb:hover { color: var(--teal-700); }

.post-article {
  max-width: 720px;
  margin: 0 auto;
}
.post-article .article-tag { margin-bottom: 1em; }
.post-article h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.6em; }
.post-meta {
  font-size: 0.85rem;
  color: var(--text-400);
  margin-bottom: 2rem;
}

.articles-empty {
  max-width: 520px;
  margin: 0 auto 2rem;
  text-align: center;
  background: var(--bg-muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.articles-empty p { margin: 0; }

.icon-linkedin { width: 18px; height: 18px; fill: currentColor; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { width: 40px; margin-bottom: 0.75rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-brand strong { color: #fff; }
.footer-col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 0.85em; }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5em; }
.footer-col a:hover { color: var(--teal-500); }
.footer-bottom { text-align: center; padding: 1.5rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ Chatbot ============ */
.chatbot { position: fixed; right: 20px; bottom: 20px; z-index: 200; }
.chatbot-toggle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--teal-600);
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.chatbot-toggle:hover { background: var(--teal-700); transform: scale(1.05); }
.chatbot-toggle svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chatbot-toggle .icon-close { display: none; }
.chatbot.is-open .chatbot-toggle .icon-chat { display: none; }
.chatbot.is-open .chatbot-toggle .icon-close { display: block; }

.chatbot-panel {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 40px);
  height: 460px;
  max-height: calc(100vh - 140px);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.chatbot.is-open .chatbot-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chatbot-header {
  background: linear-gradient(135deg, #0d2436, #1e4e6b);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chatbot-header strong { font-family: var(--font-head); font-size: 0.95rem; }
.chatbot-header span { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.msg { max-width: 82%; padding: 0.6em 0.85em; border-radius: 12px; font-size: 0.85rem; line-height: 1.45; }
.msg-bot { background: var(--bg-muted); color: var(--text-900); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-user { background: var(--teal-600); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg a { color: var(--teal-600); font-weight: 600; text-decoration: underline; }
.msg-bot a { color: var(--teal-600); }

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.1rem 0.75rem;
}
.chip {
  font-size: 0.72rem;
  padding: 0.55em 0.85em;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-600);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.chip:hover { background: var(--teal-600); color: #fff; border-color: var(--teal-600); }

.chatbot-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
}
.chatbot-input input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.6em 1em;
  font-size: 0.85rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-900);
}
.chatbot-input input:focus { outline: 2px solid var(--teal-600); outline-offset: 1px; }
.chatbot-input button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--teal-600);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chatbot-input button svg { width: 17px; height: 17px; fill: var(--teal-600); stroke: #fff; }
.chatbot-input button:hover { background: var(--teal-700); }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 320px; margin: 0 auto; }
  .about-media { max-width: 320px; margin: 0 auto; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.25rem 24px;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .chatbot-panel { width: calc(100vw - 32px); right: -4px; }
}
