#main #content-wrap {padding-top: 10px !important;}

.page-header {
    padding: 10px 0 !important;
}

.ll-debug-file-name {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  z-index: 9999;
}

.page-content-wrapper {
  max-width: 900px;
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow-x: auto;
}

.post-header {
  text-align: center;
  margin-bottom: 20px;
}

.wrapper-container {
  background-color: #ffffff;
  padding: 15px;
}

.carousel-wrapper {
  position: relative;
    max-width: 100%;
    margin: 20px 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.carousel {
  display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 10px 0;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.scroll-button {
  background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.2s, background-color 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.scroll-button.left {
  left: 5px;
}

.scroll-button.right {
  right: 5px;
}

.scroll-button:hover {
  opacity: 1;
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-item {
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    max-width: 250px;
}

.carousel-item:hover {
  transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
  width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.carousel-item h2 {
  font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: #333;
}

.business-description {
  margin-bottom: 20px;
}

.carousel-item h2 a {
  text-decoration: none;
    color: inherit;
}

.carousel-item h2 a:hover {
  color: #0073aa;
    text-decoration: underline;
}

.post-description {
  width: 100%;
  margin-bottom: 30px;
}

.post-header-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.post-info {
  flex: 1 1 300px;
}

.post-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.post-image img {
  max-height: 250px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

