



.lo-blog {
  --lo-green: #7ed321;
  --lo-green-dark: #4f9f16;
  --lo-dark: #102231;
  --lo-text: #1d1d1f;
  --lo-muted: #6f7478;
  --lo-soft: #f5f7f3;
  --lo-line: #e6e8e3;
  font-family: inherit;
  color: var(--lo-text);
  background: #fff;
}

.lo-blog * {
  box-sizing: border-box;
}

.lo-blog a {
  color: inherit;
  text-decoration: none;
}

.lo-hero {
  position: relative;

  min-height: 280px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(135deg, #08141d 0%, #102231 55%, #16364b 100%);

  border-radius: 28px;

  overflow: hidden;
}
.lo-hero-inner {
  width: min(1180px, 92%);
  margin: 0 auto;

  padding: 34px 0 30px;
}

.lo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(126,211,33,0.16);
  color: #c8ff84;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.lo-hero h1 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: .98;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
}

.lo-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.lo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.lo-wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.lo-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 60px;
  padding: 70px 0;
  align-items: start;
}

.lo-content {
  font-size: 18px;
  line-height: 1.82;
}

.lo-content p {
  margin: 0 0 26px;
  color: #303437;
}

.lo-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 64px 0 22px;
  color: var(--lo-text);
}

.lo-content h3 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
  color: var(--lo-dark);
}

.lo-content ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.lo-content li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: #303437;
}

.lo-content li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--lo-green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .72em;
}

.lo-lead {
  font-size: 22px;
  line-height: 1.65;
  color: #202427 !important;
  margin-bottom: 36px !important;
}

.lo-summary {
  background: var(--lo-soft);
  border: 1px solid var(--lo-line);
  border-radius: 26px;
  padding: 30px;
  margin: 38px 0 52px;
}

.lo-summary strong {
  display: block;
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--lo-dark);
}

.lo-highlight {
  background: linear-gradient(135deg, #102231, #16364b);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  margin: 46px 0;
  position: relative;
  overflow: hidden;
}


.lo-highlight p {
  color: rgba(255,255,255,.82);
  margin: 0;
}

.lo-highlight strong {
  display: block;
  color: var(--lo-green);
  font-size: 22px;
  margin-bottom: 12px;
}

.lo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 42px 0;
}

.lo-compare-card {
  border: 1px solid var(--lo-line);
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0,0,0,.04);
}

.lo-compare-card.dark {
  background: var(--lo-dark);
  color: #fff;
  border-color: var(--lo-dark);
}

.lo-compare-card h3 {
  margin-top: 0;
}

.lo-compare-card.dark h3 {
  color: var(--lo-green);
}

.lo-compare-card.dark li {
  color: rgba(255,255,255,.78);
}

.lo-note {
  border-left: 5px solid var(--lo-green);
  background: #f7fbf3;
  padding: 28px 30px;
  border-radius: 0 24px 24px 0;
  margin: 44px 0;
}

.lo-note strong {
  display: block;
  color: var(--lo-green-dark);
  margin-bottom: 8px;
}

.lo-brand-box {
  background:
    linear-gradient(135deg, rgba(126,211,33,.92), rgba(79,159,22,.95));
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  margin: 64px 0;
}

.lo-brand-box h2 {
  color: #fff;
  margin-top: 0;
}

.lo-brand-box p,
.lo-brand-box li {
  color: rgba(255,255,255,.88);
}

.lo-brand-box li:before {
  background: #fff;
}

.lo-cta {
  background-color: #102231 !important;
  background-image: none !important;

  border-radius: 28px !important;

  padding: 34px 30px !important;

  margin-top: 70px !important;

  text-align: center !important;

  box-shadow: none !important;

  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.lo-cta h2 {
  font-size: clamp(28px, 3.8vw, 46px) !important;

  line-height: 1.02 !important;

  margin-bottom: 12px !important;

  color: #ffffff !important;
}

.lo-cta p {
  color: rgba(255,255,255,.72) !important;
	font-size: 15px !important;
	line-height: 1.5 !important;

  margin-bottom: 20px !important;
}

.lo-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 42px !important;
  padding: 0 22px !important;

  border-radius: 10px !important;

  background: transparent !important;
  background-color: transparent !important;
  color: #ffffff !important;
	
  background-image: none !important;

  border: none !important;

  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 15px !important;

  line-height: 0 !important;
  text-align: center !important;

  box-shadow: 0 10px 24px rgba(16,34,49,.16) !important;
  transition: .25s ease !important;
}

.lo-button::before {
  content: "";
  display: block;
  height: 0;
}

.lo-button {
  font-family: inherit !important;
}
.lo-button span {
  line-height: 1 !important;
}

.lo-button:hover {
  transform: translateY(-2px);
  background: #8ee432;
}

.lo-sidebar {
  position: sticky;
  top: 30px;
}

.lo-side-card {
  border: 1px solid var(--lo-line);
  border-radius: 26px;
  padding: 26px;
  margin-bottom: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.04);
}

.lo-side-card h3 {
  margin: 0 0 16px;
  font-size: 19px;
  color: var(--lo-dark);
}

.lo-side-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lo-side-card li {
  margin: 12px 0;
  font-size: 14px;
  color: var(--lo-muted);
}

.lo-side-card a:hover {
  color: var(--lo-green-dark);
}

.lo-related {
  background: var(--lo-soft);
  padding: 70px 0;
}

.lo-related h2 {
  text-align: center;
  font-size: 42px;
  letter-spacing: -0.04em;
  margin: 0 0 36px;
}

.lo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lo-related-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.05);
}

.lo-related-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.lo-related-card div {
  padding: 24px;
}

.lo-related-card span {
  display: block;
  color: var(--lo-green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.lo-related-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.lo-related-card p {
  color: var(--lo-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 980px) {
  .lo-article-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lo-sidebar {
    position: relative;
    top: auto;
  }

  .lo-compare,
  .lo-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lo-hero {
    min-height: 560px;
    border-radius: 0 0 24px 24px;
  }

  .lo-hero-inner {
    padding: 70px 0 52px;
  }

  .lo-content {
    font-size: 16px;
  }

  .lo-lead {
    font-size: 19px;
  }

  .lo-summary,
  .lo-highlight,
  .lo-brand-box,
  .lo-cta,
  .lo-compare-card {
    padding: 26px;
    border-radius: 24px;
  }
}

.lo-article-layout {
  display: block !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 70px 20px !important;
}

.lo-content {
  width: 100% !important;
  max-width: 820px !important;
  margin: 0 auto !important;
}

.lo-sidebar {
  display: none !important;
}

.lo-wrap {
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

.lo-hero {
  width: 100% !important;
}

.lo-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background:
  linear-gradient(135deg, #08141d 0%, #0d1d2a 55%, #132938 100%) !important;
  border-radius: 34px 34px 34px 34px;
  overflow: hidden;
}

.lo-hero:before {
  content: none;
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(126,211,33,0.16) 0%, rgba(126,211,33,0) 70%);
  pointer-events: none;
}


.lo-hero h1 {
  color: #7ed321;
}

.lo-badge {
  background: rgba(126,211,33,0.12);
  border: 1px solid rgba(126,211,33,0.18);
  color: #9be63d;
}

.lo-cta {
  background: transparent !important;
  padding: 40px 0 10px !important;
  text-align: center !important;
  border-radius: 0 !important;
}

.lo-cta h2 {
  color: #102231 !important;
  font-size: clamp(34px, 5vw, 58px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 18px !important;
  text-align: center !important;
}

.lo-cta p {
  color: #5f666b !important;
  max-width: 620px !important;
  margin: 0 auto 34px !important;
  text-align: center !important;
}

.lo-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  padding: 0 34px !important;
  border-radius: 14px !important;
  background: #7ed321 !important;
  color: #102231 !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  letter-spacing: -0.02em !important;
  box-shadow: 0 10px 30px rgba(126,211,33,.22) !important;
  transition: .25s ease !important;
}

.lo-button:hover {
  transform: translateY(-2px);
  background: #8ce82d !important;
}


article .lo-cta,
.lo-blog .lo-cta,
body .lo-cta {
  background: #102231 !important;
  background-color: #102231 !important;
  background-image: none !important;

  border-radius: 24px !important;

  padding: 60px 40px !important;
  margin-top: 80px !important;

  text-align: center !important;

  box-shadow: none !important;
}

article .lo-cta h2,
.lo-blog .lo-cta h2 {
  color: #ffffff !important;
}

article .lo-cta p,
.lo-blog .lo-cta p {
  color: rgba(255,255,255,.72) !important;
}

.lo-blog .lo-hero {
  min-height: 280px !important;
  height: auto !important;

  align-items: center !important;

  border-radius: 0 0 28px 28px !important;
}

.lo-blog .lo-hero-inner {
  padding: 38px 0 38px !important;
}

.lo-blog .lo-hero h1,
.lo-blog .lo-hero-title {
  font-size: clamp(28px, 4vw, 52px) !important;
  line-height: 1.02 !important;

  margin-bottom: 14px !important;
}

.lo-blog .lo-hero p {
  margin-bottom: 18px !important;

  font-size: 17px !important;
  line-height: 1.6 !important;
}

.lo-blog .lo-meta {
  margin-top: 10px !important;
}

.lo-blog .lo-hero {
  min-height: auto !important;

  padding: 0 !important;

  border-radius: 28px !important;

  overflow: hidden !important;

  align-items: center !important;

  background:
    linear-gradient(135deg, #08141d 0%, #102231 55%, #16364b 100%) !important;

  background-image: linear-gradient(135deg, #08141d 0%, #102231 55%, #16364b 100%) !important;
}

.lo-blog .lo-hero-inner {
  padding: 36px 40px !important;
}

.lo-blog .lo-hero-title,
.lo-blog .lo-hero h1 {
  font-size: clamp(28px, 4vw, 52px) !important;

  line-height: 1.02 !important;

  margin-bottom: 16px !important;

  max-width: 860px !important;
}

.lo-blog .lo-hero p {
  font-size: 16px !important;

  line-height: 1.55 !important;

  margin-bottom: 16px !important;
}

.lo-blog .lo-meta {
  margin-top: 10px !important;
}

.lo-hero-title {
  color: #7ed321 !important;

  font-size: clamp(28px, 4vw, 52px) !important;

  line-height: 1.02 !important;

  letter-spacing: -0.05em !important;

  margin: 0 0 16px !important;

  max-width: 860px !important;
	
}

.lo-compare-card.dark p,
.lo-compare-card.dark li {
  color: rgba(255,255,255,.78) !important;
}

.lo-compare-card.dark h3 {
  color: #7ed321 !important;
}

.podminky {
  line-height: 1.8;
  color: #111;
}

.podminky__h1 {
  margin-bottom: 30px;
}

.podminky__company {
  margin-left: 24px;
  margin-bottom: 35px;
}

.podminky__list {
  padding-left: 24px;
  margin: 0;
}

.podminky__list > li {
  margin-bottom: 38px;
  padding-left: 8px;
}

.podminky__list > li::marker {
  font-weight: 600;
}

.podminky__title {
  display: inline;
  font-size: 20px;
  font-weight: 500;
}

.podminky__content {
  margin-top: 14px;
}


.podminky__bullets {
  margin: 14px 0 20px 0;
  padding-left: 24px;
  list-style-type: disc;
}

.podminky__bullets li {
  margin-bottom: 6px;
}

.podminky p {
  margin: 16px 0;
}