/* layout – text vlevo, box vpravo */
.category-description-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

/* text vlevo 70 % */
.category-description-wrap .category-text {
  flex: 0 0 70%;
}

/* odkazový box vpravo */
.category-description-wrap .category-article {
  flex: 0 0 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* vzhled boxu jako v menu */
.category-description-wrap .article-link {
  background: #000;
  border: 2px solid #faa603;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  min-height: 66px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-description-wrap .article-link img {
  width: 24px;
  height: 24px;
  display: block;
}

.category-description-wrap .article-link span {
  font-weight: 600;
  text-align: center;
}

/* hover efekt */
.category-description-wrap .article-link:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(250, 166, 3, 0.4);
}

/* mobilní zobrazení – odkaz pod textem */
@media (max-width: 767px) {
  .category-description-wrap {
    flex-direction: column;
gap: 0px;
  }
  .category-description-wrap .category-text,
  .category-description-wrap .category-article {
    flex: 1 1 100%;
  }
  .category-description-wrap .category-article {
    margin-top: 15px;
  }
}