.post-item-full {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  max-width: 100%;
  box-sizing: border-box;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.post-item-full .post-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.post-item-full .post-author-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.post-item-full .post-author-link:hover {
  opacity: 0.8;
}

.post-item-full .post-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.post-item-full .author-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-item-full .author-avatar-placeholder {
  width: 100%;
  height: 100%;
  background-color: #544864;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
}

.post-item-full .post-author-info {
  display: flex;
  flex-direction: column;
}

.post-item-full .post-author-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.post-item-full .post-timestamp {
  font-size: 0.8rem;
  color: #8a7a94;
  margin-top: 2px;
}

.post-item-full .post-images-container {
  width: 100%;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.post-item-full .post-images-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.post-item-full .post-image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-item-full .post-image-slide.active {
  opacity: 1;
}

.post-item-full .post-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.post-item-full .slide-indicators {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
}

.post-item-full .slide-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.post-item-full .slide-indicator.active {
  background-color: white;
}

.post-item-full .slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.post-item-full .slide-nav:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.post-item-full .slide-nav.prev {
  left: 1rem;
}

.post-item-full .slide-nav.next {
  right: 1rem;
}

.post-item-full .slide-nav svg {
  width: 36px;
  height: 36px;
}

.post-item-full .post-stats {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.post-item-full .post-stats > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: gray;
}

.post-item-full .stat-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.post-item-full .stat-count {
  font-weight: 600;
  color: #333;
}

.post-item-full .post-pets {
  padding: 0 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-item-full .post-pets-label {
  font-size: 0.9rem;
  color: #666;
}

.post-item-full .post-pets-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-item-full .pet-tag {
  background-color: #f0f0f0;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.85rem;
  color: #555;
}

.post-item-full .pet-tag-link {
  text-decoration: none;
  color: inherit;
}

.post-item-full .pet-tag-link:hover .pet-tag {
  text-decoration: underline;
}

.post-item-full .post-content {
  padding: 1rem 1.5rem;
  line-height: 1.5;
  color: #333;
}

.post-item-full .post-content p {
  margin: 0;
  white-space: pre-line;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.posts-section-title {
  margin-bottom: 1rem;
}

.posts-empty {
  text-align: center;
  padding: 2rem;
  color: #999;
}

.posts-section {
  margin-top: 16px;
}

.info-card {
  padding: 24px;
}

@media screen and (max-width: 768px) {
  .info-card {
    padding: 12px;
  }

  .post-item-full {
    border-radius: 0;
    filter: none;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .post-item-full .post-header,
  .post-item-full .post-stats,
  .post-item-full .post-content,
  .post-item-full .post-pets {
    padding: 0.75rem 1rem;
  }

  .post-item-full .slide-nav {
    width: 40px;
    height: 40px;
  }

  .post-item-full .slide-nav.prev {
    left: 0.5rem;
  }

  .post-item-full .slide-nav.next {
    right: 0.5rem;
  }

  .post-item-full .slide-nav svg {
    width: 28px;
    height: 28px;
  }
}

@media screen and (max-width: 480px) {
  .post-item-full {
    margin-bottom: 0.5rem;
  }

  .post-item-full .post-header,
  .post-item-full .post-stats,
  .post-item-full .post-content,
  .post-item-full .post-pets {
    padding: 0.5rem;
  }

  .post-item-full .post-author-name {
    font-size: 0.9rem;
  }

  .post-item-full .post-content p {
    font-size: 0.9rem;
  }

  .post-item-full .post-pets {
    font-size: 0.85rem;
  }

  .post-item-full .pet-tag {
    padding: 0.15rem 0.5rem;
    font-size: 0.8rem;
  }

  .post-item-full .slide-nav {
    width: 36px;
    height: 36px;
  }

  .post-item-full .slide-nav svg {
    width: 24px;
    height: 24px;
  }

  .post-item-full .slide-indicator {
    width: 6px;
    height: 6px;
  }
}
