.profile-container {
  max-width: 850px;
  margin-top: 60px;
}

.profile-image-container {
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}

@media (max-width: 768px) {
  .profile-image-container {
    width: 75px;
    height: 75px;
  }
}

.profile-image-container.post {
  width: 50px;
  height: 50px;
}

.profile-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.avatar-frame {
  border: 2px solid #f1f1f1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f8f9fa;
}

.social-link {
  color: #666;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.2s;
}

.social-link:hover {
  color: #000;
}

/* Feed de Posts */
.post-card {
  border: none;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #f1f1f1;
}

.post-card:last-child {
  border-bottom: none;
}

.post-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #000;
  text-decoration: none;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.post-title:hover {
  color: #2563eb;
}

.post-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  background-color: #f8f8f8;
}

.post-excerpt {
  color: #4b5563;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .profile-container {
    margin-top: 30px;
  }

  .post-title {
    font-size: 1.4rem;
  }
}

/* Sección de Temas / Filtros */
.section-title-sm {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3rem;
}

.tag-pill {
  display: inline-block;
  background-color: #f3f4f6;
  color: #4b5563;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.tag-pill:hover {
  background-color: #000;
  color: #fff;
}

.tag-pill.active {
  background-color: #000;
  color: #fff;
}