.my-posts-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

.my-posts-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.75rem;
  border: none;
  box-shadow: 0 4px 14px rgba(124, 92, 252, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: transform 0.2s;
}

.fab:hover {
  transform: scale(1.1);
}
