

/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* DETAIL CLANKU             													                                            */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/

/* Obsah —————————————————————————————————————————————————————————————————————————————————————————*/
.article-hero {
  background: white;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.article-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.article-hero-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #2bbfbd 0%, #3fd9d7 100%);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
	object-fit: cover;
}

.article-hero-text {
  order: -1;
}

.article-category {
  background: rgba(43, 191, 189, 0.1);
  color: #2bbfbd;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.article-title1 {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-excerpt {
  color: #6b7280;
  font-size: 1.125rem !important;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.article-share {
  display: flex;
  align-items: center;
  padding: 15px;
  border-top: 1px solid #e5e7eb;
	gap: 10px;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  color: #6b7280;
	border: 1px solid;
  text-decoration: none;
	cursor: pointer;
  transition: all 0.3s;
  font-size: 0.875rem;
}

.share-button:hover {
  background: #2bbfbd;
	border: 1px solid #2bbfbd;
  color: white;
  transform: scale(1.1);
}



@media (min-width: 768px) {
  .article-hero-text {
    order: 0;
  }
	
  .article-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}