

/*detail akce */
/* Link styling in aktuality items */
.akce-title h4 a {

  text-decoration: none;
  transition: color 0.3s ease;
}

.akce-title h4 a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Detail page styles */
.aktualita-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.aktualita-detail__header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e9ecef;
}

.aktualita-detail__header h1 {
  color: #2c3e50;
  font-size: 2.5em;
  margin: 20px 0;
  line-height: 1.3;
}

.aktualita-detail__meta {
  color: #6c757d;
  font-size: 1.1em;
  margin-top: 15px;
}

.aktualita-detail__date {
  font-weight: 500;
}

.aktualita-detail__time {
  margin-left: 15px;
}

.aktualita-detail__time:before {
  content: "•";
  margin-right: 15px;
  color: #dee2e6;
}

.aktualita-detail__content {
  font-size: 1.1em;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 40px;
}

.aktualita-detail__content p {
  margin-bottom: 20px;
}

.aktualita-detail__actions {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.button--secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #6c757d;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.button--secondary:hover {
  background: #5a6268;
  color: white;
  text-decoration: none;
}

/* Responsive design for detail page */
@media (max-width: 768px) {
  .aktualita-detail__header h1 {
    font-size: 1.8em;
  }
  
  .aktualita-detail {
    padding: 20px 15px;
  }
}


/* Stylování odkazů v titulcích */
.akce-title h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.akce-title h4 a:hover {
  color: #95d6ab;
}

/* Responzivní design */
@media (max-width: 1024px) {
  .akce-item {
    width: 47%;
  }
}

@media (max-width: 768px) {
  .akce-item {
    width: 100%;
    margin-right: 0;
  }
}