:root {
  --green-900: #0F4D2E;
  --green-800: #145D38;
  --green-700: #1F7A45;
  --mint-50: #F3F8F4;
  --gold-500: #C9A227;
  --text-900: #0f172a;
  --text-700: #334155;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --radius: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: "Prompt", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-900);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.sr {
  position: absolute;
  left: -9999px
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* Top bar */
.topbar {
  background: #0b3f26;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar .left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .10);
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, .18);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-900);
  border-bottom: 3px solid var(--gold-500);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand .logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand .logo-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand .titles {
  min-width: 0;
  color: #fff;
}

.brand .titles .th {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand .titles .en {
  font-size: 12px;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: rgba(255, 255, 255, .92);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: .2s ease;
}

nav a:hover {
  color: #fff;
  border-bottom-color: rgba(201, 162, 39, .7);
}

nav a.active {
  color: #fff;
  border-bottom-color: var(--gold-500);
}

.menu-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 24px;
  line-height: 1;
}

/* Hero / Banner */
.hero {
  position: relative;
  overflow: hidden;
  background: none;
}

.hero-banner {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}

.hero-banner+.container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}



.hero .container {
  position: relative;
  z-index: 2;
  padding: 56px 0 40px;
  text-align: left;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, .12);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
  max-width: 820px;
  width: 100%;
}

.hero h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.8;
}

/* Quick tabs (inside hero) */
.tabs-wrap {
  padding: 18px 0 34px;
}

.tabs {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, .12);
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: fit-content;
  margin: 0 auto;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--green-900);
  background: var(--green-900);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: .2s ease;
}

.tab:hover {
  transform: translateY(-1px);
  background: var(--green-700);
  border-color: var(--green-700);
}

.tab .t-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-500);
}

.tab.primary {
  background: var(--green-900);
  border-color: var(--green-900);
  color: #fff;
}

.tab.primary .t-dot {
  background: var(--gold-500);
}

.hero-badge {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.hero-badge img {
  width: 46px;
  height: 46px;
  object-fit: contain
}

.hero-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.15;
}

.hero-sub {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
}

/* Sections */
.section {
  padding: 56px 0;
  background: #fff;
}

.section.alt {
  background: var(--mint-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head,
.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title,
.title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #0b2f1d;
}

.section-note,
.note {
  margin: 0;
  font-size: 13px;
  color: var(--text-700);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0 0;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, .05);
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, .55);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  background: #eaf4ee;
  color: #0b5a33;
  border: 1px solid #d6eadc;
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 16px;
  color: #0b2f1d;
}

.card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-700);
  line-height: 1.65;
}

.news-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 12px;
  border: 1px solid var(--line);
  transition: transform .3s ease;
}

.card:hover .news-thumb {
  transform: scale(1.02);
}

/* Gallery grid (5 columns) */
.gallery-section {
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-full {
  width: 96%;
  max-width: 1600px;
  margin-inline: auto;
  gap: 8px;
  padding-bottom: 56px;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(2, 6, 23, .06);
  transition: .3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(2, 6, 23, .14);
  border-color: rgba(201, 162, 39, .5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .25));
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 12px;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Quick links (legacy) */
.quick-links {
  margin-top: -22px;
  position: relative;
  z-index: 3;
}

.quick-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.qbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: #0b2f1d;
  font-weight: 600;
  font-size: 13px;
  transition: .2s ease;
}

.qbtn:hover {
  border-color: rgba(31, 122, 69, .45);
  transform: translateY(-1px);
}

.qicon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-700);
  box-shadow: 0 0 0 3px rgba(31, 122, 69, .14);
}

/* News card */
.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Grid-4 + Mini cards (org structure) */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, .04);
  transition: .2s ease;
}

.mini:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, .55);
}

.mini h4 {
  margin: 0 0 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0b2f1d;
}

.mini p {
  margin: 0;
  color: var(--text-700);
  font-size: 12.6px;
  line-height: 1.8;
}

/* Structure (legacy) */
.structure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.structure-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, .05);
  transition: .2s ease;
}

.structure-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, .55);
}

.structure-card h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--green-700);
}

.structure-card p {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-700);
  line-height: 1.6;
}

/* Leader vision */
.leader {
  background: linear-gradient(135deg, #0b3f26, #1F7A45);
  color: #fff;
  padding: 74px 0;
  border-top: 4px solid var(--gold-500);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
}

.leader::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.leader .wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  padding: 0 16px;
}

.leader h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}

.quote {
  margin: 0 auto 14px;
  max-width: 780px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  line-height: 1.6;
}

.quote strong {
  color: var(--gold-500);
}

.leader p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 1.8;
}

/* CTA */
.cta {
  padding: 64px 0;
  background: var(--mint-50);
}

.cta-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-box h3 {
  margin: 0;
  font-size: 18px;
  color: #0b2f1d;
}

.cta-box p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-700);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--green-900);
  color: #fff;
  border-color: rgba(255, 255, 255, .0);
}

.btn-primary:hover {
  background: var(--gold-500);
  color: #0b2f1d;
}

.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: #0b2f1d;
}

.btn-outline:hover {
  border-color: rgba(31, 122, 69, .45);
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: var(--green-900);
  color: #fff;
  border-top: 4px solid var(--gold-500);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.footer .fbrand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer .fbrand .logo-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer .fbrand img {
  width: 32px;
  height: 32px;
  object-fit: contain
}

.footer small {
  color: rgba(255, 255, 255, .78)
}

/* Mobile Drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .55);
  display: none;
  z-index: 100;
}

.drawer.open {
  display: block
}

.panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  padding: 18px;
  box-shadow: -20px 0 50px rgba(0, 0, 0, .2);
}

.panel .phead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.panel .plist a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #0b2f1d;
  font-weight: 700;
}

.panel .plist a:hover {
  background: var(--mint-50);
  border-color: var(--line);
}

/* ===== Sub-page specific ===== */

/* Info cards used across sub-pages */
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, .05);
  transition: .2s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, .55);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #0b2f1d;
}

.info-card h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--green-700);
}

.info-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-700);
  line-height: 1.65;
}

.info-card .hr {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.info-card .list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-700);
  font-size: 13.5px;
  line-height: 2;
}

.info-card .list li {
  margin: 6px 0;
}

/* Statement / Highlight Section */
.statement {
  background: linear-gradient(135deg, #0b3f26, #1F7A45);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  border-top: 4px solid var(--gold-500);
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.statement h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.statement p {
  margin: 0 auto;
  max-width: 980px;
  color: rgba(255, 255, 255, .86);
  line-height: 2;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.statement .stat-quote {
  margin: 14px auto 0;
  max-width: 920px;
  color: var(--gold-500);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.9;
  position: relative;
  z-index: 2;
}

/* Publications / Doc rows */
.docs {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2, 6, 23, .04);
  transition: .2s ease;
}

.doc:hover {
  border-color: rgba(201, 162, 39, .55);
  transform: translateY(-1px);
}

.doc b {
  display: block;
  color: #0b2f1d;
  font-weight: 700;
}

.doc span {
  display: block;
  margin-top: 4px;
  color: var(--text-700);
  font-size: 12.8px;
  line-height: 1.6;
}

.doc .btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Contact specific */
.map-placeholder {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--mint-50);
  padding: 18px;
  color: var(--text-700);
  font-size: 14px;
  margin-top: 12px;
}

/* ========== RESPONSIVE ========== */

/* Large Tablet / Small Desktop */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .structure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader {
    padding: 56px 0;
  }

  .leader h2 {
    font-size: 22px;
  }

  .quote {
    font-size: 16px;
  }

  .cta {
    padding: 48px 0;
  }

  .statement {
    padding: 56px 0;
  }

  .statement h2 {
    font-size: 22px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero-title,
  .hero h1 {
    font-size: 24px;
  }

  .hero .container {
    padding: 36px 0 24px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .structure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .doc {
    flex-direction: column;
    align-items: flex-start;
  }

  .leader .wrap {
    padding: 0 12px;
  }

  .leader h2 {
    font-size: 20px;
  }

  .quote {
    font-size: 15px;
  }

  .leader p {
    font-size: 13px;
  }

  .statement h2 {
    font-size: 20px;
  }

  .statement p {
    font-size: 13px;
  }

  .statement .stat-quote {
    font-size: 14px;
  }

  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .news-thumb {
    aspect-ratio: 16 / 10;
  }
}

/* Small Mobile */
@media (max-width: 520px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge {
    width: 56px;
    height: 56px;
  }

  .hero-title,
  .hero h1 {
    font-size: 20px;
  }

  .hero-sub,
  .hero p {
    font-size: 12px;
  }

  .hero .container {
    padding: 28px 0 18px;
  }

  .tabs {
    flex-direction: column;
  }

  .tab {
    width: 100%;
    justify-content: center;
  }

  .grid-4,
  .structure-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .info-card {
    padding: 14px;
  }

  .mini {
    padding: 12px;
  }

  .section {
    padding: 36px 0;
  }

  .leader {
    padding: 40px 0;
  }

  .leader h2 {
    font-size: 18px;
  }

  .quote {
    font-size: 14px;
  }

  .cta {
    padding: 36px 0;
  }

  .cta-box {
    padding: 18px;
  }

  .cta-box h3 {
    font-size: 16px;
  }

  .statement {
    padding: 40px 0;
  }

  .statement h2 {
    font-size: 18px;
  }

  .statement .stat-quote {
    font-size: 13px;
  }

  .news-thumb {
    aspect-ratio: 4 / 3;
  }

  .doc .btns {
    width: 100%;
  }

  .doc .btns .btn {
    flex: 1;
    text-align: center;
  }

  .btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .footer .fbrand div[style] {
    font-size: 13px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .container {
    width: 95%;
  }

  .hero-title,
  .hero h1 {
    font-size: 18px;
  }

  .card h3,
  .info-card h3 {
    font-size: 14px;
  }

  .card p,
  .info-card p {
    font-size: 12px;
  }

  .chip {
    font-size: 11px;
    padding: 6px 10px;
  }
}