@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  padding-top: 94px;
}
#nav {
background: #172131;
  position: fixed;
  top: 0;
  width: 100%;
  display: block;
  transition: top 0.6s;
  z-index: 99999;
  padding-top: 10px;
  padding-bottom: 10px;
}
#zahlavi {
  max-width: 1280px;
  margin: 0px auto;
}
:root {
  --inplem-red: #e30613;
  --inplem-red-dark: #b9000b;

  --inplem-blue: #004aa5;
  --inplem-blue-dark: #071a3d;

  --inplem-green: #2f861b;
  --inplem-green-light: #68b82e;

  --inplem-text: #10264d;
  --inplem-muted: #5f6f89;
  --inplem-soft: #f3f8fd;

  --inplem-radius: 22px;
  --inplem-shadow: 0 20px 45px rgba(7, 26, 61, 0.16);

  --inplem-container: 1280px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--inplem-text);
  background: #fff;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--inplem-blue-dark);
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.inplem-container {
  max-width: var(--inplem-container);
  margin: 0 auto;
  padding: 0 22px;
}
/* ==========================================
   TLAČÍTKA HOMEPAGE
========================================== */

.tlacitko{
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    width:280px;          /* změň třeba na 360px */
    height:62px;
    padding:0 28px;
    border-radius:16px;
    text-decoration:none !important;
    font-size:21px;
    font-weight:800;
    box-sizing:border-box;
    transition:.25s;
    box-shadow:0 8px 25px rgba(0,0,0,.18);
}
/* šipka */
.tlacitko-sipka{
    display:flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    flex:0 0 22px;
    font-size:42px;
    font-weight:300;
    line-height:40px;
    margin-left:18px;
    transform:translateY(-2px);
    transition:.25s;
}

/* hover */

.tlacitko:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(0,0,0,.25);
}
.tlacitko:hover .tlacitko-sipka{
    transform:translate(6px,-2px);
}

/* ---------------- MODRÁ ---------------- */

.tlacitko-modre{
    background:#0d53ae;
    color:#fff;
}
.tlacitko-modre:hover{

    background:#0b4690;
    color:#fff;
}

/* ---------------- ZELENÁ ---------------- */

.tlacitko-zelene{
    background:#426c3d;
    color:#fff !important;
}
.tlacitko-zelene:hover{
    background:#247614;
    color:#fff;
}

/* ---------------- TMAVÁ ---------------- */

.tlacitko-tmave{
    background:#10254d;
    color:#fff;
}

.tlacitko-tmave:hover{
    background:#091a37;
    color:#fff;
}

/* ---------------- BÍLÁ ---------------- */

.tlacitko-bile{
    background:#fff;
    color:#0d53ae;
}
.tlacitko-bile:hover{
    background:#f4f7fb;
    color:#083f86;
}

/* HERO */

.inplem-hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 60px 0 60px;
  background: linear-gradient(
    180deg,
    #3ea5f5 0%,
    #70c3fb 28%,
    #ccefff 70%,
    #ffffff 100%
  );
}

.inplem-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 145px;
  z-index: 1;
}

.inplem-hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 70px;
  align-items: center;
}

.inplem-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: var(--inplem-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
}

.inplem-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
font-size: clamp(32px, 5vw, 60px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.inplem-hero p {
  max-width: 650px;
  margin-bottom: 36px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--inplem-text);
}


/* BUTTONS */

.inplem-hero-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  max-width: 650px;
  margin-bottom: 46px;
}

.inplem-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 14px 26px 14px 24px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: .25s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.inplem-btn:hover {
  transform: translateY(-3px);
}

.inplem-btn-blue {
  background: var(--inplem-blue);
  color: #fff;
}

.inplem-btn-green {
  background: var(--inplem-green);
  color: #fff;
}

.inplem-btn-dark {
  background: var(--inplem-blue-dark);
  color: #fff;
}

.inplem-btn-red {
  background: var(--inplem-red);
  color: #fff;
}

.inplem-btn-red:hover {
  background: var(--inplem-red-dark);
}

.inplem-btn-white {
  background: rgba(255,255,255,.92);
  color: var(--inplem-blue);
  border: 1px solid rgba(0,0,0,.08);
}

.inplem-btn > span:nth-child(2) {
  flex: 1;
  white-space: nowrap;
}
.inplem-btn.inplem-btn-blue:hover, .inplem-btn.inplem-btn-dark:hover, .inplem-btn.inplem-btn-green:hover,.inplem-btn.inplem-btn-red:hover,.plem-btn.plem-btn--primary:hover  {
  color: #ffeda6;
}
.inplem-btn.inplem-btn-blue:focus, .inplem-btn.inplem-btn-dark:focus,, .inplem-btn.inplem-btn-green:focus,,.inplem-btn.inplem-btn-red:focus,,.plem-btn.plem-btn--primary:focus,  {
  color: #ffeda6;
}
.inplem-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

.inplem-arrow {
  flex: 0 0 auto;
  font-size: 34px;
  line-height: 1;
  margin-left: 8px;
  margin-top: -4px;
}


/* DOČASNÉ IKONY */

.inplem-icon {
  width: 30px;
  height: 30px;
  display: block;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: .95;
}

.inplem-icon-cow,
.inplem-icon-farm,
.inplem-icon-sheep,
.inplem-icon-mail {
  border-radius: 8px;
}


/* BENEFITY */

.inplem-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 720px;
}

.inplem-benefit {
  text-align: center;
  color: var(--inplem-blue);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto 10px;
  border: 3px solid currentColor;
  border-radius: 16px;
}

.inplem-benefit strong {
  display: block;
  margin-bottom: 3px;
  color: var(--inplem-blue);
  font-size: 16px;
  font-weight: 900;
}

.inplem-benefit small {
  display: block;
  color: var(--inplem-text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}


/* HERO IMAGES */

.inplem-hero-images {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.inplem-photo {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 26px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 25px 55px rgba(7, 26, 61, .22);
  border: 2px solid rgba(255,255,255,.75);
}

.inplem-photo-large {
  grid-row: span 2;
}

.inplem-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: .45s ease;
}

.inplem-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62), transparent 58%);
}

.inplem-photo span {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(0,0,0,.4);
}

.inplem-photo:hover img {
  transform: scale(1.06);
}


/* MRÁČKY */

.cloud {
  position: absolute;
  z-index: 2;
  width: 250px;
  height: 72px;
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  filter: blur(10px);
  opacity: .6;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
}

.cloud::before {
  width: 96px;
  height: 96px;
  left: 40px;
  top: -45px;
}

.cloud::after {
  width: 120px;
  height: 120px;
  right: 45px;
  top: -62px;
}

.cloud-1 {
  top: 250px;
  left: -80px;
}

.cloud-2 {
  top: 230px;
  right: 8%;
  transform: scale(.9);
}


/* LOUKA */

.meadow {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -80px;
  height: 240px;
  border-radius: 50% 50% 0 0;
}

.meadow-back {
  z-index: 3;
  bottom: 10px;
  height: 170px;
  background: linear-gradient(180deg, #8cc94a 0%, #5ba82d 100%);
  opacity: .82;
}

.meadow-front {
  z-index: 4;
  height: 230px;
  background: linear-gradient(180deg, #68b82e 0%, #2f861b 100%);
  box-shadow: 0 -20px 40px rgba(48,130,35,.18);
}


/* SEKCE */

.inplem-section {
  padding: 90px 0;
  background: #fff;
}

.inplem-section-soft {
  background: var(--inplem-soft);
}

.inplem-section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.inplem-section-head span,
.inplem-cta span {
  display: inline-block;
  color: var(--inplem-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.inplem-section-head h2,
.inplem-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

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

.inplem-card {
  display: block;
  padding: 34px;
  border-radius: var(--inplem-radius);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(7, 26, 61, .10);
  transition: .25s ease;
}

.inplem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--inplem-shadow);
}

.inplem-card h3 {
  margin-bottom: 14px;
  font-size: 27px;
  font-weight: 850;
}

.inplem-card p {
  margin-bottom: 24px;
  color: var(--inplem-muted);
}

.inplem-card strong {
  color: var(--inplem-red);
}


/* NOVINKY */

.inplem-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.inplem-news {
  padding: 30px;
  border-radius: var(--inplem-radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 26, 61, .08);
}

.inplem-news span {
  color: var(--inplem-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.inplem-news h3 {
  margin: 12px 0 12px;
  font-size: 24px;
}

.inplem-news p {
  color: var(--inplem-muted);
  margin-bottom: 18px;
}

.inplem-news a {
  color: var(--inplem-red);
  font-weight: 800;
  text-decoration: none;
}


/* CTA */

.inplem-cta {
  padding: 90px 0;
  background: #fff;
}

.inplem-cta-box {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: 30px;
  background: linear-gradient(135deg, #071a3d 0%, #004aa5 100%);
  color: #fff;
}

.inplem-cta h2,
.inplem-cta p,
.inplem-cta span {
  color: #fff;
}

.inplem-cta p {
  margin-top: 16px;
  max-width: 700px;
  opacity: .9;
}


/* RESPONZIVITA */

@media (max-width: 1080px) {
  .inplem-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .inplem-hero-images {
    max-width: 760px;
  }

  .inplem-card-grid,
  .inplem-news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .inplem-hero {
    padding: 120px 0 120px;
  }

  .inplem-hero::before {
    height: 105px;
  }

  .inplem-hero h1 {
    font-size: 38px;
  }

  .inplem-hero p {
    font-size: 16px;
  }

  .inplem-hero-buttons {
    grid-template-columns: 1fr;
  }

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

  .inplem-hero-images {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 220px 220px;
  }

  .inplem-photo-large {
    grid-row: auto;
  }

  .inplem-cta-box {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}
/*ZAPATI*/

.inplem-footer {
  margin-top: 90px;
  padding: 64px 20px 26px;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.22), transparent 34%),
    linear-gradient(135deg, #06111f, #0b1728 55%, #020617);
  color: #fff;
}

.inplem-footer__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.inplem-footer__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 26px;
  margin-bottom: 42px;
}

.inplem-footer__quick,
.inplem-footer__address {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}

.inplem-footer__quick span,
.inplem-footer__address span {
  display: block;
  margin-bottom: 14px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.inplem-footer__quick a {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.inplem-footer__address strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.inplem-footer__address p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}

.inplem-footer__links {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr .9fr;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.inplem-footer__links h4 {
  margin: 0 0 14px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.inplem-footer__links a {
  display: block;
  position: relative;
  padding: 5px 0 5px 14px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.28;
  text-decoration: none;
  transition: .2s ease;
}

.inplem-footer__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3b82f6;
  opacity: .7;
}

.inplem-footer__links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.inplem-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

@media (max-width: 980px) {
  .inplem-footer__top,
  .inplem-footer__links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .inplem-footer__top,
  .inplem-footer__links {
    grid-template-columns: 1fr;
  }

  .inplem-footer__quick a {
    font-size: 19px;
  }

  .inplem-footer__bottom {
    flex-direction: column;
  }
}

/* ==========================================================
   SEKČNÍ NAVIGACE – SPOLEČNÝ ZÁKLAD
========================================================== */

#nav-sluzby {
  --nav-bg-start: #f8fbff;
  --nav-bg-end: #eef6ff;
  --nav-text: #10244a;
  --nav-accent: #0b63b6;
  --nav-separator: rgba(16, 36, 74, 0.45);
  --nav-border: rgba(15, 35, 72, 0.1);
  --nav-shadow: rgba(15, 35, 72, 0.08);

  position: relative;
  z-index: 20;
  background: linear-gradient(
    180deg,
    var(--nav-bg-start) 0%,
    var(--nav-bg-end) 100%
  );
  border-top: 1px solid var(--nav-border);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 12px 30px var(--nav-shadow);
}

#nav-sluzby .tck-container {
  max-width: 1220px;
  margin: 0 auto;
}


/* ==========================================================
   BAREVNÉ VARIANTY
========================================================== */

/* Plemenářské služby – modrá */
#nav-sluzby:has(.navigace-sluzby.plemenarske-sluzby) {
  --nav-bg-start: #f8fbff;
  --nav-bg-end: #eef6ff;
  --nav-text: #10244a;
  --nav-accent: #0b63b6;
  --nav-separator: rgba(11, 99, 182, 0.45);
  --nav-border: rgba(11, 99, 182, 0.13);
  --nav-shadow: rgba(15, 35, 72, 0.08);
}


/* Farma Tehov – zelená */
#nav-sluzby:has(.navigace-sluzby.navigace-farma) {
  --nav-bg-start: #fafcf7;
  --nav-bg-end: #eef5e8;
  --nav-text: #29472d;
  --nav-accent: #5c873f;
  --nav-separator: rgba(92, 135, 63, 0.48);
  --nav-border: rgba(92, 135, 63, 0.16);
  --nav-shadow: rgba(57, 88, 43, 0.08);
}


/* Romanovské ovce – hnědá */
#nav-sluzby:has(.navigace-sluzby.romanovske-ovce) {
  --nav-bg-start: #fcfaf7;
  --nav-bg-end: #f4ede5;
  --nav-text: #4b3828;
  --nav-accent: #916a43;
  --nav-separator: rgba(145, 106, 67, 0.48);
  --nav-border: rgba(145, 106, 67, 0.16);
  --nav-shadow: rgba(79, 56, 38, 0.08);
}


/* ==========================================================
   SEZNAM MENU
========================================================== */

#navigace-sluzby .mod-menu {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
}

#navigace-sluzby .mod-menu::-webkit-scrollbar {
  display: none;
}

#navigace-sluzby .nav-item {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
}


/* Jemný oddělovač mezi položkami */

#navigace-sluzby .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nav-separator);
  transform: translate(50%, -50%);
}


/* ==========================================================
   ODKAZY
========================================================== */

#navigace-sluzby .nav-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 0 30px;

  background: transparent;
  color: var(--nav-text);

  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 0.24s ease,
    transform 0.24s ease;
}


/* Odstranění původního pravého/bočního obdélníku */

#navigace-sluzby .nav-item a::before {
  display: none;
}


/* Podtržení */

#navigace-sluzby .nav-item a::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--nav-accent);

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}


/* Hover */

#navigace-sluzby .nav-item a:hover {
  background: transparent;
  color: var(--nav-accent);
  transform: translateY(-1px);
}

#navigace-sluzby .nav-item a:hover::after {
  transform: scaleX(1);
}


/* Aktivní položka */

#navigace-sluzby .nav-item.active a,
#navigace-sluzby .nav-item.current a,
#navigace-sluzby .nav-item.alias-parent-active a {
  background: transparent;
  color: var(--nav-accent);
}

#navigace-sluzby .nav-item.active a::after,
#navigace-sluzby .nav-item.current a::after,
#navigace-sluzby .nav-item.alias-parent-active a::after {
  transform: scaleX(1);
}


/* ==========================================================
   MOBIL A TABLET
========================================================== */

@media (max-width: 900px) {
  #navigace-sluzby .mod-menu {
    justify-content: flex-start;
  }

  #navigace-sluzby .nav-item a {
    min-height: 56px;
    padding: 0 23px;
    font-size: 14px;
  }

  #navigace-sluzby .nav-item a::after {
    right: 23px;
    left: 23px;
    height: 3px;
  }
}



/*HERO PLEMENA*/

.plem-hero {
  padding: 46px 20px 38px;
  background:
    radial-gradient(circle at 12% 20%, rgba(78,175,247,.18), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 50%, #ffffff 100%);
}

.plem-hero__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.plem-hero__content {
  position: relative;
  padding: 42px;
  border-radius: 28px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,35,72,.08);
  box-shadow: 0 18px 45px rgba(15,35,72,.08);
}

.plem-hero__label {
  display: inline-flex;
  margin-bottom: 16px;
  color: #0b63b6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plem-hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #071d41;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
    font-weight: 800;
}

.plem-hero p {
  max-width: 720px;
  margin: 0;
  color: #263b5f;
  font-size: 18px;
  line-height: 1.65;
}

.plem-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
/*skrytí bloku na stránce blog*/

body.view-article #hero_hlavni .blok-hero.plemena{
    display:none !important;
}

.plem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: .22s ease;
}

.plem-btn--primary {
  background: #0b63b6;
  color: #fff;
  box-shadow: 0 10px 24px rgba(11,99,182,.22);
}

.plem-btn--secondary {
  background: #fff;
  color: #0b63b6;
  border: 1px solid rgba(11,99,182,.18);
}

.plem-btn:hover {
  transform: translateY(-2px);
}


/* NOVINKY */
.plem-news {
  padding: 26px;
  border-radius: 28px;
  background: #071d41;
  color: #fff;
  box-shadow: 0 18px 45px rgba(7,29,65,.18);
}

.plem-news__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.plem-news__head span {
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plem-news__head a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.plem-news__item {
  border-top: 1px solid rgba(255,255,255,.12);
}

.plem-news__item a {
  display: block;
  padding: 17px 0;
  text-decoration: none;
}
.plem-news__item a:hover {
  color: #93c5fd;
}
.plem-news__item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.plem-news__item span {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.5;
}

.plem-news__item a:hover strong {
  color: #93c5fd;
}

@media (max-width: 900px) {
  .plem-hero__inner {
    grid-template-columns: 1fr;
  }

  .plem-hero__content {
    padding: 30px 24px;
  }

  .plem-hero h1 {
    font-size: 36px;
  }
}


/* =========================================
   BLOGOVÝ ROZCESTNÍK
========================================= */

.blog-items.rozcestnik {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 40px 0 60px;
}

/* jednotlivá karta */
.blog-items.rozcestnik .blog-item {
  position: relative;
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

/* vnitřek karty */
.blog-items.rozcestnik .item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 245px;
  padding: 30px 30px 28px;
  overflow: hidden;

  border: 1px solid #dce8f4;
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(78, 175, 247, 0.14),
      transparent 38%
    ),
    linear-gradient(145deg, #ffffff 0%, #f5f9fd 100%);

  box-shadow: 0 14px 34px rgba(15, 35, 72, 0.07);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

/* horní barevný detail */
.blog-items.rozcestnik .item-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 54px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: #4eaff7;
  transition: width 0.28s ease;
}

/* šipka dole */
.blog-items.rozcestnik .item-content::after {
  content: "→";
  position: absolute;
  right: 28px;
  bottom: 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: #eaf5fe;
  color: #0b63b6;

  font-size: 21px;
  font-weight: 700;

  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease;
}

/* hover celé karty */
.blog-items.rozcestnik .blog-item:hover .item-content {
  transform: translateY(-6px);
  border-color: #9fcff2;
  box-shadow: 0 22px 48px rgba(15, 35, 72, 0.13);
}

.blog-items.rozcestnik .blog-item:hover .item-content::before {
  width: 90px;
}

.blog-items.rozcestnik .blog-item:hover .item-content::after {
  transform: translateX(4px);
  background: #0b63b6;
  color: #fff;
}


/* =========================================
   NADPIS
========================================= */

.blog-items.rozcestnik .page-header {
  margin: 0 0 17px;
  padding: 0;
  border: 0;
}

/* stejná výška prostoru nadpisu */
.blog-items.rozcestnik .tck-article-title {
  display: flex;
  align-items: flex-start;
  min-height: 58px;
  margin: 0;
  padding: 0;
}

.blog-items.rozcestnik .tck-article-title a {
  color: #0b2348;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.22s ease;
}

.blog-items.rozcestnik .blog-item:hover .tck-article-title a {
  color: #0b63b6;
}


/* =========================================
   KRÁTKÝ TEXT
========================================= */

.blog-items.rozcestnik .tck-article-body {
  flex-grow: 1;
  margin: 0;
  padding: 0 54px 52px 0;
}

/* pevná výška textové části */
.blog-items.rozcestnik .tck-article-body p {
  display: -webkit-box;
  min-height: 72px;
  margin: 0;

  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  color: #41536f;
  font-size: 15px;
  line-height: 1.6;
  text-align: left !important;
}


/* =========================================
   KLIKACÍ PLOCHA PŘES CELOU KARTU
========================================= */

.blog-items.rozcestnik .tck-article-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
/* CLANEK SIRKA*/
.item-pagerozcestnik-clanek {
  max-width: 900px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
  }
/* =========================================
   RESPONZIVITA
========================================= */

@media (max-width: 1000px) {
  .blog-items.rozcestnik {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-items.rozcestnik {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-items.rozcestnik .item-content {
    min-height: 215px;
    padding: 27px 24px 24px;
    border-radius: 20px;
  }

  .blog-items.rozcestnik .item-content::before {
    left: 24px;
  }

  .blog-items.rozcestnik .item-content::after {
    right: 22px;
    bottom: 20px;
  }

  .blog-items.rozcestnik .tck-article-title {
    min-height: auto;
  }

  .blog-items.rozcestnik .tck-article-title a {
    font-size: 21px;
  }

  .blog-items.rozcestnik .tck-article-body p {
    min-height: auto;
  }
}

/* ==========================================
   TYPOGRAFIE ČLÁNKŮ INPLEM
========================================== */

/* H1 */
.item-pagerozcestnik-clanek h1 {

    margin: 0 0 28px;
    color: #0f2348;
    font-size: clamp(42px,5vw,58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
}

/* modrá linka pod H1 */

.item-pagerozcestnik-clanek h1::after{
    content:"";
    display:block;
    width:90px;
    height:5px;
    margin-top:22px;
    border-radius:20px;
    background:#4eaff7;
}

/* H2 */

.item-pagerozcestnik-clanek h2{
    margin:60px 0 18px;
    color:#0f2348;
    font-size:34px;
    font-weight:700;
}

/* H3 */

.item-pagerozcestnik-clanek h3{
    margin:42px 0 14px;
    color:#0b63b6;
    font-size:24px;
    font-weight:700;
}

/* běžný text */

.item-pagerozcestnik-clanek p{
    color:#42556f;
    font-size:18px;
    line-height:1.8;
    margin:0 0 22px;

}
.item-pagerozcestnik-clanek ul{
    margin:25px 0 35px;
    padding:0;
    list-style:none;

}

.item-pagerozcestnik-clanek li{
    position:relative;
    padding:10px 0 10px 32px;
    color:#42556f;
    font-size:17px;
    line-height:1.65;
    border-bottom:1px solid #eef2f6;
}
.item-pagerozcestnik-clanek li:last-child{
    border-bottom:0;
}
.item-pagerozcestnik-clanek li::before{
    content:"";
    position:absolute;
    left:0;
    top:20px;
    width:9px;
    height:9px;
    border-radius:50%;
    background:#4eaff7;
    box-shadow:0 0 0 5px rgba(78,175,247,.12);
}
.item-pagerozcestnik-clanek .perex {
    max-width:820px;
    margin-bottom:45px;
    color:#5b708b;
    font-size:23px;
    font-weight:300;
    line-height:1.6;
}
/* =========================================
   FARMA TEHOV – HERO
========================================= */

.farma-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 20px 64px;
  background:
    linear-gradient(
      115deg,
      #f6f9ef 0%,
      #eef5e4 48%,
      #f9fbf6 100%
    );
}

.farma-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  opacity: .22;
  background:
    repeating-radial-gradient(
      ellipse at 50% 130%,
      transparent 0,
      transparent 34px,
      rgba(65, 107, 54, .16) 35px,
      transparent 37px
    );
  pointer-events: none;
}

.farma-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
  gap: 62px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}


/* =========================================
   TEXTOVÁ ČÁST
========================================= */

.farma-hero__content {
  max-width: 690px;
}

.farma-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #557d3d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.farma-hero__label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #79a955;
}

.farma-hero h1 {
  margin: 0;
  color: #244425;
  font-size: clamp(46px, 5.5vw, 74px);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.045em;
}

.farma-hero__headline {
  margin: 17px 0 13px;
  color: #477044;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.2;
}

.farma-hero__text {
  max-width: 650px;
  margin: 0;
  color: #596b58;
  font-size: 17px;
  line-height: 1.72;
}


/* =========================================
   SLUŽBY
========================================= */

.farma-hero__services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 31px;
}

.farma-service {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 64px;
  padding: 11px 13px;
  overflow: hidden;
  border: 1px solid rgba(75, 111, 61, .15);
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 10px 28px rgba(45, 77, 39, .05);
  color: #385b34;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition:
    transform .24s ease,
    border-color .24s ease,
    background-color .24s ease,
    box-shadow .24s ease;
}

.farma-service::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -35px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(121, 169, 85, .10);
  transition: transform .25s ease;
}
.farma-service__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.farma-service__text strong {
  color: #385b34;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}
.farma-service__text small {
  color: #477044;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  }
.farma-service:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 111, 61, .30);
  background: #fff;
  box-shadow: 0 15px 32px rgba(45, 77, 39, .10);
  color: #244f2b;
}

.farma-service:hover::after {
  transform: scale(1.25);
}

.farma-service__icon {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  background: #e8f1dc;
  color: #517d3d;
}

.farma-service__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.farma-service > span:last-child {
  position: relative;
  z-index: 1;
}


/* =========================================
   OBRAZOVÁ ČÁST
========================================= */

.farma-hero__visual {
  position: relative;
  min-height: 530px;
}

.farma-hero__image-wrap {
  position: absolute;
  inset: 0 0 28px 22px;
  overflow: hidden;
  border-radius: 48px 48px 48px 130px;
  background: #d7e6c8;
  box-shadow: 0 28px 70px rgba(44, 72, 38, .20);
  transform: rotate(1.5deg);
}

.farma-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(25, 51, 25, .18) 100%
    );
}

.farma-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02) rotate(-1.5deg);
}

.farma-hero__badge {
  position: absolute;
  top: 29px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 116px;
  height: 116px;
  padding: 18px;
  border: 7px solid #f3f7ec;
  border-radius: 50%;
  background: #426c3d;
  box-shadow: 0 16px 34px rgba(38, 72, 36, .24);
  color: #fff;
  transform: rotate(-7deg);
}

.farma-hero__badge span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

.farma-hero__badge strong {
  margin-top: 2px;
  font-size: 25px;
  line-height: 1;
}

.farma-hero__note {
  position: absolute;
  right: 22px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 330px;
  padding: 14px 20px;
  border: 1px solid rgba(61, 100, 54, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 14px 34px rgba(40, 73, 37, .12);
  color: #42603e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.farma-hero__note-dot {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #82b65a;
  box-shadow: 0 0 0 5px rgba(130, 182, 90, .17);
}


/* =========================================
   DEKORACE
========================================= */

.farma-hero__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.farma-hero__decor--one {
  top: -160px;
  right: 20%;
  width: 420px;
  height: 420px;
  background: rgba(164, 197, 116, .14);
  filter: blur(3px);
}

.farma-hero__decor--two {
  left: -160px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(120, 163, 79, .07);
}


/* =========================================
   RESPONZIVITA
========================================= */

@media (max-width: 1080px) {
  .farma-hero__inner {
    grid-template-columns: 1fr 410px;
    gap: 38px;
  }

  .farma-hero__services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .farma-hero__visual {
    min-height: 510px;
  }
}

@media (max-width: 860px) {
  .farma-hero {
    padding-top: 44px;
  }

  .farma-hero__inner {
    grid-template-columns: 1fr;
  }

  .farma-hero__content {
    max-width: none;
  }

  .farma-hero__visual {
    min-height: 500px;
    max-width: 640px;
    width: 100%;
    margin: 8px auto 0;
  }
}

@media (max-width: 600px) {
  .farma-hero {
    padding: 36px 16px 48px;
  }

  .farma-hero h1 {
    font-size: 48px;
  }

  .farma-hero__headline {
    font-size: 25px;
  }

  .farma-hero__text {
    font-size: 16px;
  }

  .farma-hero__services {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .farma-service {
    min-height: 58px;
  }

  .farma-hero__visual {
    min-height: 390px;
  }

  .farma-hero__image-wrap {
    inset: 0 0 25px 0;
    border-radius: 34px 34px 34px 90px;
  }

  .farma-hero__badge {
    top: 18px;
    left: -4px;
    width: 96px;
    height: 96px;
    border-width: 5px;
  }

  .farma-hero__badge strong {
    font-size: 21px;
  }

  .farma-hero__note {
    right: 10px;
    left: 32px;
    bottom: 0;
    justify-content: center;
    max-width: none;
    padding: 12px 15px;
    text-align: center;
  }
}

/* ==========================================================
   ROMANOVSKÉ OVCE – HERO
========================================================== */

.romanov-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 20px 64px;
  background:
    linear-gradient(
      115deg,
      #fbf8f3 0%,
      #f3ede4 48%,
      #fcfaf7 100%
    );
}

.romanov-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  opacity: 0.2;
  background:
    repeating-radial-gradient(
      ellipse at 50% 135%,
      transparent 0,
      transparent 36px,
      rgba(128, 96, 65, 0.14) 37px,
      transparent 39px
    );
  pointer-events: none;
}

.romanov-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 62px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}


/* ==========================================================
   TEXTOVÁ ČÁST
========================================================== */

.romanov-hero__content {
  max-width: 690px;
}

.romanov-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #8a6846;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.romanov-hero__label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #b78b5e;
}

.romanov-hero h1 {
  margin: 0;
  color: #4e3929;
  font-size: clamp(46px, 5.5vw, 74px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.romanov-hero__headline {
  margin: 17px 0 13px;
  color: #6f543d;
  font-size: clamp(23px, 2.4vw, 33px);
  font-weight: 700;
  line-height: 1.25;
}

.romanov-hero__text {
  max-width: 650px;
  margin: 0;
  color: #71665c;
  font-size: 17px;
  line-height: 1.72;
}


/* ==========================================================
   ODKAZY / SLUŽBY
========================================================== */

.romanov-hero__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 31px;
}

.romanov-service {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 15px 17px 15px 76px;
  overflow: hidden;
  border: 1px solid rgba(130, 99, 69, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(79, 56, 38, 0.05);
  color: #5c4432;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}
.romanov-service::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(183, 139, 94, 0.1);
  transition: transform 0.25s ease;
}

.romanov-service:hover {
  transform: translateY(-3px);
  border-color: rgba(130, 99, 69, 0.32);
  background: #fff;
  box-shadow: 0 16px 34px rgba(79, 56, 38, 0.11);
  color: #4d3727;
}

.romanov-service:hover::after {
  transform: scale(1.3);
}

.romanov-service__icon {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f0e5d7;
  color: #8f6742;
}

.romanov-service__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.romanov-service__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.romanov-service__text strong {
  color: #543d2c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.romanov-service__text small {
  color: #8a7b6e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}


/* ==========================================================
   OBRAZOVÁ ČÁST
========================================================== */

.romanov-hero__visual {
  position: relative;
  min-height: 530px;
}

.romanov-hero__image-wrap {
  position: absolute;
  inset: 0 0 28px 22px;
  overflow: hidden;
  border-radius: 48px 48px 48px 130px;
  background: #e6d9c8;
  box-shadow: 0 28px 70px rgba(74, 52, 35, 0.2);
  transform: rotate(1.5deg);
}

.romanov-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(65, 45, 30, 0.18) 100%
    );
}

.romanov-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02) rotate(-1.5deg);
}

.romanov-hero__badge {
  position: absolute;
  top: 29px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 116px;
  height: 116px;
  padding: 18px;
  border: 7px solid #f8f3ec;
  border-radius: 50%;
  background: #76553b;
  box-shadow: 0 16px 34px rgba(76, 51, 33, 0.25);
  color: #fff;
  transform: rotate(-7deg);
}

.romanov-hero__badge {
  position: absolute;
  top: 29px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 116px;
  height: 116px;
  padding: 18px;
  border: 7px solid #f8f3ec;
  border-radius: 50%;
  background: #76553b;
  box-shadow: 0 16px 34px rgba(76, 51, 33, 0.25);
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.romanov-hero__badge strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.romanov-hero__note {
  position: absolute;
  right: 22px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 350px;
  padding: 14px 20px;
  border: 1px solid rgba(123, 91, 61, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(70, 48, 31, 0.12);
  color: #66503d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.romanov-hero__note::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b78b5e;
  box-shadow: 0 0 0 5px rgba(183, 139, 94, 0.18);
}


/* ==========================================================
   DEKORACE
========================================================== */

.romanov-hero__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.romanov-hero__decor--one {
  top: -160px;
  right: 20%;
  width: 420px;
  height: 420px;
  background: rgba(205, 177, 143, 0.16);
  filter: blur(3px);
}

.romanov-hero__decor--two {
  left: -160px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(166, 126, 85, 0.07);
}


/* ==========================================================
   RESPONZIVITA
========================================================== */

@media (max-width: 1080px) {
  .romanov-hero__inner {
    grid-template-columns: 1fr 410px;
    gap: 38px;
  }

  .romanov-hero__visual {
    min-height: 510px;
  }
}

@media (max-width: 860px) {
  .romanov-hero {
    padding-top: 44px;
  }

  .romanov-hero__inner {
    grid-template-columns: 1fr;
  }

  .romanov-hero__content {
    max-width: none;
  }

  .romanov-hero__visual {
    min-height: 500px;
    max-width: 640px;
    width: 100%;
    margin: 8px auto 0;
  }
}

@media (max-width: 600px) {
  .romanov-hero {
    padding: 36px 16px 48px;
  }

  .romanov-hero h1 {
    font-size: 47px;
  }

  .romanov-hero__headline {
    font-size: 24px;
  }

  .romanov-hero__text {
    font-size: 16px;
  }

  .romanov-hero__services {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .romanov-service {
    min-height: 74px;
  }

  .romanov-hero__visual {
    min-height: 390px;
  }

  .romanov-hero__image-wrap {
    inset: 0 0 25px 0;
    border-radius: 34px 34px 34px 90px;
  }

  .romanov-hero__badge {
    top: 18px;
    left: -4px;
    width: 96px;
    height: 96px;
    border-width: 5px;
  }

  .romanov-hero__badge strong {
    font-size: 21px;
  }

  .romanov-hero__note {
    right: 10px;
    left: 25px;
    bottom: 0;
    justify-content: center;
    max-width: none;
    padding: 12px 15px;
    text-align: center;
  }
}


/* ==========================================================
   INPLEM – SPOLEČNÝ STYL ODBORNÝCH ČLÁNKŮ
========================================================== */

.com-content-article.item-page.inplem-article {
  --article-accent: #4eaff7;
  --article-accent-dark: #0b63b6;
  --article-accent-soft: rgba(78, 175, 247, 0.12);

  --article-heading: #0f2348;
  --article-text: #43556d;
  --article-muted: #6b7c90;
  --article-border: #e3eaf2;
  --article-soft-bg: #f7faff;

  width: min(100% - 40px, 900px);
  margin: 50px auto 90px;
  color: var(--article-text);
}


/* ==========================================================
   HLAVNÍ NADPIS H1
========================================================== */

.com-content-article.item-page.inplem-article h1 {
  margin: 0 0 36px;
  color: var(--article-heading);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.com-content-article.item-page.inplem-article h1::after {
  content: "";
  display: block;
  width: 88px;
  height: 5px;
  margin-top: 21px;
  border-radius: 999px;
  background: var(--article-accent);
}


/* Pokud Joomla generuje H1 v .page-header */

.com-content-article.item-page.inplem-article .page-header {
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.com-content-article.item-page.inplem-article .page-header h1 {
  margin-bottom: 0;
}


/* ==========================================================
   NADPISY H2 A H3
========================================================== */

.com-content-article.item-page.inplem-article h2 {

  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.com-content-article.item-page.inplem-article h2::before {
  content: "";
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: var(--article-accent);
}

.com-content-article.item-page.inplem-article h3 {
  margin: 42px 0 16px;
  color: var(--article-accent-dark);
  font-size: clamp(22px, 2.6vw, 27px);
  font-weight: 750;
  line-height: 1.3;
}

.com-content-article.item-page.inplem-article h4 {
  margin: 32px 0 13px;
  color: var(--article-heading);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.4;
}


/* ==========================================================
   ODSTAVCE A PEREX
========================================================== */

.com-content-article.item-page.inplem-article p {
  margin: 0 0 23px;
  color: var(--article-text);
  font-size: 17px;
  line-height: 1.82;
}

.com-content-article.item-page.inplem-article .perex {
  margin: 0 0 42px;
  color: var(--article-muted);
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 400;
  line-height: 1.58;
}

.com-content-article.item-page.inplem-article strong {
  color: var(--article-heading);
  font-weight: 750;
}


/* ==========================================================
   ODKAZY
========================================================== */

.com-content-article.item-page.inplem-article a {
  color: var(--article-accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.com-content-article.item-page.inplem-article a:hover {
  color: var(--article-heading);
}


/* ==========================================================
   NEČÍSLOVANÉ SEZNAMY
========================================================== */

.com-content-article.item-page.inplem-article ul {
  margin: 28px 0 38px;
  padding: 0;
  list-style: none;
}

.com-content-article.item-page.inplem-article ul li {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--article-border);
  color: var(--article-text);
  font-size: 16px;
  line-height: 1.65;
}

.com-content-article.item-page.inplem-article ul li:last-child {
  border-bottom: 0;
}

.com-content-article.item-page.inplem-article ul li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--article-accent);
  box-shadow: 0 0 0 5px var(--article-accent-soft);
}


/* Vnořený seznam */

.com-content-article.item-page.inplem-article ul ul {
  margin: 10px 0 0;
  padding-left: 10px;
}

.com-content-article.item-page.inplem-article ul ul li {
  padding-left: 28px;
  border-bottom: 0;
}

.com-content-article.item-page.inplem-article ul ul li::before {
  top: 21px;
  width: 6px;
  height: 6px;
  box-shadow: none;
}


/* ==========================================================
   ČÍSLOVANÉ SEZNAMY
========================================================== */

.com-content-article.item-page.inplem-article ol {
  counter-reset: article-list;
  margin: 30px 0 40px;
  padding: 0;
  list-style: none;
}

.com-content-article.item-page.inplem-article ol li {
  counter-increment: article-list;
  position: relative;
  min-height: 44px;
  margin-bottom: 14px;
  padding: 8px 0 8px 56px;
  color: var(--article-text);
  font-size: 16px;
  line-height: 1.65;
}

.com-content-article.item-page.inplem-article ol li::before {
  content: counter(article-list);
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--article-accent-soft);
  color: var(--article-accent-dark);
  font-size: 14px;
  font-weight: 800;
}


/* ==========================================================
   INFORMAČNÍ BOX
========================================================== */

.com-content-article.item-page.inplem-article .article-box {
  margin: 34px 0;
  padding: 26px 28px;
  border: 1px solid var(--article-border);
  border-left: 5px solid var(--article-accent);
  border-radius: 18px;
  background: var(--article-soft-bg);
}

.com-content-article.item-page.inplem-article .article-box > :last-child {
  margin-bottom: 0;
}

.com-content-article.item-page.inplem-article .article-box h2,
.com-content-article.item-page.inplem-article .article-box h3 {
  margin-top: 0;
}


/* ==========================================================
   CITACE
========================================================== */

.com-content-article.item-page.inplem-article blockquote {
  position: relative;
  margin: 38px 0;
  padding: 30px 34px 30px 70px;
  border: 0;
  border-radius: 20px;
  background: var(--article-soft-bg);
  color: var(--article-heading);
  font-size: 20px;
  font-weight: 550;
  line-height: 1.6;
}

.com-content-article.item-page.inplem-article blockquote::before {
  content: "“";
  position: absolute;
  top: 13px;
  left: 24px;
  color: var(--article-accent);
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
}

.com-content-article.item-page.inplem-article blockquote p:last-child {
  margin-bottom: 0;
}


/* ==========================================================
   OBRÁZKY
========================================================== */

.com-content-article.item-page.inplem-article img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.com-content-article.item-page.inplem-article figure {
  margin: 38px 0;
}

.com-content-article.item-page.inplem-article figcaption {
  margin-top: 10px;
  color: var(--article-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}


/* ==========================================================
   TABULKY
========================================================== */

.com-content-article.item-page.inplem-article .table-scroll {
  max-width: 100%;
  margin: 34px 0;
  overflow-x: auto;
  border: 1px solid var(--article-border);
  border-radius: 18px;
  background: #fff;
}

.com-content-article.item-page.inplem-article table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border-collapse: collapse;
  background: #fff;
}

.com-content-article.item-page.inplem-article th,
.com-content-article.item-page.inplem-article td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--article-border);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}

.com-content-article.item-page.inplem-article th {
  background: var(--article-soft-bg);
  color: var(--article-heading);
  font-weight: 750;
}

.com-content-article.item-page.inplem-article tr:last-child td {
  border-bottom: 0;
}

.com-content-article.item-page.inplem-article tbody tr:hover {
  background: var(--article-soft-bg);
}


/* ==========================================================
   ODDĚLOVACÍ ČÁRA
========================================================== */

.com-content-article.item-page.inplem-article hr {
  height: 1px;
  margin: 50px 0;
  border: 0;
  background: var(--article-border);
}


/* ==========================================================
   CTA NA KONCI ČLÁNKU
========================================================== */

.com-content-article.item-page.inplem-article .article-contact {
  margin-top: 58px;
  padding: 32px 34px;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 100% 0,
      var(--article-accent-soft),
      transparent 45%
    ),
    var(--article-soft-bg);
  border: 1px solid var(--article-border);
}

.com-content-article.item-page.inplem-article .article-contact h2 {
  margin: 0 0 12px;
  padding: 0;
  font-size: 28px;
}

.com-content-article.item-page.inplem-article .article-contact h2::before {
  display: none;
}

.com-content-article.item-page.inplem-article .article-contact p {
  margin-bottom: 20px;
}

.com-content-article.item-page.inplem-article .article-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.com-content-article.item-page.inplem-article .article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--article-accent-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.com-content-article.item-page.inplem-article .article-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--article-accent-soft);
}


/* ==========================================================
   BAREVNÁ VARIANTA – PLEMENÁŘSKÉ SLUŽBY
========================================================== */

.com-content-article.item-page.inplem-article.sluzby {
  --article-accent: #4eaff7;
  --article-accent-dark: #0b63b6;
  --article-accent-soft: rgba(78, 175, 247, 0.14);

  --article-heading: #0f2348;
  --article-text: #43556d;
  --article-muted: #6b7c90;
  --article-border: #dfeaf5;
  --article-soft-bg: #f4f9fe;
}


/* ==========================================================
   BAREVNÁ VARIANTA – FARMA TEHOV
========================================================== */

.com-content-article.item-page.inplem-article.farma {
  --article-accent: #79a955;
  --article-accent-dark: #4d783b;
  --article-accent-soft: rgba(121, 169, 85, 0.15);

  --article-heading: #29472d;
  --article-text: #566753;
  --article-muted: #748270;
  --article-border: #e0eade;
  --article-soft-bg: #f5f8ef;
}


/* ==========================================================
   BAREVNÁ VARIANTA – ROMANOVSKÉ OVCE
========================================================== */

.com-content-article.item-page.inplem-article.romanov {
  --article-accent: #b38a5d;
  --article-accent-dark: #85613d;
  --article-accent-soft: rgba(179, 138, 93, 0.16);

  --article-heading: #4b3828;
  --article-text: #66584d;
  --article-muted: #83776d;
  --article-border: #ebe2d8;
  --article-soft-bg: #faf7f2;
}


/* ==========================================================
   RESPONZIVITA
========================================================== */

@media (max-width: 700px) {
  .com-content-article.item-page.inplem-article {
    width: min(100% - 30px, 900px);
    margin-top: 34px;
    margin-bottom: 65px;
  }

  .com-content-article.item-page.inplem-article h1 {
    margin-bottom: 30px;
    font-size: 40px;
  }

  .com-content-article.item-page.inplem-article h1::after {
    width: 68px;
    height: 4px;
    margin-top: 17px;
  }

  .com-content-article.item-page.inplem-article h2 {
    margin-top: 44px;
    padding-left: 16px;
    font-size: 28px;
  }

  .com-content-article.item-page.inplem-article h2::before {
    width: 4px;
  }

  .com-content-article.item-page.inplem-article h3 {
    margin-top: 34px;
    font-size: 23px;
  }

  .com-content-article.item-page.inplem-article p {
    font-size: 16px;
    line-height: 1.75;
  }

  .com-content-article.item-page.inplem-article .perex {
    font-size: 20px;
  }

  .com-content-article.item-page.inplem-article ul li {
    padding-left: 31px;
  }

  .com-content-article.item-page.inplem-article .article-box,
  .com-content-article.item-page.inplem-article .article-contact {
    padding: 23px 21px;
    border-radius: 17px;
  }

  .com-content-article.item-page.inplem-article blockquote {
    padding: 26px 22px 26px 56px;
    font-size: 18px;
  }

  .com-content-article.item-page.inplem-article blockquote::before {
    left: 17px;
    font-size: 50px;
  }
}
/* ==========================================================
   KONTAKTNÍ STRÁNKA INPLEM
========================================================== */

.kontakt-inplem {
  background: #f6f9fc;
  color: #10244a;
}

.kontakt-inplem *,
.kontakt-inplem *::before,
.kontakt-inplem *::after {
  box-sizing: border-box;
}

.kontakt-inplem a {
  text-decoration: none;
}

.kontakt-inplem__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #0b63b6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* ==========================================================
   HLAVIČKA KONTAKTŮ
========================================================== */

.kontakt-inplem__hero {
  padding: 68px 20px 56px;
  background:
    radial-gradient(
      circle at 15% 5%,
      rgba(78, 175, 247, 0.18),
      transparent 31%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(121, 169, 85, 0.11),
      transparent 25%
    ),
    linear-gradient(135deg, #f9fcff, #edf6fd);
}

.kontakt-inplem__hero-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.kontakt-inplem__hero h1 {
  margin: 0 0 17px;
  color: #0d264d;
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.045em;
}

.kontakt-inplem__intro {
  max-width: 720px;
  margin: 0;
  color: #536a82;
  font-size: 18px;
  line-height: 1.7;
}


/* ==========================================================
   HLAVNÍ TŘI KONTAKTY
========================================================== */

.kontakt-inplem__quick-grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: 17px;
  margin-top: 38px;
}

.kontakt-quick {
  position: relative;
  display: flex;
  gap: 18px;
  min-width: 0;
  min-height: 245px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid #dce7f2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(20, 49, 82, 0.08);
}

.kontakt-quick::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -65px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  opacity: 0.11;
}

.kontakt-quick--office::after {
  background: #4eaff7;
}

.kontakt-quick--dairy::after {
  background: #79a955;
}

.kontakt-quick--stable::after {
  background: #b38a5d;
}

.kontakt-quick__number {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #eaf5fe;
  color: #0b63b6;
  font-size: 12px;
  font-weight: 850;
}

.kontakt-quick--dairy .kontakt-quick__number {
  background: #edf4e7;
  color: #5b8542;
}

.kontakt-quick--stable .kontakt-quick__number {
  background: #f4ebe1;
  color: #916a43;
}

.kontakt-quick__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.kontakt-quick__label {
  margin-bottom: 13px;
  color: #6a7e94;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kontakt-quick h2 {
  margin: 0 0 20px;
  color: #10294f;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.32;
}

.kontakt-quick__phone,
.kontakt-quick__email {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.kontakt-quick__phone {
  margin-top: auto;
  color: #10294f;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.35;
}

.kontakt-quick__email {
  margin-top: 7px;
  color: #0b63b6;
  font-size: 14px;
  font-weight: 700;
}

.kontakt-quick__note {
  margin: 16px 0 0;
  color: #805d32;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}


/* ==========================================================
   SÍDLO SPOLEČNOSTI
========================================================== */

.kontakt-sidlo {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 26px 30px;
  border: 1px solid #e0e8f0;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(18, 44, 73, 0.06);
}

.kontakt-sidlo__address h2 {
  margin: 0 0 9px;
  color: #10294f;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
}

.kontakt-sidlo address {
  margin: 0;
  color: #5a6d82;
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}

.kontakt-sidlo__description {
  padding-left: 31px;
  border-left: 1px solid #e3eaf1;
}

.kontakt-sidlo__description p {
  max-width: 650px;
  margin: 0;
  color: #5a6d82;
  font-size: 16px;
  line-height: 1.7;
}

.kontakt-sidlo__action {
  display: flex;
  justify-content: flex-end;
}

.kontakt-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #0b63b6;
  box-shadow: 0 10px 24px rgba(11, 99, 182, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.kontakt-map-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 99, 182, 0.25);
}


/* ==========================================================
   NÁŠ TÝM
========================================================== */

.kontakt-tym {
  max-width: 1180px;
  margin: 78px auto 90px;
  padding: 0 20px;
}

.kontakt-tym__header {
  margin-bottom: 30px;
}

.kontakt-tym__header h2 {
  margin: 0 0 12px;
  color: #10294f;
  font-size: clamp(36px, 5vw, 49px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.kontakt-tym__header p {
  margin: 0;
  color: #687b90;
  font-size: 17px;
  line-height: 1.65;
}


/* ==========================================================
   SEKCE PRO KONTAK LOADPOSITION MODULY
========================================================== */

.kontakt-oddeleni {
  --department-color: #0b63b6;
  --department-soft: #edf6fe;
  --department-border: #dfeaf5;

  margin-bottom: 26px;
  padding: 31px;
  border: 1px solid var(--department-border);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 44, 73, 0.06);
}

.kontakt-oddeleni__header {
  display: flex;
  gap: 19px;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 23px;
  border-bottom: 1px solid #e6ecf2;
}

.kontakt-oddeleni__number {
  display: flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--department-soft);
  color: var(--department-color);
  font-size: 13px;
  font-weight: 850;
}

.kontakt-oddeleni__header h2 {
  margin: 0 0 5px;
  color: #10294f;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.kontakt-oddeleni__header p {
  margin: 0;
  color: #708195;
  font-size: 15px;
  line-height: 1.55;
}

.kontakt-oddeleni__module {
  min-width: 0;
}


/* PLEMENÁŘI */

.kontakt-oddeleni--sluzby {
  --department-color: #0b63b6;
  --department-soft: #edf6fe;
  --department-border: #dfeaf5;
}


/* FARMA A MLÉKÁRNA */

.kontakt-oddeleni--farma,
.kontakt-oddeleni--mlekarna {
  --department-color: #5c873f;
  --department-soft: #edf4e6;
  --department-border: #e0ead9;
}


/* STÁJ */

.kontakt-oddeleni--staj {
  --department-color: #916a43;
  --department-soft: #f4ebe1;
  --department-border: #ebe0d5;
}


/* ==========================================================
   RESPONZIVITA
========================================================== */

@media (max-width: 950px) {
  .kontakt-inplem__quick-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-quick {
    min-height: auto;
  }

  .kontakt-sidlo {
    grid-template-columns: 220px minmax(0, 1fr);
    margin-inline: 20px;
  }

  .kontakt-sidlo__action {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .kontakt-inplem__hero {
    padding: 51px 16px 43px;
  }

  .kontakt-inplem__hero h1 {
    font-size: 46px;
  }

  .kontakt-inplem__intro {
    font-size: 16px;
  }

  .kontakt-quick {
    padding: 23px 20px;
    border-radius: 20px;
  }

  .kontakt-quick__number {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .kontakt-quick h2 {
    font-size: 19px;
  }

  .kontakt-sidlo {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 25px 22px;
    border-radius: 20px;
  }

  .kontakt-sidlo__description {
    padding: 22px 0 0;
    border-top: 1px solid #e3eaf1;
    border-left: 0;
  }

  .kontakt-sidlo__action {
    grid-column: auto;
  }

  .kontakt-tym {
    margin-top: 61px;
  }

  .kontakt-oddeleni {
    padding: 24px 21px;
    border-radius: 21px;
  }

  .kontakt-oddeleni__header {
    gap: 14px;
  }

  .kontakt-oddeleni__header h2 {
    font-size: 24px;
  }
}

/* ==========================================================
UPRAVA MODULU AKCE A VOLNÁ MÍSTA
==========================================================*/

.com-content-article.item-page.inplem-article h2.pozice-volna-mista {
  margin: 0 !important;
  padding-left: 0px !important;
}
h2.pozice-volna-mista::before {
  display: none;
}
.com-content-article.item-page.inplem-article .kc-info h3 {
    margin: 0 !important;
}

.com-content-article.item-page.inplem-article .kc-text p {
  margin: 0px;
  line-height: 120%;
  margin-bottom: 10px !important;
}
.com-content-article.item-page.inplem-article p.kc-event-date, .com-content-article.item-page.inplem-article p.kc-event-time, .com-content-article.item-page.inplem-article p.kc-event-price, .com-content-article.item-page.inplem-article p.kc-nastup , .com-content-article.item-page.inplem-article p.kc-contact, .com-content-article.item-page.inplem-article p.kc-tel , .com-content-article.item-page.inplem-article p.kc-email {
        margin: 0 !important;
        padding: 0px !important;
    line-height: 110% !important;
}
.akce-custom .kc-event-link a {
  color: #fff !important;
}
  /* ==========================================================
   CTA POD ČLÁNKEM
========================================================== */

.article-cta{
    margin:80px 0 45px;
    padding:55px;
    border-radius:28px;
    text-align:center;
    background:
        radial-gradient(circle at top right,
        rgba(78,175,247,.12),
        transparent 45%),
        #f7fbfe;

    border:1px solid #dce8f3;
}

.article-cta__label{
    display:inline-block;
    margin-bottom:12px;
    color:#0b63b6;
    font-size:12px;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.article-cta h2{
    margin:0 0 18px !important;
    padding:0;
    color:#10294f;
    font-size:42px;
    font-weight:800;
    line-height:1.1;
}

.article-cta h2::before{
    display:none;
}

.article-cta p{
    max-width:700px;
margin: 0 auto 30px !important;
    color:#607387;
    font-size:18px;
    line-height:1.8;
}

.article-cta__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 34px;
    border-radius:999px;

    background:#0b63b6;
    color:#fff !important;

    font-size:15px;
    font-weight:700;
    text-decoration:none;

    transition:.25s;
}

.article-cta__button:hover{

    transform:translateY(-3px);

    background:#094f92;

    box-shadow:0 18px 35px rgba(11,99,182,.22);

}


/* ==========================================================
   SOUVISEJÍCÍ ČLÁNKY
========================================================== */

.article-related{

    margin:0 0 70px;

}

.article-related__header{

    margin-bottom:22px;

}

.article-related__label{

    display:inline-block;

    margin-bottom:10px;

    color:#7b8ea3;

    font-size:12px;

    font-weight:800;

    letter-spacing:.16em;

    text-transform:uppercase;

}

.article-related h2{

    margin:0 !important;

    padding:0;

    font-size:34px;

    color:#10294f;
  font-weight: 800;

}

.article-related h2::before{

    display:none;

}

.article-related__links{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.article-related__links a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-height:44px;

    padding:0 20px;

    border-radius:999px;

    background:#eef6fd;

    border:1px solid #d7e6f3;

    color:#0b63b6;

    font-size:14px;

    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.article-related__links a:hover{

    background:#0b63b6;

    color:#fff;

    border-color:#0b63b6;

    transform:translateY(-2px);

}


/* ==========================================================
   MOBIL
========================================================== */

@media(max-width:700px){

.article-cta{

    padding:35px 22px;

}

.article-cta h2{

    font-size:31px;

}

.article-cta p{

    font-size:16px;

}

.article-related h2{

    font-size:28px;

}

.article-related__links{

    gap:10px;

}

.article-related__links a{

    width:100%;

    justify-content:flex-start;

}

}
/* ==========================================================
   CTA - ROMANOVSKÉ OVCE
========================================================== */

.article-cta--romanov{

    background:
        radial-gradient(
            circle at top right,
            rgba(179,138,93,.12),
            transparent 45%
        ),
        #faf7f2;

    border-color:#eadfce;

}

.article-cta--romanov .article-cta__label{

    color:#916a43;

}

.article-cta--romanov h2{

    color:#4b3828;

}

.article-cta--romanov p{

    color:#6f6258;

}

.article-cta--romanov .article-cta__button{

    background:#916a43;

}

.article-cta--romanov .article-cta__button:hover{

    background:#775433;

    box-shadow:0 18px 35px rgba(145,106,67,.25);

}


/* ==========================================================
   SOUVISEJÍCÍ ČLÁNKY - ROMANOVKY
========================================================== */

.article-related--romanov .article-related__label{

    color:#8d755b;

}

.article-related--romanov h2{

    color:#4b3828;

}

.article-related--romanov .article-related__links a{

    background:#f5ede4;

    border-color:#e7d8c5;

    color:#916a43;

}

.article-related--romanov .article-related__links a:hover{

    background:#916a43;

    border-color:#916a43;

    color:#fff;

}
  
/* ==========================================================
   CTA - FARMA TEHOV
========================================================== */

.article-cta--farma{

    background:
        radial-gradient(
            circle at top right,
            rgba(121,169,85,.12),
            transparent 45%
        ),
        #f5f8ef;

    border-color:#dfe9d7;

}

.article-cta--farma .article-cta__label{

    color:#5c873f;

}

.article-cta--farma h2{

    color:#29472d;

}

.article-cta--farma p{

    color:#5f705c;

}

.article-cta--farma .article-cta__button{

    background:#5c873f;

}

.article-cta--farma .article-cta__button:hover{

    background:#45682f;

    box-shadow:0 18px 35px rgba(92,135,63,.25);

}


/* ==========================================================
   SOUVISEJÍCÍ ČLÁNKY - FARMA
========================================================== */

.article-related--farma .article-related__label{

    color:#6d8760;

}

.article-related--farma h2{

    color:#29472d;

}

.article-related--farma .article-related__links a{

    background:#eef5e8;

    border-color:#d9e6d0;

    color:#5c873f;

}

.article-related--farma .article-related__links a:hover{

    background:#5c873f;

    border-color:#5c873f;

    color:#fff;

}

/*=============================
MODUL PLEMENA CLANKY ODKAZY
=================================*/
.detaily-plemena._plemena.tck-module {
  max-width: 900px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
  }
/* =========================================
   UŽITEČNÉ EXTERNÍ ODKAZY
========================================= */

.article-useful-links {
    margin: 38px 0;
}

.article-useful-links__title {
  margin: 0 0 16px;
  color: #172b4d;
  line-height: 1.3;
  padding: 0;
  font-size: 34px;
  font-weight: 800;
}

.article-useful-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.article-useful-links__item {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    min-height: 48px;
    padding: 10px 18px;

    border: 1px solid #dce3ea;
    border-radius: 10px;

    background: #f8fafc;
    color: #172b4d;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;

    transition:
        border-color .2s ease,
        background-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.article-useful-links__item:hover {
    border-color: #0b63b6;
    background: #eef6fc;
    color: #0b63b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 43, 77, .08);
}

.article-useful-links__text {
    display: block;
}

.article-useful-links__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;
    flex: 0 0 22px;

    color: #0b63b6;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;

    transition: transform .2s ease;
}

.article-useful-links__item:hover .article-useful-links__arrow {
    transform: translate(2px, -2px);
}

@media (max-width: 700px) {
    .article-useful-links__list {
        display: grid;
        grid-template-columns: 1fr;
    }
    .article-useful-links__item {
        width: 100%;
    }
}
/*====================================
  STRÁNKA DOWNLOAD
  ===================================*/

.item-pagedownload-page {
max-width: 900px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
}
.item-pagedownload-page h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin-top: 22px;
  border-radius: 20px;
  background: #4eaff7;
}
.item-pagedownload-page h1 {
  margin: 0 0 28px;
  color: #0f2348;
  font-size: clamp(42px,5vw,58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.dropfiles-content .dropfiles-categories h2 {
  color: #162130;
  text-transform: uppercase;
}
dropfiles-content .breadcrumbs > li {
  font-size: 20px !important;
  font-weight: 800;
}
.dropfiles-content .breadcrumbs a:not(.download-all):not(.openlink-manage-files):not(.download-selected) {
  color: #172234;
}
dropfiles-content .breadcrumbs > li > span {
  text-transform: none;
  color: #0f2348;
}
.dropfiles-content .breadcrumbs > li {
  font-weight: 600;
}
.dropfiles-content .dropfiles-categories h2 {
  color: #172131;
  margin-bottom: 14px;
  font-size: 27px;
  font-weight: 850;
}
.dropfiles-content-table.dropfiles-content .table td.file_title a.title {
  color: #000;
  }
.dropfiles-content .dropfilescategory:not(.backcategory) {
  background: #f3f3f3;
  border: 1px solid #000;
}
.dropfiles-content .dropfilescategory:not(.backcategory) > span {
  font-weight: 600;
  color: #000;
}
.dropfiles-content .dropfilescategory:hover {
  background-color: #172131;
  border: 1px solid #182333;
  }
.dropfiles-content .dropfilescategory:hover > span {
  color: #fff !important;
  }
.catlink.dropfilescategory.backcategory {
  font-size: 16px;
  color: #000;
  border: 1px solid;
  padding: 5px 10px;
  border-radius: 5px;
  background: #0000;
  font-weight: 600;
  }
/* =========================================
   NÁHLED PDF
========================================= */

.inplem-pdf-card {
    width: 100%;
    max-width: 430px;
    margin: 30px 0;
}

.inplem-pdf-card__link {
    display: block;
    overflow: hidden;

    border: 1px solid #dce3ea;
    border-radius: 16px;

    background: #fff;
    color: #172b4d;
    text-decoration: none !important;

    box-shadow: 0 8px 28px rgba(23, 43, 77, .10);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.inplem-pdf-card__link:hover {
    border-color: #0b63b6;
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(23, 43, 77, .16);
}

.inplem-pdf-card__preview {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;

    min-height: 300px;
    padding: 18px;

    overflow: hidden;
    background: #eef2f6;
}

.inplem-pdf-card__canvas {
    display: block;
    width: 100%;
    height: auto;

    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .14);
}

.inplem-pdf-card__loading {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
    color: #68778b;

    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.inplem-pdf-card.is-loaded .inplem-pdf-card__loading {
    display: none;
}

.inplem-pdf-card.is-error .inplem-pdf-card__loading {
    color: #b42318;
}

.inplem-pdf-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 18px 20px;
}

.inplem-pdf-card__info strong {
    display: block;
    margin-bottom: 5px;

    color: #172b4d;
    font-size: 17px;
    line-height: 1.3;
}

.inplem-pdf-card__info span {
    display: block;
    color: #68778b;
    font-size: 13px;
}

.inplem-pdf-card__button {
    flex: 0 0 auto;

    padding: 9px 14px;
    border-radius: 999px;

    background: #0b63b6;
    color: #fff !important;

    font-size: 13px !important;
    font-weight: 700;
    white-space: nowrap;
}

.inplem-pdf-card__link:hover .inplem-pdf-card__button {
    background: #084d8e;
    color: #fff !important;
}
.inplem-pdf-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.inplem-pdf-card__link{
    display:flex;
    flex-direction:column;
    height:100%;
}

.inplem-pdf-card__info{
    margin-top:auto;
}
@media (max-width: 520px) {
    .inplem-pdf-card__info {
        align-items: flex-start;
        flex-direction: column;
    }
}
  
/* =========================================
   PDF GRID
========================================= */

.inplem-pdf-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(260px,1fr));

    gap:28px;

    margin:40px 0;

}

.inplem-pdf-grid .inplem-pdf-card{

    width:100%;
    max-width:none;
    margin:0;

}

/* tablet */

@media (max-width:1100px){

    .inplem-pdf-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* mobil */

@media (max-width:700px){

    .inplem-pdf-grid{

        grid-template-columns:1fr;

    }
  }
/*=================================
  CHYBA 404
  ================================*/
  .inplem-404 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    padding: 100px 24px 180px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #dff4ff 0%,
            #eefaff 48%,
            #ffffff 100%
        );
    text-align: center;
}

.inplem-404__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px;
}

.inplem-404__number {
    margin-bottom: 10px;
    color: #72ad3c;
    font-family: "Outfit", sans-serif;
    font-size: clamp(100px, 16vw, 190px);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -8px;
    text-shadow: 0 10px 30px rgba(70, 125, 42, 0.16);
}

.inplem-404 h1 {
    margin: 30px 0 16px;
    color: #18384d;
    font-family: "Outfit", sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
}

.inplem-404__content > p {
    max-width: 670px;
    margin: 0 auto;
    color: #567080;
    font-size: 18px;
    line-height: 1.7;
}

.inplem-404__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.inplem-404__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 26px;
    border: 2px solid #72ad3c;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.inplem-404__button:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.inplem-404__button--primary {
    background: #72ad3c;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(83, 145, 43, 0.25);
}

.inplem-404__button--primary:hover {
    background: #5d9631;
    color: #ffffff;
}

.inplem-404__button--secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #4f8d2d;
}

.inplem-404__button--secondary:hover {
    background: #ffffff;
    color: #3f7723;
}

.inplem-404__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.inplem-404__links a {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 24px 20px;
    border: 1px solid rgba(72, 126, 155, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    color: #18384d;
    text-align: left;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(39, 86, 111, 0.08);
    backdrop-filter: blur(8px);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.inplem-404__links a:hover {
    transform: translateY(-5px);
    border-color: rgba(114, 173, 60, 0.55);
    box-shadow: 0 18px 40px rgba(39, 86, 111, 0.14);
}

.inplem-404__links strong {
    font-family: "Outfit", sans-serif;
    font-size: 19px;
}

.inplem-404__links span {
    color: #6d818c;
    font-size: 14px;
    line-height: 1.5;
}

.inplem-404__meadow {
    position: absolute;
    z-index: 1;
    right: -5%;
    bottom: -175px;
    left: -5%;
    height: 300px;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(180deg, #8bc553, #5d9b32);
}

.inplem-404__cloud {
    position: absolute;
    width: 180px;
    height: 45px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.75);
    filter: blur(1px);
}

.inplem-404__cloud::before,
.inplem-404__cloud::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    background: inherit;
}

.inplem-404__cloud::before {
    top: -35px;
    left: 32px;
    width: 75px;
    height: 75px;
}

.inplem-404__cloud::after {
    top: -22px;
    right: 28px;
    width: 58px;
    height: 58px;
}

.inplem-404__cloud--one {
    top: 100px;
    left: 8%;
}

.inplem-404__cloud--two {
    top: 180px;
    right: 7%;
    transform: scale(0.7);
    opacity: 0.7;
}

@media (max-width: 800px) {
    .inplem-404 {
        min-height: 650px;
        padding-top: 80px;
    }

    .inplem-404__number {
        letter-spacing: -4px;
    }

    .inplem-404__links {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 45px auto 0;
    }

    .inplem-404__cloud {
        opacity: 0.45;
    }
}

@media (max-width: 500px) {
    .inplem-404 {
        padding-right: 18px;
        padding-left: 18px;
    }

    .inplem-404__buttons {
        flex-direction: column;
    }

    .inplem-404__button {
        width: 100%;
    }
}


