/* ============================================================
   ELABOR AI Search - Pure CSS (ais- prefix)
   ============================================================ */

/* ── Brand colors ── */
:root {
  --ais-brand-50: #eefbf3;
  --ais-brand-100: #d5f5e2;
  --ais-brand-200: #aeebc8;
  --ais-brand-300: #79dba6;
  --ais-brand-400: #41c47f;
  --ais-brand-500: #0f9d51;
  --ais-brand-600: #0d8a47;
  --ais-brand-700: #0f7a45;
  --ais-brand-800: #00441f;
  --ais-brand-900: #003618;
  --ais-brand-950: #001f0e;
  --ais-emerald-50: #ecfdf5;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.ais-body {
  margin: 0;
  padding: 0;
  background: #0f5538;
  font-family: 'Noto Sans KR', system-ui, sans-serif;
  color: #111;
}

/* ── Utility hidden ── */
.ais-hidden {
  display: none !important;
}

/* ── App root ── */
.ais-app {
  min-height: 100vh;
  position: relative;
}

/* ── Backgrounds ── */
.ais-bg-base {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom right, #0f5538, #136843, #1a7a4e);
}
.ais-bg-blob {
  position: fixed;
  border-radius: 9999px;
  pointer-events: none;
}
.ais-bg-blob-1 {
  top: -15%;
  left: -5%;
  width: 60vw;
  height: 60vw;
  max-width: 1200px;
  max-height: 1200px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 65%);
}
.ais-bg-blob-2 {
  top: 5%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 1100px;
  max-height: 1100px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.1) 0%, transparent 65%);
}
.ais-bg-blob-3 {
  bottom: -5%;
  left: 30%;
  width: 45vw;
  height: 45vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 65%);
}
.ais-bg-blob-4 {
  top: 40%;
  right: 5%;
  width: 25vw;
  height: 25vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(253, 230, 138, 0.06) 0%, transparent 65%);
}
.ais-bg-noise {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ============================================================
   Sticky Header
   ============================================================ */
.ais-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(to right, #0f5538, #157245);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.ais-sticky-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 12px;
}
.ais-sticky-row {
  display: flex;
  align-items: flex-start;
  min-height: 64px;
  gap: 12px;
  padding: 10px 0;
}
.ais-sticky-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 44px;
}
.ais-sticky-logo-link:focus {
  outline: none;
}
.ais-sticky-logo {
  width: 60px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.ais-sticky-search-wrap {
  flex: 1;
  min-width: 0;
}

@media (min-width: 640px) {
  .ais-sticky-inner {
    padding: 0 20px;
  }
  .ais-sticky-row {
    min-height: 72px;
    gap: 24px;
    padding: 12px 0;
  }
  .ais-sticky-logo-link {
    height: 48px;
  }
  .ais-sticky-logo {
    width: 100px;
  }
}

/* ============================================================
   Hero Section
   ============================================================ */
.ais-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
  min-height: 50vh;
}
.ais-hero-inner {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ais-hero-brand {
  margin-bottom: 12px;
}
.ais-hero-logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.ais-hero-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.625;
}
.ais-hero-search-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  position: relative;
}

@media (min-width: 640px) {
  .ais-hero {
    padding: 80px 32px;
  }
  .ais-hero-brand {
    margin-bottom: 16px;
  }
  .ais-hero-logo {
    width: 260px;
  }
  .ais-hero-tagline {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

/* ============================================================
   Search Bar
   ============================================================ */
.ais-search-bar {
  flex: 1;
  max-width: 750px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 150ms;
}
.ais-search-bar-hero {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.ais-search-bar-hero:focus-within {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
.ais-search-bar-sticky:hover {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}
.ais-search-bar-sticky:focus-within {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}
.ais-search-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 6px 8px;
  min-height: 44px;
}.key-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--ais-brand-500);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
  padding: 0 1.1em;
  border-radius: 50px; 
  border: none;
  cursor: pointer;
  white-space: nowrap; 
  transition: background-color 0.2s ease;
  box-shadow:0 4px 24px rgba(0, 0, 0, 0.3);
  }

/* 마우스 오버 시 시각 효과 */
.ais-hero-search-area .key-search-btn:hover {
  background-color:  var(--ais-brand-600);
}

@media (min-width: 640px) {
  .ais-search-row {
    padding: 6px 10px;
    min-height: 48px;
  }
}
@media (max-width: 500px) {
.key-search-btn {display:none}
}


/* ── ChatGPT 스타일 contenteditable 검색창 ── */
.ais-search-editable {
  outline: none;
  word-break: break-word;
  overflow-wrap: anywhere;
  caret-color: #fff;
  flex: 1;
  min-width: 0;
  background: transparent;
  padding: 4px 8px;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  white-space: pre-wrap;
  overflow-y: auto;
}
.ais-search-editable-hero {
  max-height: 200px;
}
.ais-search-editable-sticky {
  max-height: 120px;
}
@media (max-width: 639px) {
  .ais-search-editable-sticky {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .ais-search-editable-sticky::-webkit-scrollbar {
    display: none;
  }
}
.ais-search-editable:empty::before {
  content: attr(data-placeholder);
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  display: inline-block;
}
.ais-search-editable::-webkit-scrollbar {
  width: 6px;
}
.ais-search-editable::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.ais-search-editable::-webkit-scrollbar-track {
  background: transparent;
}

@media (min-width: 640px) {
  .ais-search-editable {
    padding: 6px 8px;
    font-size: 17px;
  }
}

/* ── Filter toggle button ── */
.ais-filter-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  transition: all 150ms;
  flex-shrink: 0;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.ais-filter-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}
.ais-filter-toggle-active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.ais-filter-toggle-label {
  display: none;
}
.ais-filter-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

@media (min-width: 640px) {
  .ais-filter-toggle {
    height: 36px;
  }
  .ais-filter-toggle-label {
    display: inline;
  }
}

/* ── Search submit button ── */
.ais-search-submit {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms;
  flex-shrink: 0;
  border: none;
  font-family: inherit;
}
.ais-search-submit-active {
  background: #fff;
  color: var(--ais-brand-700);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.ais-search-submit-active:hover {
  background: var(--ais-emerald-50);
}
.ais-search-submit-active:active {
  transform: scale(0.95);
}
.ais-search-submit-disabled {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

@media (min-width: 640px) {
  .ais-search-submit {
    width: 36px;
    height: 36px;
  }
}

/* ============================================================
   Filter Panel
   ============================================================ */
.ais-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
}
.ais-filter-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  padding-top: 8px;
}
.ais-filter-panel-inner {
  background: linear-gradient(to bottom right, #0f5538, #157245);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.ais-filter-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ais-filter-section-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.ais-filter-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ais-scope-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ais-cat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ais-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 8px;
}
.ais-cat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.ais-cat-row-all {
  grid-column: span 2 / span 2;
}
.ais-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ais-date-input {
  width: 110px;
  height: 36px;
  padding: 0 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  letter-spacing: 0.05em;
  transition: all 150ms;
}
.ais-date-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.ais-date-input::placeholder {
  letter-spacing: normal;
  font-family: 'Noto Sans KR', system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.25);
}
.ais-date-separator {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  font-size: 14px;
}
.ais-filter-apply-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}
.ais-filter-apply {
  padding: 8px 20px;
  background: #fff;
  color: var(--ais-brand-700);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 150ms;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-family: inherit;
}
.ais-filter-apply:hover {
  background: var(--ais-emerald-50);
}
.ais-filter-apply:active {
  transform: scale(0.97);
}

@media (min-width: 640px) {
  .ais-filter-content {
    padding: 28px;
  }
  .ais-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ais-cat-row-all {
    grid-column: span 4 / span 4;
  }
}

/* ── Checkbox box ── */
.ais-check-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.ais-check-box-active {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.ais-cat-row:hover .ais-check-box:not(.ais-check-box-active) {
  border-color: rgba(255, 255, 255, 0.4);
}
.ais-check-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 150ms;
}
.ais-check-label-active {
  color: #fff;
  font-weight: 500;
}
.ais-cat-row:hover .ais-check-label:not(.ais-check-label-active) {
  color: rgba(255, 255, 255, 0.7);
}
.ais-check-icon {
  width: 12px;
  height: 12px;
  color: var(--ais-brand-700);
}

/* ── Scope chip ── */
.ais-chip {
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  transition: all 150ms;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
}
.ais-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}
.ais-chip-active {
  background: #fff;
  color: var(--ais-brand-700);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.ais-chip-active:hover {
  background: #fff;
  color: var(--ais-brand-700);
}

/* ============================================================
   Content Area (white)
   ============================================================ */
.ais-content {
  position: relative;
  background: #fff;
  min-height: 50vh;
}
.ais-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}
.ais-content-empty {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  margin: 0;
}
.ais-preview-block {
  margin-bottom: 40px;
}
.ais-preview-block:last-child {
  margin-bottom: 0;
}
.ais-preview-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ais-brand-500);
}
.ais-preview-list > * + * {
  border-top: 1px solid #f3f4f6;
}
.ais-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.ais-preview-featured {
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .ais-content-inner {
    padding: 56px 32px;
  }
  .ais-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .ais-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============================================================
   Case Row (dynamically rendered)
   ============================================================ */
.ais-case-row {
  width: 100%;
  text-align: left;
  padding: 16px;
  transition: all 150ms;
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.ais-case-row:hover {
  background: rgba(249, 250, 251, 0.7);
}
.ais-case-flex {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ais-case-rank {
  font-size: 13px;
  font-weight: 900;
  color: rgba(15, 122, 69, 0.4);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  transition: color 150ms;
}
.ais-case-row:hover .ais-case-rank {
  color: var(--ais-brand-700);
}
.ais-case-body {
  flex: 1;
  min-width: 0;
}
.ais-case-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.ais-case-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid;
}
.ais-case-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.375;
  color: #111827;
  word-break: keep-all;
  margin: 0;
  transition: color 150ms;
}
.ais-case-row:hover .ais-case-title {
  color: var(--ais-brand-700);
}
.ais-case-summary {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.375;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ais-case-meta-bottom {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.ais-meta-key {
  color: #374151;
}
.ais-meta-sep {
  color: #d1d5db;
}

@media (min-width: 640px) {
  .ais-case-row {
    padding: 20px;
  }
  .ais-case-flex {
    gap: 16px;
  }
  .ais-case-rank {
    font-size: 15px;
    width: 24px;
  }
  .ais-case-title {
    font-size: 16px;
  }
  .ais-case-meta-bottom {
    gap: 10px;
    margin-top: 14px;
    font-size: 13px;
  }
}

/* ============================================================
   Article Cards
   ============================================================ */
.ais-article-featured {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 150ms;
  text-decoration: none;
  color: inherit;
}
.ais-article-featured:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.ais-article-featured-image {
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.ais-article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms;
}
.ais-article-featured:hover .ais-article-featured-image img {
  transform: scale(1.05);
}
.ais-article-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}
.ais-article-featured-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.ais-article-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ais-article-featured-book {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}
.ais-article-featured-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.ais-article-featured-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.375;
  word-break: keep-all;
  margin: 0;
}
.ais-article-featured-summary {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.375;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
  margin: 8px 0 0 0;
  max-width: 700px;
}

@media (min-width: 640px) {
  .ais-article-featured-image {
    aspect-ratio: 3 / 1;
  }
  .ais-article-featured-text {
    padding: 24px;
  }
  .ais-article-featured-title {
    font-size: 22px;
  }
}

/* ── Article card (grid item) ── */
.ais-article-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f3f4f6;
  transition: all 150ms;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.ais-article-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-color: #e5e7eb;
}
.ais-article-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f4f6;
}
.ais-article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}
.ais-article-card:hover .ais-article-card-image img {
  transform: scale(1.05);
}
.ais-article-card-body {
  padding: 12px;
}
.ais-article-card-meta {
  font-size: 10px;
  margin-bottom: 6px;
}
.ais-article-card-book {
  color: var(--ais-brand-600);
  font-weight: 600;
}
.ais-article-card-sep {
  color: #d1d5db;
}
.ais-article-card-date {
  color: #9ca3af;
}
.ais-article-card-title {
  font-size: 13px;
  color: #111827;
  font-weight: 600;
  line-height: 1.375;
  word-break: keep-all;
  margin: 0;
  transition: color 150ms;
}
.ais-article-card:hover .ais-article-card-title {
  color: var(--ais-brand-700);
}
.ais-article-card-summary {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.375;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 4px 0 0 0;
  word-break: keep-all;
}
