/* =============== RESET =============== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
img { max-width: 100%; display: block; }

/* =============== TOKENS =============== */
:root {
  --bo-ink: #0b1220;
  --bo-muted: #6a7a89;
  --bo-accent: #0f766e;
  --bo-accent-soft: #e0f2f1;
  --bo-bg: #ffffff;
  --bo-surface: #f3f6fb;
  --bo-border: #dde5f0;

  --bo-radius-lg: 22px;
  --bo-radius-md: 16px;
  --bo-radius-pill: 999px;

  --bo-shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.14);
  --bo-shadow-card: 0 18px 45px rgba(15, 23, 42, 0.10);

  --bo-container: 1200px;
}

/* Generic container */
.bo-container {
  width: 100%;
  max-width: var(--bo-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 34px);
}

/* Simple reveal */
.bo-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.bo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Make sure hero clears fixed header */
.bo-hero { margin-top: 80px; }
@media (max-width: 768px) { .bo-hero { margin-top: 72px; } }

/* =============== IMAGE PLACEHOLDER (BIGGER) =============== */
.bo-imgph{
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: linear-gradient(135deg, rgba(148,163,184,0.18), rgba(226,232,240,0.55));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--bo-shadow-card);
}
.bo-imgph span{
  font-weight: 900;
  color: rgba(15, 23, 42, 0.86);
  font-size: 14px;
}
.bo-imgph small{
  display: block;
  margin-top: 6px;
  color: rgba(100, 116, 139, 0.98);
  font-size: 12px;
}
.bo-imgph::after{
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(15,118,110,0.20), transparent 62%);
  transform: rotate(25deg);
  pointer-events: none;
}

.bo-imgph--xl { min-height: 520px; }
.bo-imgph--hero-xl { min-height: 520px; }
.bo-imgph--media { min-height: 420px; }

@media (max-width: 768px) {
  .bo-imgph--xl { min-height: 360px; }
  .bo-imgph--hero-xl { min-height: 360px; }
  .bo-imgph--media { min-height: 320px; }
}

/* =============== HERO =============== */
.bo-hero {
  position: relative;
  background: radial-gradient(circle at top left, #e0f2fe 0, #eff6ff 32%, #ffffff 80%);
  padding: clamp(82px, 10vh, 130px) 0 clamp(56px, 7vh, 90px);
}
.bo-hero-inner {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 1fr);
  align-items: center;
}
@media (max-width: 980px) {
  .bo-hero-inner { grid-template-columns: 1fr; }
}

/* Left */
.bo-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--bo-radius-pill);
  background: rgba(15, 118, 110, 0.10);
  color: var(--bo-accent);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}
.bo-hero-title {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.3vw, 52px);
  line-height: 1.08;
  color: var(--bo-ink);
  font-weight: 950;
  letter-spacing: -0.02em;
}
.bo-hero-title span { color: var(--bo-accent); }

.bo-hero-sub {
  margin: 0 0 14px;
  color: var(--bo-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 62ch;
}

.bo-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.bo-btn-primary,
.bo-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.bo-btn-primary {
  background: linear-gradient(135deg, #0f766e, #155e75);
  color: #ffffff;
  box-shadow: var(--bo-shadow-soft);
}
.bo-btn-primary:hover { transform: translateY(-2px); }

.bo-btn-ghost {
  background: rgba(15, 118, 110, 0.06);
  border-color: rgba(15, 118, 110, 0.28);
  color: var(--bo-accent);
}
.bo-btn-ghost:hover {
  background: #0f766e;
  color: #ffffff;
  border-color: #0f766e;
}

/* Hero stats */
.bo-hero-stats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.bo-stat { min-width: 160px; }
.bo-stat-label {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--bo-muted);
  font-weight: 800;
}
.bo-stat-value {
  font-size: 22px;
  font-weight: 950;
  color: var(--bo-ink);
}

/* Right */
.bo-hero-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--bo-radius-lg);
  box-shadow: var(--bo-shadow-soft);
  padding: 18px;
  display: grid;
  gap: 14px;
}
.bo-hero-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.bo-hero-pill {
  position: absolute;
  inset: auto 14px 14px auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #e5f9f6;
  font-size: 12px;
  font-weight: 750;
}
.bo-hero-meta h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
  color: var(--bo-ink);
}
.bo-hero-meta p {
  margin: 0;
  font-size: 13px;
  color: var(--bo-muted);
  line-height: 1.7;
}

/* =============== OVERVIEW =============== */
.bo-overview {
  background: var(--bo-bg);
  padding: clamp(56px, 7vh, 96px) 0;
}
.bo-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}
@media (max-width: 980px) { .bo-overview-grid { grid-template-columns: 1fr; } }

.bo-eyebrow {
  font-size: 13px;
  font-weight: 950;
  color: var(--bo-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
}
.bo-section-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.1vw, 34px);
  color: var(--bo-ink);
  font-weight: 950;
  letter-spacing: -0.01em;
}
.bo-section-text {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--bo-muted);
  line-height: 1.85;
}

.bo-check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.bo-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(11, 18, 32, 0.90);
  font-weight: 750;
  line-height: 1.65;
}
.bo-check-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--bo-accent);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.14);
  margin-top: 9px;
}

/* =============== TYPES GRID (DARK) =============== */
.bo-types {
  background: #0f172a;
  color: #e5e7eb;
  padding: clamp(62px, 8vh, 110px) 0;
}
.bo-types-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}
.bo-types-kicker {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
}
.bo-types-title {
  margin: 6px 0 0;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 950;
  color: #f9fafb;
}
.bo-types-sub {
  max-width: 620px;
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.75;
}

.bo-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.bo-types-grid--dense { gap: 16px; }

@media (max-width: 1100px) {
  .bo-types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .bo-types-grid { grid-template-columns: 1fr; }
}

.bo-type-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.14), rgba(15, 23, 42, 0.98));
  border-radius: 20px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.55);
  display: grid;
  gap: 8px;
  overflow: hidden;
  min-height: 190px;
}
.bo-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  font-size: 11px;
  color: #a5f3fc;
  width: fit-content;
  font-weight: 850;
}
.bo-type-title {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 950;
  color: #f9fafb;
}
.bo-type-text {
  margin: 0;
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.7;
}
.bo-type-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
  font-weight: 750;
}

/* =============== PACKAGES (NEW) =============== */
.bo-packages {
  background: #ffffff;
  padding: clamp(56px, 7vh, 96px) 0;
}
.bo-packages-head { max-width: 780px; }
.bo-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 1100px) { .bo-packages-grid { grid-template-columns: 1fr; } }

.bo-package-card {
  background: #ffffff;
  border: 1px solid var(--bo-border);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: var(--bo-shadow-card);
}
.bo-package-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 950;
  color: var(--bo-ink);
}
.bo-package-card p {
  margin: 0 0 12px;
  color: var(--bo-muted);
  line-height: 1.75;
  font-size: 14px;
}
.bo-package-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(11,18,32,0.86);
  line-height: 1.75;
  font-size: 14px;
  font-weight: 700;
}

/* =============== FEATURE SECTIONS (BIGGER) =============== */
.bo-feature{
  background: #ffffff;
  padding: clamp(64px, 9vh, 120px) 0;
}
.bo-feature--alt{
  background: var(--bo-surface);
}

.bo-feature-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

@media (max-width: 980px){
  .bo-feature-grid{ grid-template-columns: 1fr; }
}

.bo-feature-grid.is-reverse .bo-feature-text{ order: 2; }
.bo-feature-grid.is-reverse .bo-feature-media{ order: 1; }
@media (max-width: 980px){
  .bo-feature-grid.is-reverse .bo-feature-text,
  .bo-feature-grid.is-reverse .bo-feature-media{ order: initial; }
}

.bo-feature-list{
  margin: 14px 0 0;
  padding-left: 18px;
}
.bo-feature-list li{
  margin: 10px 0;
  color: rgba(11, 18, 32, 0.88);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 750;
}

.bo-media-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 680px){
  .bo-media-2{ grid-template-columns: 1fr; }
}

/* =============== PROCESS =============== */
.bo-process {
  background: var(--bo-bg);
  padding: clamp(62px, 8vh, 110px) 0;
}
.bo-process-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 4vw, 60px);
}
@media (max-width: 980px) { .bo-process-inner { grid-template-columns: 1fr; } }

.bo-process-intro p {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--bo-muted);
  line-height: 1.85;
}

/* timeline */
.bo-timeline { position: relative; }
.bo-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.bo-timeline-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #0f766e 0, #d1d5db 35%, #e5e7eb 100%);
}
.bo-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 10px 0 16px;
}
.bo-timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #0f172a;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  color: #a5f3fc;
  font-size: 16px;
  font-weight: 950;
}
.bo-timeline-content {
  padding-bottom: 10px;
  border-bottom: 1px dashed #e5e7eb;
}
.bo-timeline-item:last-child .bo-timeline-content { border-bottom: none; }
.bo-timeline-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 950;
  color: var(--bo-ink);
}
.bo-timeline-text {
  margin: 0;
  font-size: 14px;
  color: var(--bo-muted);
  line-height: 1.75;
}

/* =============== INDUSTRIES / APPLICATIONS =============== */
.bo-industries {
  background: var(--bo-surface);
  padding: clamp(56px, 7vh, 96px) 0;
}
.bo-industries-header { margin-bottom: 18px; }
.bo-industries-header p {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--bo-muted);
  max-width: 780px;
  line-height: 1.85;
}

.bo-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 1100px) { .bo-industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .bo-industries-grid { grid-template-columns: 1fr; } }

.bo-industry-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--bo-border);
  box-shadow: var(--bo-shadow-card);
  padding: 16px 16px 18px;
  display: grid;
  gap: 6px;
}
.bo-industry-title {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  color: var(--bo-ink);
}
.bo-industry-text {
  margin: 0;
  font-size: 14px;
  color: var(--bo-muted);
  line-height: 1.75;
}

/* ============ MISSION / VISION / VALUES ============ */
.bo-mvv-section {
  background: #ffffff;
  padding: clamp(56px, 7vh, 96px) 0;
}
.bo-mvv-tabs {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: #f3f4f6;
  margin-bottom: clamp(28px, 4vh, 36px);
  gap: 6px;
}
.bo-mvv-tab {
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  color: var(--bo-muted);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.bo-mvv-tab.is-active {
  background: #ffffff;
  color: var(--bo-ink);
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}
.bo-mvv-content-wrap { position: relative; }
.bo-mvv-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}
.bo-mvv-content.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.bo-mvv-text { flex: 1; }
.bo-mvv-text h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 950;
  color: var(--bo-ink);
}
.bo-mvv-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--bo-muted);
}
.bo-mvv-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 780px) {
  .bo-mvv-content.is-active { flex-direction: column; align-items: flex-start; }
  .bo-mvv-image { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .bo-reveal{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* =========================================================
   SHARED "BLUE DOT" LIST STYLE (apply to all ULs in this page)
   - Applies to: .bo-feature-list, package card ULs
   - Keeps your existing .bo-check-list as-is
========================================================= */

/* FEATURE section lists */
.bo-feature-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.bo-feature-list li{
  position: relative;
  padding-left: 24px;   /* space for dot */
  margin: 0;            /* override old margin */
  color: rgba(11, 18, 32, 0.88);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 750;
}

.bo-feature-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;          /* aligns dot with first line */
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--bo-accent);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.14);
}

/* PACKAGE card lists */
.bo-package-card ul{
  list-style: none;
  padding: 0;           /* remove default indent */
  margin: 0;            /* keep your spacing controlled */
  display: grid;
  gap: 10px;
}

.bo-package-card ul li{
  position: relative;
  padding-left: 24px;
  margin: 0;
}

.bo-package-card ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--bo-accent);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.14);
}
/* Smooth scroll to lower sections */
html { scroll-behavior: smooth; }

/* Prevent fixed header hiding section title when scrolling to anchors */
.bo-feature { scroll-margin-top: 92px; }

/* Make type cards support bottom-aligned button */
.bo-type-card{
  display: flex;           /* was grid */
  flex-direction: column;
  gap: 8px;
}

/* Button row sits at bottom */
.bo-type-actions{
  margin-top: auto;
  padding-top: 12px;
}

/* Small button style (dark section friendly) */
.bo-type-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;

  color: #a7f3d0;
  background: rgba(110, 231, 183, 0.10);
  border: 1px solid rgba(110, 231, 183, 0.35);

  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bo-type-btn:hover{
  transform: translateY(-1px);
  background: rgba(110, 231, 183, 0.20);
  border-color: rgba(110, 231, 183, 0.55);
  color: #eafff6;
}

/* Responsive: make button full width on small screens */
@media (max-width: 680px){
  .bo-type-btn{ width: 100%; }
}
/* ============ PROJECTS SECTION ============ */
.bo-projects {
  padding: 70px 0;
  background: #ffffff;
}

.bo-projects-header {
  max-width: 900px;
  margin-bottom: 24px;
}

.bo-project-card {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 27, 42, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 27, 42, 0.06);
  overflow: hidden;
}

.bo-project-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.bo-project-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7a8c;
  margin-bottom: 8px;
}

.bo-project-title {
  margin: 0 0 10px 0;
  font-size: 22px;
  line-height: 1.25;
  color: #0b1220;
}

.bo-project-desc {
  margin: 0 0 14px 0;
  color: #2b3a4c;
  line-height: 1.6;
}

.bo-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bo-project-block {
  background: rgba(15, 27, 42, 0.03);
  border: 1px solid rgba(15, 27, 42, 0.06);
  border-radius: 14px;
  padding: 12px 12px;
}

.bo-project-block h4 {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #0b1220;
}

.bo-project-block p {
  margin: 0;
  color: #2b3a4c;
  line-height: 1.55;
}

.bo-project-list {
  margin: 0;
  padding-left: 18px;
  color: #2b3a4c;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .bo-project-card {
    grid-template-columns: 1fr;
  }
  .bo-project-grid {
    grid-template-columns: 1fr;
  }
  .bo-project-media img {
    min-height: 220px;
  }
}
/* ==============================
   FIX: Location card link colors
   ============================== */
.ieng-locations a{
  color: inherit;                 /* stop browser default blue */
  text-decoration: none;          /* remove underline */
  font-weight: 700;
}

.ieng-locations .ieng-loc-row a{
  color: var(--bo-accent);        /* use your theme teal */
  text-decoration: underline;     /* subtle, readable */
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
}

.ieng-locations .ieng-loc-row a:hover{
  color: #155e75;                 /* darker teal on hover */
  text-decoration-color: rgba(21, 94, 117, 0.6);
}

.ieng-locations .ieng-loc-row a:visited{
  color: var(--bo-accent);        /* prevent purple visited */
}

/* Optional: keyboard focus (looks pro) */
.ieng-locations .ieng-loc-row a:focus-visible{
  outline: 3px solid rgba(15, 118, 110, 0.25);
  outline-offset: 3px;
  border-radius: 6px;
}
