
.layout__2025fair {
  width: 100%;
  background-color: #fff;
  padding: 5px;
  box-sizing: border-box; 
  margin: 0 auto; 
}

.layout__paper {
  list-style: none; 
  padding: 0;
  margin: 0;
}

.paper {
  background-color: #FFFFFF; 
  border: 1px solid #eee;
  border-radius: 8px; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  margin-bottom: 20px; 
  overflow: hidden; 
}

.paper:last-child {
  margin-bottom: 0; 
}

.paper__wrapper {
  display: flex; 
  align-items: flex-start; 
  padding: 20px;
}

.paper__left {
  flex-shrink: 0; 
  margin-right: 20px; 
}

.paper__left .image img {
  max-width: 200px; 
  height: auto; 
  display: block; 
  border-radius: 4px; 
}

.paper__right {
  flex-grow: 1; 
}

.paper__right .head .label {
  color: #3a8e04;
  font-size: 20px;
  font-weight: bold;
  display: block; 
  margin-bottom: 10px;
}

.paper__right .body p {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 15px;
}

.paper__right .foot {
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
}

.paper__right .foot .button {
  flex-shrink: 0; 
}

.paper__right .foot .button a {
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  background-color: #3a8e04;
  color: #fff;
  text-decoration: none;
  padding: 8px 25px;
  border-radius: 20px;
  transition: background-color 0.3s ease; 
  white-space: nowrap; 
  opacity: 1;
}

.paper__right .foot .button a:hover {
  opacity: 0.8;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
}

.paper__right .foot .button a .label {
  font-size: 16px;
  font-weight: bold;
}


@media (max-width: 994px) {
  .layout__2025fair {
    width: 100%; 
    padding: 15px;
  }

  .paper__wrapper {
    flex-direction: column; 
    align-items: center; 
    padding: 15px;
  }

  .paper__left {
    margin-right: 0;
    margin-bottom: 15px; 
  }

  .paper__left .image img {
    max-width: 100%; 
  }

  .paper__right {
    text-align: center; 
  }

  .paper__right .head .label {
    text-align: center; 
  }

  .paper__right .foot {
    justify-content: center; 
  }
}