:root {
  --brand-accent: #0080c0;
  --brand-accent-soft: color-mix(in srgb, var(--brand-accent) 14%, white);
  --brand-accent-deep: color-mix(in srgb, var(--brand-accent) 82%, black);
  --brand-neutral: #263e0f;
  --brand-radius: 1px;
}

/* Kanban board — columns scroll sideways, cards stack. */
.views-kanban {
  display: flex; gap: .8rem; overflow-x: auto; padding-bottom: .5rem;
  -webkit-overflow-scrolling: touch;
}
.views-kanban-col {
  flex: 0 0 16rem; background: rgba(0, 0, 0, .04); border-radius: 10px;
  padding: .5rem; min-height: 4rem;
}
.views-kanban-head { font-weight: 600; font-size: .85rem; margin: .2rem .3rem .5rem; }
.views-kanban-drop { display: flex; flex-direction: column; gap: .5rem;
  min-height: 2rem; }
.views-kanban-card {
  background: #fff; border: 1px solid rgba(0, 0, 0, .12); border-radius: 8px;
  padding: .6rem .7rem; box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
}
.views-kanban-drag .views-kanban-card { cursor: grab; }
.views-kanban-card h2 { font-size: .95rem; margin: 0 0 .2rem; }
/* Calendar — a month grid, records as chips on their day. */
.views-cal-nav { display: flex; gap: 1rem; align-items: center; }
.views-cal-grid { width: 100%; table-layout: fixed; border-collapse: collapse; }
.views-cal-grid th { font-size: .75rem; color: var(--muted, #8a8172);
  padding: .3rem; text-align: left; }
.views-cal-cell {
  border: 1px solid rgba(0, 0, 0, .08); vertical-align: top;
  height: 5.5rem; padding: .25rem; overflow: hidden;
}
.views-cal-out { background: rgba(0, 0, 0, .03); }
.views-cal-today { background: var(--accent-soft, #eef3f8); }
.views-cal-day { font-size: .75rem; color: var(--muted, #8a8172); }
.views-cal-chip {
  display: block; font-size: .72rem; background: var(--accent, #17324d);
  color: #fff; border-radius: 4px; padding: .05rem .3rem; margin-top: .15rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (max-width: 700px) {
  .views-cal-cell { height: 4rem; }
  .views-kanban-col { flex-basis: 12rem; }
}


/* Views tables (the Bootstrap idiom, scoped to our table shell). */
.table-striped tbody tr:nth-child(even) td { background: rgba(0, 0, 0, .035); }
.table-bordered th, .table-bordered td { border: 1px solid rgba(0, 0, 0, .12); }
.table-hover tbody tr:hover td { background: rgba(0, 0, 0, .06); }
.table-compact th, .table-compact td { padding: .3rem .5rem; }
/* Views grid entries as cards. */
.views-grid .views-card {
  border: 1px solid rgba(0, 0, 0, .12); border-radius: 10px;
  padding: 1rem; background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
}
/* Layout Builder section presets. */
.section-bg-muted { background: rgba(0, 0, 0, .04); }
.section-bg-accent { background: var(--accent, #17324d); color: #fff; }
.section-bg-dark { background: #1f2430; color: #fff; }
.section-bg-muted, .section-bg-accent, .section-bg-dark { border-radius: 10px; }
.section-pad-compact { padding: .6rem; }
.section-pad-comfortable { padding: 1.2rem; }
.section-pad-spacious { padding: 2.2rem; }
.section-gap-small { gap: .5rem !important; }
.section-gap-large { gap: 2rem !important; }
.section-narrow { max-width: 48rem; margin-inline: auto; }
/* 203: media view styles — gallery, banner, carousel, bricks. */
.views-gallery { display: grid; gap: .6rem; }
.views-gallery-tile { overflow: hidden; border-radius: 8px; }
.views-gallery-tile img {
  width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  display: block; transition: transform .25s ease; cursor: zoom-in;
}
.views-gallery-tile:hover img { transform: scale(1.04); }
.views-banner {
  position: relative; overflow: hidden; border-radius: 12px;
  display: flex; align-items: center; margin: 0 0 1rem 0; color: #fff;
}
/* The cover anchors to the banner — the entry and its fields stay
   unpositioned so the image escapes them; the text lifts above via
   per-child z-index (a positioned img would otherwise paint over it). */
.views-banner .entry img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.views-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .05) 55%);
  pointer-events: none;
}
.views-banner .entry {
  width: 100%; padding: 1.6rem 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}
.views-banner .entry > * { position: relative; z-index: 2; }
.views-banner .entry > *:has(img) { position: static; }
.views-banner .entry a { color: #fff; }
.views-banner .entry h2 { margin: 0 0 .3rem 0; }
.views-banner .entry p { margin: 0; }
.views-banner-start { align-items: flex-start; }
.views-banner-end { align-items: flex-end; }
.views-carousel { position: relative; }
.views-carousel-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  gap: .8rem; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.views-carousel-track::-webkit-scrollbar { display: none; }
.views-carousel-slide { flex-shrink: 0; scroll-snap-align: start; min-width: 0; }
.views-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 2.2rem; height: 2.2rem; border-radius: 50%; border: none;
  background: rgba(0, 0, 0, .45); color: #fff; font-size: 1.1rem;
  cursor: pointer;
}
.views-carousel-arrow:hover { background: rgba(0, 0, 0, .65); }
.views-carousel-prev { left: .4rem; } .views-carousel-next { right: .4rem; }
.views-carousel-dots { display: flex; gap: .35rem; justify-content: center; margin-top: .5rem; }
.views-carousel-dots button {
  width: .55rem; height: .55rem; border-radius: 50%; border: none;
  background: rgba(0, 0, 0, .25); cursor: pointer; padding: 0;
}
.views-carousel-dots button.active { background: var(--accent, #17324d); }
.views-bricks { column-gap: .8rem; }
.views-brick {
  break-inside: avoid; margin: 0 0 .8rem 0; border-radius: 8px;
  overflow: hidden;
}
.views-brick img { width: 100%; display: block; }
.fabrika-lightbox {
  position: fixed; inset: 0; z-index: 999; background: rgba(0, 0, 0, .85);
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-out;
}
.fabrika-lightbox img {
  max-width: 92vw; max-height: 92vh; border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .6);
}
.views-timeline { position: relative; padding-left: 1.6rem; }
.views-timeline::before {
  content: ""; position: absolute; left: .5rem; top: 0; bottom: 0;
  width: 2px; background: var(--accent, #17324d); opacity: .35;
}
.views-timeline-item { position: relative; margin: 0 0 1rem 0; }
.views-timeline-item::before {
  content: ""; position: absolute; left: -1.44rem; top: .55rem;
  width: .7rem; height: .7rem; border-radius: 50%;
  background: var(--accent, #17324d);
}
.views-timeline-card {
  border: 1px solid rgba(0, 0, 0, .12); border-radius: 8px;
  padding: .8rem 1rem; background: #fff;
}
.views-timeline-card img { max-height: 240px; width: auto; max-width: 100%; }
@media (min-width: 861px) {
  .views-timeline-alt { padding-left: 0; }
  .views-timeline-alt::before { left: 50%; }
  .views-timeline-alt .views-timeline-item { width: calc(50% - 1.6rem); }
  .views-timeline-alt .views-timeline-item::before { left: auto; right: -1.98rem; }
  .views-timeline-alt .views-timeline-item:nth-child(even) { margin-left: auto; }
  .views-timeline-alt .views-timeline-item:nth-child(even)::before { right: auto; left: -1.98rem; }
}
.views-accordion-item {
  border: 1px solid rgba(0, 0, 0, .12); border-radius: 8px;
  margin: 0 0 .5rem 0; overflow: hidden;
}
.views-accordion-item summary {
  padding: .7rem 1rem; cursor: pointer; font-weight: 600;
  background: rgba(0, 0, 0, .03);
}
.views-accordion-body { padding: .8rem 1rem; }
/* The header already carries the label — no duplicate inside the body. */
.views-accordion-body > h2:first-child,
.views-tab-panel > h2:first-child { display: none; }
.views-tabs-bar {
  display: flex; gap: .3rem; flex-wrap: wrap;
  border-bottom: 2px solid rgba(0, 0, 0, .12); margin-bottom: .8rem;
}
.views-tab {
  border: none; background: none; padding: .55rem .9rem; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  font-weight: 500;
}
.views-tab.active {
  border-bottom-color: var(--accent, #17324d);
  color: var(--accent, #17324d); font-weight: 600;
}
.views-tab-panel { display: none; }
.views-tab-panel.active { display: block; }
/* Stacked embeds breathe; an embed may announce its view label. */
.views-embed + .views-embed { margin-top: 2.2rem; }
.views-embed-title {
  margin: 0 0 .8rem 0; font-size: 1.3rem;
  padding-bottom: .35rem; border-bottom: 2px solid var(--accent, #17324d);
  display: inline-block;
}
/* Mobile (the binding 390×844 rule): tighter paddings, calmer type. */
@media (max-width: 700px) {
  .section-pad-spacious { padding: 1.1rem; }
  .section-pad-comfortable { padding: .8rem; }
  .section-gap-large { gap: 1rem !important; }
  .views-table { font-size: .9em; }
  .views-gallery { grid-template-columns: repeat(2, 1fr) !important; }
  .views-bricks { column-count: 2 !important; }
  .views-banner .entry { padding: 1rem 1.2rem; }
}


/* claudia:settings */
:root {
  --brand-accent: #0080c0;
  --brand-accent-soft: color-mix(in srgb, var(--brand-accent) 14%, white);
  --brand-accent-deep: color-mix(in srgb, var(--brand-accent) 82%, black);
  --brand-neutral: #263e0f;
  --brand-radius: 1px;
  --brand-serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --brand-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
/* /claudia:settings */


. entry


/* Category and record rich text: real bullets, accent coloured. */
.rich-text ul,
.term-fields ul,
.field .rich-text ul {
  list-style: none;
  margin: .75rem 0;
  padding-left: 1.4rem;
}
.rich-text ul > li,
.term-fields ul > li {
  position: relative;
  margin: .35rem 0;
  padding-left: .35rem;
  line-height: 1.55;
}
.rich-text ul > li::before,
.term-fields ul > li::before {
  content: "";
  position: absolute;
  left: -.9rem;
  top: .55em;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--accent, #2f6fed);
}
.rich-text ol,
.term-fields ol {
  margin: .75rem 0;
  padding-left: 1.6rem;
  list-style: decimal;
}
.rich-text ol > li,
.term-fields ol > li { margin: .35rem 0; line-height: 1.55; }
.term-fields h3,
.term-fields h4,
.rich-text h3,
.rich-text h4 {
  margin: 1.1rem 0 .4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent, #2f6fed);
}
.term-fields p, .rich-text p { line-height: 1.6; margin: .5rem 0; }
.term-fields { margin-bottom: 1.5rem; }
.term-fields img { border-radius: .5rem; margin: .5rem 0 1rem; }


/* claudia:settings */
:root { --brand-radius: 1px; --radius: 1px; }
/* /claudia:settings */

:root {
  --brand-radius: 2px;
  --radius: 2px;
  --brand-accent: #0080c0;
  --brand-accent-soft: color-mix(in srgb, #0080c0 14%, white);
  --brand-accent-deep: color-mix(in srgb, #0080c0 82%, black);
  --accent: #0080c0;
}

/* Typografia odkazov pre celý verejný web: bez podčiarknutia,
   rozlíšenie farbou. Patrí do nastavenia vzhľadu, nie k jednotlivým blokom. */
a,
a:link,
a:visited {
  text-decoration: none !important;
}
a:hover,
a:focus {
  text-decoration: none !important;
  color: var(--brand-accent-deep, #006a9e);
}

/* Homepage hero (183) — the block carries the markup, this sheet the look.
   Edit freely in Appearance -> Custom CSS.
   2026-08-06: záložná farba prepísaná z oranžovej #da5100 na akcent stránky #0080c0. */
.hero {
  background: linear-gradient(135deg, var(--brand-accent, #0080c0),
    color-mix(in srgb, var(--brand-accent, #0080c0) 72%, #16191f));
  color: #fff;
  border-radius: calc(var(--brand-radius, 12px) * 2);
  padding: 3rem 2rem;
  margin-bottom: .5rem;
}
.hero .hero-title { margin: 0 0 .5rem; font-size: 2.1rem; font-weight: 800;
  letter-spacing: -.02em; color: #fff; }
.hero .hero-lead { margin: 0 0 1.4rem; max-width: 38rem;
  font-size: 1.05rem; opacity: .92; }
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0; }
.hero a.hero-btn { display: inline-block; padding: .55rem 1.1rem;
  border-radius: .55rem; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.38); color: #fff; font-weight: 600;
  text-decoration: none; }
.hero a.hero-btn:hover { background: rgba(255,255,255,.28); }
.hero a.hero-btn-ghost { background: transparent; }


/* Dlaždice chybových kódov a parametrov — usporiadanie prevzaté z industrio.online,
   akcentová farba je však z Appearance tejto stránky (--brand-accent, teraz #0080c0),
   nie oranžová z predlohy. Keď sa zmení akcent v Appearance, zmenia sa aj dlaždice.
   Triedy tiles / tile vkladajú samotné views, takže sa pravidlá chytia len tu. */

.tiles {
  --tile-accent: var(--brand-accent, #0080c0);
  --tile-accent-deep: var(--brand-accent-deep, #006a9e);
}

.tiles__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 265px), 1fr));
  gap: .7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tiles__list > li {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .9rem 1rem;
  margin: 0;
  list-style: none;
}
.tiles p { margin: 0; }
.tiles .field__label,
.tiles .views-label,
.tiles .field-label { display: none; }

/* ---- Chybové kódy: tmavý pás cez celú šírku ---- */
.tiles--ec {
  position: relative;
  background: #20242C;
  border-top: 3px solid var(--tile-accent);
  padding: 2.6rem 0 2.9rem;
  box-shadow: 0 0 0 100vmax #20242C;
  clip-path: inset(0 -100vmax);
}
.tiles--ec .tiles__list {
  gap: 1px;
  background: #2A2F37;
  border: 1px solid #2A2F37;
}
.tile--ec {
  background: #0D0F13;
  transition: background .2s ease;
}
.tile--ec:hover { background: #12151A; }

/* 1. kód */
.tile--ec > *:nth-child(1),
.tile--ec > *:nth-child(1) a {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--tile-accent);
  text-decoration: none;
}
/* 2. popis poruchy — najviac dva riadky */
.tile--ec > *:nth-child(2) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.32;
}
/* 3. riešenie — zvislá čiara v akcentovej farbe */
.tile--ec > *:nth-child(3) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: .5rem;
  padding-left: .65rem;
  border-left: 2px solid var(--tile-accent);
  color: #9AA1AB;
  font-size: .8rem;
  line-height: 1.35;
}
/* 4. séria — štítok dole */
.tile--ec > *:nth-child(4),
.tile--ec > *:nth-child(4) a {
  align-self: flex-start;
  margin-top: auto;
  padding: .12rem .45rem;
  border: 1px solid #2A2F37;
  background: transparent;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: .7rem;
  letter-spacing: .04em;
  color: #9AA1AB;
  text-decoration: none;
}

/* ---- Parametre: svetlé dlaždice s ľavým prúžkom ---- */
.tiles--param { padding: .25rem 0 0; }
.tile--param {
  background: #fff;
  border: 1px solid #E4E7EB;
  border-left: 3px solid #E4E7EB;
  transition: border-left-color .2s ease, background .2s ease;
}
.tile--param:hover {
  border-left-color: var(--tile-accent);
  background: #F5F6F8;
}
.tile--param > *:nth-child(1),
.tile--param > *:nth-child(1) a {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #1B1F26;
  text-decoration: none;
}
.tile--param:hover > *:nth-child(1),
.tile--param:hover > *:nth-child(1) a { color: var(--tile-accent-deep); }
.tile--param > *:nth-child(2) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1B1F26;
}
.tile--param > *:nth-child(3) {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: .8rem;
  color: #2A2F38;
}
.tile--param > *:nth-child(4),
.tile--param > *:nth-child(4) a {
  align-self: flex-start;
  margin-top: auto;
  padding: .12rem .45rem;
  border: 1px solid #E4E7EB;
  background: #F5F6F8;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: .7rem;
  letter-spacing: .04em;
  color: #7A828E;
  text-decoration: none;
}

@media (max-width: 640px) {
  .tiles__list { grid-template-columns: 1fr; }
}


/* Podčiarknutie odkazov sa rieši globálne v Appearance → vzhľad webu (scope:web),
   nie tu. Tento hárok už len usporadúva zoznam služieb na úvodnej stránke. */

.front-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: .35rem .9rem;
}
.front-text ul > li { margin: 0; padding: 0; }
.front-text p { line-height: 1.6; }


/* claudia:settings */
/* /claudia:settings */

/* Region "featured_bottom_second" — scope your selectors, e.g.
   [data-region="featured_bottom_second"] a { } */


/* claudia:settings */
/* /claudia:settings */

/* Region "footer_fifth" — scope your selectors, e.g.
   [data-region="footer_fifth"] a { } */


/* claudia:settings */
/* /claudia:settings */

/* Region "header" — scope your selectors, e.g.
   [data-region="header"] a { } */


/* claudia:settings */
[data-region="primary_menu"] > * { border-radius: 0px; }
/* /claudia:settings */

/* Region "primary_menu" — scope your selectors, e.g.
   [data-region="primary_menu"] a { } */
