﻿/* === E-cigarety.cz – Horní popis kategorie === */


.ec-intro {
  margin: 0 0 28px;
  font-family: 'Roboto', -apple-system, "Segoe UI", Arial, sans-serif;
  color: #292929;
  box-sizing: border-box;
}
.ec-intro *,
.ec-intro *::before,
.ec-intro *::after { box-sizing: border-box; }


.ec-intro__lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: #434343;
  margin: 0 0 6px;
  max-width: 880px;
}
.ec-intro__lead + .ec-intro__lead {
  margin-top: 8px;
}
.ec-intro__lead strong {
  color: #42404f;
  font-weight: 600;
}
.ec-intro__lead a {
  color: #c00300;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.ec-intro__lead a:hover {
  color: #ba0010;
  border-bottom-color: rgba(192, 3, 0, 0.4);
}


/* === Mezititulek nad dlaždicemi === */
.ec-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 14px;
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #3a3845;
  line-height: 1.3;
  letter-spacing: 0.2px;
}
.ec-section-title::before {
  content: "";
  width: 4px;
  height: 22px;
  background: #5b5878;
  border-radius: 2px;
  flex-shrink: 0;
}
.ec-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(91, 88, 120, 0.18) 0%, rgba(91, 88, 120, 0) 100%);
}


/* Modifikátor – akcentní červenou (pro nejdůležitější sekci, např. typy) */
.ec-section-title--accent::before {
  background: #c00300;
}
.ec-section-title--accent::after {
  background: linear-gradient(90deg, rgba(192, 3, 0, 0.18) 0%, rgba(192, 3, 0, 0) 100%);
}


/* === Responsivita === */
@media (max-width: 768px) {
  .ec-intro {
    margin: 0 0 22px;
  }
  .ec-intro__lead {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .ec-section-title {
    margin: 22px 0 12px;
    font-size: 14.5px;
    gap: 10px;
  }
  .ec-section-title::before {
    width: 3px;
    height: 18px;
  }
}


@media (max-width: 480px) {
  .ec-intro__lead {
    font-size: 14px;
  }
  .ec-section-title {
    font-size: 13.5px;
    margin: 18px 0 10px;
  }
}






















/* === Wrapper sekce – ochranná zóna kolem rozcestníku === */
.ec-links {
  margin: 28px 0;
  padding: 0;
  box-sizing: border-box;
}
.ec-links *,
.ec-links *::before,
.ec-links *::after {
  box-sizing: border-box;
}


/* === Dlaždice s obrázkem (sortimentní skupiny – typy a parametry) === */
.ec-links__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ec-links__tile {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ec-links__tile:hover,
.ec-links__tile:focus,
.ec-links__tile:active {
  border-color: #5b5878;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(58, 56, 69, 0.08);
  text-decoration: none !important;
}
.ec-links__tile-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  aspect-ratio: 4 / 3;
  padding: 12px;
  transition: background 0.2s ease;
}
.ec-links__tile:hover .ec-links__tile-img {
  background: #ecebef;
}
.ec-links__tile-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.ec-links__tile:hover .ec-links__tile-img img {
  transform: scale(1.05);
}
.ec-links__tile-name {
  display: block;
  padding: 10px 12px 12px;
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #292929;
  text-align: center;
  line-height: 1.3;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.ec-links__tile:hover .ec-links__tile-name {
  color: #5b5878;
  text-decoration: none !important;
}


/* === Dlaždice se značkami (logo) === */
.ec-links__brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ec-links__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 14px 16px;
  text-decoration: none !important;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ec-links__brand:hover {
  border-color: #5b5878;
  background: #fafaff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(58, 56, 69, 0.07);
  text-decoration: none !important;
}
.ec-links__brand img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.ec-links__brand:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* === Responsivita === */
@media (max-width: 900px) {
  .ec-links__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
  .ec-links__brands {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .ec-links {
    margin: 20px 0 28px;
    padding: 0 4px;
  }
  .ec-links__tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  .ec-links__tile-img {
    padding: 10px;
  }
  .ec-links__tile-name {
    font-size: 12.5px;
    padding: 9px 10px 11px;
  }
  .ec-links__brands {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  .ec-links__brand {
    padding: 11px 12px;
  }
}
@media (max-width: 380px) {
  .ec-links__brands {
    grid-template-columns: repeat(2, 1fr);
  }
}














/* === E-cigarety.cz – Průvodce výběrem (rozbalovací) === */
.ec-guide {
  position: relative;
  background: #f5f5f5;
  border-left: 4px solid #c00300;
  border-radius: 6px;
  padding: 28px 32px 24px;
  margin: 32px 0;
  font-family: 'Roboto', -apple-system, "Segoe UI", Arial, sans-serif;
  color: #292929;
  box-sizing: border-box;
}
.ec-guide *,
.ec-guide *::before,
.ec-guide *::after { box-sizing: border-box; }


.ec-guide__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  margin: 0;
}


.ec-guide__title {
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #42404f;
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: 0.2px;
}


.ec-guide__lead {
  font-size: 15px;
  line-height: 1.55;
  color: #434343;
  margin: 0 0 18px;
}


.ec-guide__content {
  position: relative;
  max-height: 280px; /* ~ 5 řádků – upravte podle potřeby */
  overflow: hidden;
  transition: max-height 0.45s ease;
}


.ec-guide__content::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(245,245,245,0) 0%, #f5f5f5 85%);
  pointer-events: none;
  transition: opacity 0.25s ease;
}


.ec-guide__toggle:checked ~ .ec-guide__content {
  max-height: 5000px;
}
.ec-guide__toggle:checked ~ .ec-guide__content::after {
  opacity: 0;
}


.ec-guide__content h4 {
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #3a3845;
  margin: 18px 0 6px;
  line-height: 1.3;
}
.ec-guide__content h4:first-child { margin-top: 0; }


.ec-guide__content p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #292929;
  margin: 0 0 10px;
}


.ec-guide__content ul,
.ec-guide__content ol {
  padding-left: 20px;
  margin: 0 0 12px;
}
.ec-guide__content li {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #292929;
  margin-bottom: 6px;
}
.ec-guide__content li::marker { color: #c00300; }
.ec-guide__content strong { color: #42404f; font-weight: 600; }


.ec-guide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 22px;
  background: #c00300;
  color: #fff;
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, transform 0.1s ease;
}
.ec-guide__btn:hover { background: #ba0010; }
.ec-guide__btn:active { transform: translateY(1px); }


.ec-guide__btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}


.ec-guide__btn-text--less { display: none; }


.ec-guide__toggle:checked ~ .ec-guide__btn .ec-guide__btn-text--more { display: none; }
.ec-guide__toggle:checked ~ .ec-guide__btn .ec-guide__btn-text--less { display: inline; }
.ec-guide__toggle:checked ~ .ec-guide__btn::after {
  transform: rotate(-135deg) translateY(2px);
}


.ec-guide__toggle:focus-visible ~ .ec-guide__btn {
  outline: 2px solid #42404f;
  outline-offset: 3px;
}




@media (max-width: 768px) {
  .ec-guide {
    padding: 20px 18px 18px;
    margin: 22px 0;
    border-left-width: 3px;
  }
  .ec-guide__title { font-size: 19px; }
  .ec-guide__lead { font-size: 14px; margin-bottom: 14px; }
  .ec-guide__content { max-height: 240px; }
  .ec-guide__content h4 { font-size: 15px; margin: 14px 0 4px; }
  .ec-guide__content p,
  .ec-guide__content li { font-size: 14px; line-height: 1.55; }
  .ec-guide__btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 14px;
  }
}


@media (max-width: 480px) {
  .ec-guide { padding: 18px 14px 16px; border-radius: 4px; }
  .ec-guide__title { font-size: 17px; }
  .ec-guide__content { max-height: 220px; }
}
























/* === E-cigarety.cz – FAQ === */
.ec-faq {
  margin: 36px 0;
  font-family: 'Roboto', -apple-system, "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
}
.ec-faq *,
.ec-faq *::before,
.ec-faq *::after { box-sizing: border-box; }


.ec-faq__title {
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #42404f;
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin: 0 0 20px;
}


.ec-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.ec-faq__item {
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease;
}


.ec-faq__item[open] {
  background: #ffffff;
  border-color: #c00300;
}


.ec-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #292929;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
  list-style: none;
  outline: none;
}
.ec-faq__question::-webkit-details-marker { display: none; }
.ec-faq__question::marker { content: ""; }


.ec-faq__item:not([open]) .ec-faq__question:hover {
  background: rgba(192, 3, 0, 0.04);
}


.ec-faq__item[open] .ec-faq__question {
  color: #c00300;
  padding-bottom: 10px;
}


/* Plus → X ikona */
.ec-faq__question::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image:
    linear-gradient(#c00300, #c00300),
    linear-gradient(#c00300, #c00300);
  background-size: 2px 100%, 100% 2px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.ec-faq__item[open] .ec-faq__question::after {
  transform: rotate(45deg);
}


.ec-faq__question:focus-visible {
  outline: 2px solid #42404f;
  outline-offset: -2px;
}


.ec-faq__answer {
  padding: 4px 22px 20px;
  color: #434343;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}


.ec-faq__answer p { margin: 0 0 10px; }
.ec-faq__answer p:last-child { margin-bottom: 0; }


.ec-faq__answer ul,
.ec-faq__answer ol {
  padding-left: 20px;
  margin: 0 0 10px;
}
.ec-faq__answer li { margin-bottom: 6px; }
.ec-faq__answer li::marker { color: #c00300; }


.ec-faq__answer strong {
  color: #42404f;
  font-weight: 600;
}


.ec-faq__answer a {
  color: #c00300;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.ec-faq__answer a:hover { color: #ba0010; }


@media (max-width: 768px) {
  .ec-faq { margin: 24px 0; }
  .ec-faq__title {
    font-size: 21px;
    margin-bottom: 14px;
  }
  .ec-faq__list { gap: 8px; }
  .ec-faq__question {
    padding: 14px 16px;
    font-size: 15px;
    gap: 12px;
  }
  .ec-faq__item[open] .ec-faq__question { padding-bottom: 10px; }
  .ec-faq__question::after {
    width: 12px;
    height: 12px;
  }
  .ec-faq__answer {
    padding: 2px 16px 16px;
    font-size: 14px;
    line-height: 1.6;
  }
}


@media (max-width: 480px) {
  .ec-faq__title { font-size: 19px; }
  .ec-faq__question {
    padding: 13px 14px;
    font-size: 14.5px;
  }
  .ec-faq__answer {
    padding: 2px 14px 14px;
    font-size: 13.5px;
  }
}






















/* === E-cigarety.cz – Trust / USP sekce === */
.ec-trust {
  position: relative;
  background: #fdf5f5;
  border: 1px solid rgba(192, 3, 0, 0.15);
  border-left: 4px solid #c00300;
  border-radius: 8px;
  padding: 28px 32px;
  margin: 36px 0;
  font-family: 'Roboto', -apple-system, "Segoe UI", Arial, sans-serif;
  color: #292929;
  box-sizing: border-box;
}
.ec-trust *,
.ec-trust *::before,
.ec-trust *::after { box-sizing: border-box; }
.ec-trust__brand {
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #42404f;
  line-height: 1.35;
  margin: 0 0 12px;
}
.ec-trust__brand strong {
  color: #c00300;
  font-weight: 700;
}
.ec-trust__text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #434343;
  margin: 0 0 22px;
}
.ec-trust__text strong {
  color: #42404f;
  font-weight: 600;
}
.ec-trust__text a {
  color: #c00300;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
.ec-trust__text a:hover { color: #ba0010; }
.ec-trust__divider {
  height: 1px;
  background: rgba(192, 3, 0, 0.14);
  border: 0;
  margin: 0 0 22px;
}
.ec-trust__usp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ec-trust__usp-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #292929;
  line-height: 1.2;
  white-space: nowrap;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.ec-trust__usp-item:hover {
  border-color: rgba(192, 3, 0, 0.4);
  transform: translateY(-1px);
}
.ec-trust__usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #c00300;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.ec-trust__usp-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .ec-trust {
    padding: 22px 18px;
    margin: 26px 0;
    border-left-width: 3px;
  }
  .ec-trust__brand {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .ec-trust__text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .ec-trust__divider { margin-bottom: 16px; }
  .ec-trust__usp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .ec-trust__usp-item {
    padding: 7px 12px 7px 7px;
    font-size: 12.5px;
    gap: 8px;
    white-space: normal;
    min-width: 0;
  }
  .ec-trust__usp-icon {
    width: 32px;
    height: 32px;
  }
  .ec-trust__usp-icon img {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 480px) {
  .ec-trust {
    padding: 18px 14px;
    border-radius: 6px;
  }
  .ec-trust__brand {
    font-size: 15px;
  }
  .ec-trust__text {
    font-size: 13.5px;
  }
  .ec-trust__usp {
    gap: 6px;
  }
  .ec-trust__usp-item {
    padding: 6px 10px 6px 6px;
    font-size: 12px;
    gap: 6px;
  }
  .ec-trust__usp-icon {
    width: 28px;
    height: 28px;
  }
  .ec-trust__usp-icon img {
    width: 15px;
    height: 15px;
  }
}






















/* === E-cigarety.cz – Rozcestník na související kategorie === */


.ec-links {
  margin: 36px 0;
  font-family: 'Roboto', -apple-system, "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
}
.ec-links *,
.ec-links *::before,
.ec-links *::after { box-sizing: border-box; }


.ec-links__title {
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #42404f;
  line-height: 1.25;
  letter-spacing: 0.2px;
  margin: 0 0 6px;
}
.ec-links__lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0 0 20px;
}


.ec-links__subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3a3845;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 30px 0 14px;
}
.ec-links__subtitle::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}


/* === Karty pevných kategorií === */
.ec-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.ec-links__grid > li {
  display: flex;
}
.ec-links__grid > li > .ec-links__card {
  width: 100%;
}


.ec-links__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ec-links__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #c00300;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}
.ec-links__card:hover {
  border-color: rgba(192, 3, 0, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.ec-links__card:hover::before {
  transform: scaleY(1);
}


/* === Náhled produktu místo ikony === */
.ec-links__card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #f5f5f5;
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
  transition: background 0.2s ease;
}
.ec-links__card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.ec-links__card:hover .ec-links__card-image {
  background: #ecebef;
}
.ec-links__card:hover .ec-links__card-image img {
  transform: scale(1.06);
}


.ec-links__card-text {
  flex: 1;
  min-width: 0;
}
.ec-links__card-name {
  display: block;
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #292929;
  line-height: 1.3;
  margin-bottom: 2px;
}
.ec-links__card-desc {
  display: block;
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.4;
}


/* === Šipka přes CSS pseudo-element (bez SVG) === */
.ec-links__card::after {
  content: "›";
  flex-shrink: 0;
  font-family: 'Exo 2', 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #c00300;
  line-height: 1;
  margin-left: 4px;
  transition: transform 0.25s ease;
}
.ec-links__card:hover::after {
  transform: translateX(4px);
}


/* === Pilulky parametrických kategorií === */
.ec-links__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.ec-links__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #434343;
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.ec-links__pill::after {
  content: "›";
  color: #c00300;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.ec-links__pill:hover {
  background: #ffffff;
  border-color: #c00300;
  color: #c00300;
}
.ec-links__pill:hover::after {
  transform: translateX(3px);
}


.ec-links a,
.ec-links a:hover,
.ec-links a:focus,
.ec-links a:active,
.ec-links a span {
  text-decoration: none !important;
}


/* === Responsivita === */
@media (max-width: 480px) {
  .ec-links__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .ec-links__card {
    padding: 10px 12px 10px 10px;
    gap: 10px;
  }
  .ec-links__card-image {
    width: 44px;
    height: 44px;
  }
  .ec-links__card-name {
    font-size: 13px;
  }
  .ec-links__card-desc {
    font-size: 11.5px;
    line-height: 1.35;
  }
  .ec-links__card::after {
    display: none;
  }
  .ec-links__title { font-size: 17px; }
  .ec-links__pill {
    padding: 6px 13px;
    font-size: 12.5px;
    gap: 6px;
  }
}