.hero-section {
    position: relative;
    background: url(/static/images/publications-bg.jpg) no-repeat center center/cover;
    height: 100%;
    overflow-y: hidden;
}

.publications-main {
    height: 100vh;
    position: relative;
    background: url(/static/images/publications-bg.jpg) no-repeat center center/cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    background-color: #28181e;
}
.publications-container {
  width: 80%;
  position: absolute;
  left: 10%;
  background-color: rgba(0,0,0, 0.7);
  /*overflow-y: auto;
  overflow-x: hidden;*/
}

.publications-container p {
    padding-left: 20px;
    padding-right: 20px;

}
.publications-container ul {
    align-items: center;
    position: relative:
    left: 50%;
    overflow: hidden;
    color: #fffeff;
}
.publications-container li {
    padding-bottom: 10px;
}
.publications-container a {
  text-decoration: none;
  text-align: justify;
  color: #88787e;
}

.publications-container h1 {
    text-align: center;
}

/*.publications-container p, th, td {
    font-size: 1rem;
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    color: #fffeff;
}*/
@media (max-width: 1200px) {

.hero-section {
   background: url(/static/images/publications-bg-phone.jpg) no-repeat center center/cover;
   background: url(/static/images/tour-bg-phone.jpg) no-repeat center center/cover;
   height: 100vh;
}

.publications-main {
  background-image: url(/static/images/publications-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.publications-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
}

.publications-gallery a {
  text-decoration: none;
  color: inherit;
  text-align: center;
  width: 250px;
  transition: transform 0.2s ease-in-out;
}

.publications-gallery a:hover {
  transform: scale(1.05);
}

.publications-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.publications-gallery img:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.publications-gallery p {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
}

