.elementor-5384 .elementor-element.elementor-element-cdc799d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a0f8307 */.pdf-library {
  padding: 15px 5%;
  font-family: 'Titillium Web', sans-serif;
  background: #fafafa;
}

/* HEADER */
.pdf-header {
  text-align: center;
  margin-bottom: 20px;
}

.pdf-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.pdf-header p {
  color: #555;
  font-size: 14px;
}

/* GRID */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.pdf-card {
  background: #fff;
  padding: 50px 30px; /* 🔥 taller cards */
  border: 1px solid #eee;
  position: relative;
  transition: 0.35s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

/* TOP ACCENT LINE */
.pdf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #c32131;
  transition: 0.3s;
}

/* TITLE */
.pdf-card h4 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

/* BUTTON */
.pdf-actions {
  margin-top: 30px;
}

.cta-btn {
  padding: 11px 24px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  transition: 0.25s ease;
}

.cta-btn.primary {
  background: #c32131;
  color: #fff;
}

.cta-btn.primary:hover {
  background: #a81c1c;
  transform: translateY(-2px);
}

/* HOVER EFFECT */
.pdf-card:hover {
  transform: translateY(-8px);
  border-color: #c32131;
}

.pdf-card:hover::before {
  width: 100%;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .pdf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 750px) {
  .pdf-grid {
    grid-template-columns: 1fr;
  }

  .pdf-header h1 {
    font-size: 26px;
  }

  .pdf-card {
    padding: 35px 20px;
    min-height: auto;
  }
}/* End custom CSS */