/* styl pro knihovnu - PNG ikony místo SVG */

.download-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
  font-family: Arial, sans-serif;
}

.download-title {
  margin: 0 0 14px 0;
  font-size: 1.4rem;
  color: #243043;
}

.download-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e6eaf0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  background: #ffffff;
}

.download-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: #cfd8e3;
}

.download-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.download-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.download-text {
  min-width: 0;
  flex: 1;
}

.download-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
  word-break: break-word;
}

.download-meta {
  margin: 4px 0 0 0;
  font-size: 0.88rem;
  color: #6b7280;
}

.download-arrow {
  flex: 0 0 auto;
  color: #7b8794;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Barevné varianty */
.type-minutes .download-icon {
  background: #eaf4ff;
}

.type-decision .download-icon {
  background: #eafaf1;
}

.type-letter .download-icon {
  background: #fff4e8;
}

.type-pdf .download-icon {
  background: #fdeeee;
}


/* HLAVIČKA ŘÁDKU */
.section-header-line {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

/* NADPIS */
.section-title-center {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    color: #243043;
    justify-self: center; /* KLÍČOVÉ */
}

/* ODKAZ VPRAVO */
.header-link {
    padding: 8px 12px;
    border-radius: 10px;
}

.header-link {
    min-width: 180px;  /* zajistí stabilní layout */
    justify-content: center;
}



/* zmenšená varianta oproti běžným položkám */
.header-link .download-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.header-link .download-icon img {
    width: 32px;
    height: 32px;
}

.header-link .download-name {
    font-size: 0.9rem;
}



@media (max-width: 640px) {
  .download-item {
    padding: 12px 14px;
    gap: 10px;
  }

  .download-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-basis: 42px;
  }

  .download-icon img {
    width: 24px;
    height: 24px;
  }

  .download-name {
    font-size: 0.96rem;
  }

  .download-meta {
    font-size: 0.82rem;
  }
}