

/* CARD */
.records-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.records-title {
  text-align: center;
  color: var(--primary-blue);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
}

.records-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 0;
}

/* CONTENT */
.records-content p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* LIST */
.records-list {
  margin-top: 10px;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.records-list li {
  list-style: none;
  background: #f9f9f9;
  padding: 12px 15px;
  border-left: 4px solid var(--primary-blue);
  border-radius: 6px;
  transition: 0.3s;
  font-size: 14px;
}

.records-list li:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* PDF SECTION */
.records-pdf {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--primary-blue);
}

.records-pdf iframe {
  width: 100%;
  height: 700px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .records-card {
    padding: 20px;
  }

  .records-title {
    font-size: 22px;
  }

  .records-list {
    grid-template-columns: 1fr;
  }

  .records-pdf iframe {
    height: 400px;
  }
}