.media-page {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #0d0d0d;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.media-page a {
  color: inherit;
  text-decoration: none;
}
.media-page img {
  display: block;
  max-width: 100%;
}
.media-page h2,
.media-page h3 {
  margin: 0;
}

.media-body {
  background: #fff;
}
.media-body__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}

.media-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-heading__icon {
  flex: 0 0 auto;
  color: #017435;
  line-height: 0;
}
.section-heading__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #0d0d0d;
  white-space: nowrap;
}
.section-heading__rule {
  flex: 1 1 auto;
  height: 8px;
  background: url("/public/img/default_img/dash-line-grey.png") left center/auto 8px repeat-x;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 40px;
}

.album {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.album__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 271/162;
  background: #e8f3e9;
}
.album__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.album__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #017435;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: background 0.18s ease, transform 0.18s ease;
}
.album:hover .album__media img {
  transform: scale(1.05);
}
.album:hover .album__badge {
  background: #009f48;
  transform: translate(-50%, -50%) scale(1.08);
}
.album__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #3e3e3f;
  text-wrap: pretty;
}
.album__title a:hover {
  color: #017435;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #ebebeb;
  color: #0d0d0d;
  font-size: 14px;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}
.pagination__btn:hover {
  background: rgb(214.6, 214.6, 214.6);
}
.pagination__btn.is-active {
  background: #017435;
  color: #fff;
  font-weight: 600;
}
.pagination__btn--nav svg {
  display: block;
}

.media-tabs {
  background: #017435;
}
.media-tabs__list {
  display: flex;
  list-style: none;
  margin: 0 auto;
  max-width: 1440px;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}
.media-tabs__list::-webkit-scrollbar {
  display: none;
}
.media-tabs__item {
  flex-shrink: 0;
}
.media-tabs__link {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.media-tabs__link:hover {
  color: #fff;
}
.media-tabs__link.is-active {
  color: #fff;
  border-bottom-color: #fff;
}

.document-table {
  width: 100%;
  overflow-x: auto;
}
.document-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.document-table th,
.document-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e4e8e4;
}
.document-table thead tr {
  background: #f0f7f1;
}
.document-table th {
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  /* text-transform: uppercase; */
  letter-spacing: 0.04em;
}
.document-table tbody tr:hover {
  background: #f8fcf8;
}
.document-table .col-stt {
  width: 15%;
  text-align: center;
}
.document-table .col-action {
  width: 120px;
  text-align: center;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #017435;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-download:hover {
  background: rgb(0.6512820513, 75.5487179487, 34.5179487179);
  color: #fff;
}
.btn-download--large {
  padding: 10px 24px;
  font-size: 15px;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .media-body__wrap {
    grid-template-columns: 1fr;
  }
  .quicklinks {
    max-width: 420px;
  }
}
@media (max-width: 760px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .media-body__wrap {
    padding: 32px 20px;
  }
  .album-grid {
    grid-template-columns: 1fr;
  }
  .page-hero__title {
    font-size: 24px;
    left: 60px;
  }
}
