.section-container {
  width: 100%;
  padding: 0 10rem;
  background-color: #f0f0f0;
}

@media print,
screen and (max-width: 768px) {
  .section-container {
    padding: 0 2rem;
  }
}

.section-container .nav-link-container {
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
}

.section-container .nav-link-container a.link-info {
  width: fit-content;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  text-decoration: none !important;
  color: #f39800;
}

.section-container .nav-link-container span.title-info {
  max-width: 200px;
  width: fit-content;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-container .title-section {
  background-color: transparent;
  margin-bottom: 0;
}

.section-container .title-section .title-container {
  padding: 5rem 1rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.section-container .title-section .title-container h2 {
  letter-spacing: 2px;
  font-weight: bolder;
}

.section-container .title-section .title-container h2.first {
  font-size: 4rem;
  color: #999;
  font-family: "Yumin-db";
  font-weight: 100;
}

.section-container .title-section .title-container h2.second {
  font-size: 2.8rem;
  color: #004190;
  font-family: "Yu-b";
  text-align: center;
}

.section-container section {
  background-color: transparent;
}

/* -------------- List Section ------------- */

.section-container .list-section {
  width: 100%;
  padding: 5rem 4rem 7rem;
  background-color: white;
}

@media print, screen and (max-width: 768px) {
  .section-container .list-section {
    padding: 5rem 2rem 7rem;
  }
}

.section-container .list-section .list-date {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-container .list-section .list-date .dash {
  display: inline-block;
  width: 2rem;
  height: 0.3rem;
  background-color: #f39800;
}

.section-container .list-section .list-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.section-container .list-section .report-list-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
  margin-bottom: 7rem;
}

@media print,
screen and (max-width: 640px) {
  .section-container .list-section .report-list-container {
    grid-template-columns: 1fr;
  }
}

.section-container .list-section .report-list-container .report-item {
  width: 100%;
  height: fit-content;
  background-color: #eee;
  border-top: 4px solid #999;
  padding: 4rem;
  font-weight: bold;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 1rem;
}

@media print, screen and (max-width: 640px) {
  .section-container .list-section .report-list-container .report-item {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
}

.section-container .list-section .report-list-container .report-item .image-name-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
  height: fit-content;
}

@media print,
screen and (max-width: 768px) {
  .section-container .list-section .report-list-container .report-item .image-name-container {
    flex-direction: column;
    gap: 2rem;
  }
}

.section-container .list-section .report-list-container .report-item .image-name-container .image-container {
  width: 10rem;
  height: 10rem;
}

.section-container .list-section .report-list-container .report-item .image-name-container .image-container img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.section-container .list-section .report-list-container .report-item .image-name-container .name-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

@media print, screen and (max-width: 768px) {
  .section-container .list-section .report-list-container .report-item .image-name-container .name-container {
    text-align: center;
  }
}

.section-container .list-section .report-list-container .report-item .image-name-container .name-container span:first-child {
  font-size: 2rem;
}

.section-container .list-section .report-list-container .report-item .content-container {
  width: 100%;
  height: fit-content;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}

.section-container .list-section .pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  margin-bottom: 3rem;
}

.section-container .list-section .pagination .page-btn {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 2rem;
  font-size: 1.6rem;
  border: none;
  background-color: transparent;
}

.section-container .list-section .pagination .page-btn:hover {
  cursor: pointer;
}

.section-container .list-section .pagination .page-btn:disabled {
  color: #999;
  cursor: not-allowed;
}

.section-container .list-section .back-to-list-btn {
  display: block;
  margin: auto;
  width: 32rem;
  max-width: 100%;
  font-size: 1.6rem;
  color: white;
  background-color: #3e3a39;
  border: none;
  border-radius: 1rem;
  padding: 1.5rem;
}

.section-container .list-section .back-to-list-btn:hover {
  cursor: pointer;
}