/* Pagination links */
.pagination-month {
  margin-bottom: 1rem;
}

.pagination-month a {
  color: black;
  display: inline-block;
  padding: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
  border-bottom: 0 !important;
}

/* Style the active/current link */
.pagination-month a.active {
  background-color: dodgerblue;
  color: white;
}

/* Add a grey background color on mouse-over */
.pagination-month a:hover:not(.active) {
  background-color: #ddd;
}

/* SIDEBAR GALLERY */
.randomize img {
  display: none;
}

.randomize img:first-child {
  display: block;
}

/* POLITICI */

.filter-buttons {
  margin-bottom: 1rem;
}

.politics h4 {
  display: inline-block;
  margin: 0.5rem 0;
}

.politics,
.post {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.politics .rt {
  margin-bottom: 0.5rem;
  font-style: italic;
  font-size: 0.9rem;
  color: #777;
}

.politics .published-date {
  font-size: 0.9rem;
  color: #777;
}

.politics img {
  max-height: 250px;
}

.politics br {
  display: none;
}

.politics .summary,
.post .summary {
  font-size: 1rem;
  padding: 2rem;
}

.organizations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.organization-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.organization-card img.org-logo {
  max-height: 60px;
  margin-bottom: 0.5rem;
  width: auto; /* zachová proporce */
  object-fit: contain; /* obrázek se nevejde do boxu, ale nezdeformuje */
}

.organization-card h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
}

.organization-card .org-links a {
  margin: 0 0.25rem;
  text-decoration: none;
  color: dodgerblue;
  font-weight: bold;
  border: 0;
}

.organization-card .org-links a:hover {
  text-decoration: none;
  border: 0;
}

.image-center {
  text-align: center;
}

.image-description {
  color: #757575;
  font-size: .85rem;
}

.block-center {
   display: flex; /* Aktivuje Flexbox */
    justify-content: center; /* Vystředí vodorovně */
    align-items: center; 
    margin-bottom: 1rem;
}

.Feedback,
.SocialProof,
.Caption,
.Footer {
  display: none !important;
}

@media (max-width: 600px) {
  .organizations-list {
    flex-direction: column;
    gap: 1rem;
  }

  .organization-card {
    width: 100%;
  }

  .organization-card .org-links a {
    display: inline-block;
    margin: 0.25rem 0.25rem 0 0;
  }
}
