/* =========================================================
   GRID 3 / 2 / 1 SPALTEN
========================================================= */

.pdf-download-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
}

@media (max-width: 1024px) {
  .pdf-download-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .pdf-download-wrapper {
    grid-template-columns: 1fr !important;
  }
}

.pdf-download-item {
  text-align: center;
}

.pdf-download-inner {
  max-width: 260px;
  margin: 0 auto;
}

.pdf-download-thumb img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* =========================================================
   TITEL
========================================================= */

.pdf-download-title {
  font-size: 1.2rem !important;
  line-height: 1.3 !important; 
  font-weight: 700;
  margin: 15px 0 10px !important;
}

/* =========================================================
   DOWNLOAD-BUTTON (Badge + Text)
========================================================= */

.pdf-download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(230, 233, 237, 0.0);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none !important;

    -webkit-box-shadow:inset 0 0 0 1px #d1d4d8;
    box-shadow:inset 0 0 0 1px #d1d4d8;
    
    color: #000;
    font-weight: 600;

    transition: all 200ms ease;
}

.pdf-download-link:hover {
    background: #e6e9ed;
    text-decoration: none !important;
    
    -webkit-box-shadow:none;
    box-shadow:none;
}

/* PDF-Badge (links) */
.pdf-badge {
    /* background: #D9382C; */
    background: #E26E0E;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    
    padding: 4px 8px;
    border-radius: 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
    min-width: 34px;
}

/* Download-Text (rechts) */
.pdf-download-text {
    font-size: 1rem;
    font-weight: 700;
    color: #00509F;
    line-height: 1;
    display: flex;
    align-items: center;

    transition: color 200ms ease;
}

.pdf-download-link:hover .pdf-download-text {
    color: #003c78;
}