/* ========================================= */
/* PROJECT LETTERS SECTION */
/* ========================================= */

.project-letters-section {
  width: 100%;
  background: #ffffff;
  padding: 20px 90px 100px;
  overflow: hidden;
}

.project-letters-container {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.project-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #10264a;
  margin: 0 0 45px;
  letter-spacing: -1px;
  font-family: Arial, sans-serif;
  word-break: break-word;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.project-letter-card {
  width: 100%;
  max-width: 350px;
}

/* ========================================= */
/* PDF IMAGE */
/* ========================================= */

.pdf-thumbnail {
  display: block;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
  border-radius: 2px;
}

.pdf-thumbnail img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.pdf-thumbnail:hover img {
  transform: scale(1.02);
}

/* ========================================= */
/* CAPTION */
/* ========================================= */

.pdf-caption {
  display: inline-block;
  width: 100%;
  max-width: 350px;


  font-size: 16px;
  line-height: 1.5;
  color: #10264a;

  text-decoration: none;
  font-family: Arial, sans-serif;

  transition: color 0.3s ease;

  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pdf-caption:hover {
  color: #e30613;
}

/* ========================================= */
/* LARGE TABLETS */
/* ========================================= */

@media (max-width: 1200px) {

  .project-letters-section {
    padding: 20px 60px 90px;
  }

  .project-letters-container {
    margin-top: 0;
  }

  .project-letter-card {
    max-width: 350px;
  }

  .pdf-caption {
    max-width: 350px;
  }
}

/* ========================================= */
/* 1024 FIX */
/* ========================================= */

@media (max-width: 1024px) {

  .project-letter-card {
    max-width: 320px;
  }

  .pdf-caption {
    max-width: 320px;
  }
}

/* ========================================= */
/* TABLETS */
/* ========================================= */

@media (max-width: 992px) {

  .project-letters-section {
    padding: 20px 45px 80px;
  }

  .project-title {
    font-size: 42px;
  }

  .project-letter-card {
    max-width: 300px;
  }

  .pdf-caption {
    max-width: 300px;
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px) {

  .project-letters-section {
    padding: 10px 25px 70px;
  }

  .project-title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 35px;
  }

  .project-letter-card {
    width: 100%;
    max-width: 280px;
  }

  .pdf-caption {
    width: 100%;
    max-width: 280px;

    font-size: 15px;
    line-height: 1.7;

  }
}

/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media (max-width: 480px) {

  .project-letters-section {
    padding: 10px 18px 60px;
  }

  .project-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .project-letter-card {
    width: 100%;
    max-width: 100%;
    padding-right: 40px;
    box-sizing: border-box;
  }

  .pdf-thumbnail {
    width: 100%;
  }

  .pdf-thumbnail img {
    width: 100%;
    display: block;
  }

  .pdf-caption {
    width: 100%;
    max-width: 100%;

    font-size: 14px;
    line-height: 1.6;
  }
}