/* ========================================================= ROOT ========================================================= */
:root {
  --background: #f4f4f6;
  --surface: #ffffff;
  --surface-soft: #f8f8fa;
  --border: #e5e5e9;
  --border-dark: #d8d8de;
  --text: #17171c;
  --secondary: #6f6e76;
  --muted: #a2a1a9;
  --purple: #6b5dbc;
  --purple-dark: #5943d6;
  --purple-soft: #efecff;
  --pink: #f05c8b;
  --green: #17ac82;
  --header-height: 72px;
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* ========================================================= RESET ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
}

/* ========================================================= LOADER ========================================================= */

.ajax-loader {
  position: relative;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: ajax-loading .6s linear infinite;
}

@keyframes ajax-loading {
  to {
    transform: rotate(360deg);
  }
}



/* ========================================================= HEADER ========================================================= */
.topbar {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgb(255 255 255 / 75%);
  backdrop-filter: blur(22px);
}


.topbar-inner {
  max-width: 1500px;
  height: 100%;
  margin: auto;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ========================================================= LOGO ========================================================= */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.logo-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 24px;
}

.logo-icon .logo-hole {
  fill: #17171c;
}

.logo-text {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.9px;
  background: linear-gradient(135deg, #e98689, #84a3c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 2px;
}

/* ========================================================= NAV ========================================================= */
.main-nav {
  display: flex;
  align-items: center;
  gap: 21px;
}

.main-nav a {
  height: var(--header-height);
  position: relative;
  color: #807f86;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--purple);
}

/* ========================================================= SEARCH ========================================================= */

.header-search {
  height: 40px;
  flex: 1;
  width: auto;
  min-width: 0;
  margin-left: 0;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 22px;
  background: #f1f1f4;
  display: flex;
  align-items: center;
  transition: .18s ease;
}

.header-search:focus-within {
  background: white;
  border-color: #d88b94;
  box-shadow: 0 0 0 3px rgba(223, 137, 144, 15%);
}

.header-search>svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #97969d;
  stroke-width: 1.8;
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 8px;
  color: var(--text);
  font-size: 12px;
}

.search-shortcut {
  width: 23px;
  height: 23px;
  border: 1px solid #dbdbe0;
  border-radius: 6px;
  background: white;
  color: #9f9ea5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ========================================================= HEADER ACTIONS ========================================================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-icon-button {
  width: 38px;
  height: 38px;
  margin-right: 20px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.header-icon-button svg {
  width: 24px;
  height: 24px;
  stroke: #5d5d5e;
}



.notification-dot {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 6px;
  right: 6px;
  border-radius: 50%;
  border: 1px solid #5d5d5e;
  background: linear-gradient(145deg, #f98296, #99c0f9);
}

.create-button {
  min-height: 38px;
  min-width: 97px;
  padding: 0 15px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e98689, #84a3c7);
  color: white;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  transition: .18s ease;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}



.create-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
}

.header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-left: 3px;
  background: linear-gradient(135deg, #7059ee, #a797ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}



/* ========================================================= APP LAYOUT ========================================================= */
.app-layout {
  max-width: 1450px;
  margin: auto;
  padding: 28px 25px 80px;
  display: grid;
  grid-template-columns: 220px minmax(510px, 720px) 292px;
  justify-content: center;
  gap: 26px;
}

/* ========================================================= STICKY COLUMNS ========================================================= */
.left-column,
.right-column {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  height: fit-content;
}

/* ========================================================= MINI PROFILE ========================================================= */
.mini-profile {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
}


.mini-profile-off {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
}

.img-welcome {
  position: relative;
  width: 100%;
  height: auto;
}

.welcome-p {
  position: relative;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.mini-profile-cover {
  height: 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #e3888e, #86a2c5);
}

.mini-profile-cover img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-profile-cover svg {
  width: 100%;
  height: 100%;
}

.mini-profile-content {
  padding: 0 16px 15px;
}

.mini-profile-avatar {
  position: relative;
  width: 54px;
  height: 54px;
  overflow: hidden;
  margin-top: -27px;
  margin-bottom: 8px;
  border: 2px solid white;
  border-radius: 50%;
  background: linear-gradient(135deg, #6953dc, #a28fff);
  background-size: 250% 250%;
  animation: gradient-move 8s ease infinite;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
}

.mini-profile-avatar img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-profile-avatar-off {
  position: relative;
  top: -30px;
  width: 74px;
  height: 74px;
  display: block;
  margin: auto;
  background-color: #fff;
  border-radius: 19px;
}

.mini-profile-avatar-off img {
  position: relative;
  left: 2px;
  top: 2px;
  width: 70px;
  height: 70px;
}

.mini-profile-content>strong {
  display: block;
  font-weight: 500;
  font-size: 20px;
}


.edit-profile-separator {
  height: 1px;
  margin: 9px 0 10px;
  background: #eaeaea;
}


.mini-profile-content>span {
  display: block;
  margin-top: 2px;
  color: #212121;
  font-size: 12px;
}

.mini-profile-content p {
  margin-top: 9px;
  color: var(--secondary);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.mini-profile-stats {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mini-profile-stats div {
  display: flex;
  flex-direction: column;
}

.mini-profile-stats strong {
  font-size: 12px;
  font-weight: 600;
}

.mini-profile-stats span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.profile-link {
  height: 31px;
  margin-top: 13px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #5e5d64;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 650;
}

.profile-link:hover {
  background: #f7f7f9;
}

/* ========================================================= LEFT MENU ========================================================= */
.left-menu,
.topics {
  margin-top: 3px;
  padding: 9px 3px;
}

.left-section-title {
  padding: 0 10px;
  color: #aaa9af;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.left-menu-item {
  min-height: 40px;
  margin-top: 3px;
  padding: 0 10px;
  border-radius: 10px;
  color: #69686f;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
  transition: .15s ease;
}

.left-menu-item:hover {
  background: #ececf0;
  color: var(--text);
}

.left-menu-item:hover svg {
  stroke: var(--text);
}

.left-menu-item.active {
  background: white;
  color: #111;
  border: 1px solid var(--border);
}

.left-menu-item.active svg {
  stroke: #111;
}

.left-menu-item svg {
  stroke: #5d5d5e;
}

.left-menu-icon {
  width: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-menu-icon svg {
  width: 20px;
  height: 20px;
}



/* ========================================================= TOPICS ========================================================= */
.left-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-section-header a {
  color: var(--purple);
  font-size: 12px;
}



/* ========================================================= EDITOR PROMO ========================================================= */
.editor-promo-off {
  min-height: 66px;
  margin-top: 15px;
  padding: 12px;
  border-radius: 15px;
  background: #fff;
  color: #333;
  display: block;
  align-items: center;
  gap: 10px;
  transition: .2s;
  border: 1px solid var(--border);
}



.editor-promo-off-icon {

  flex: 0 0 auto;
  border-radius: 0px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-promo-off-icon img {
  width: 21px;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
  position: relative;
  top: 4px;
}

.editor-promo-off>div:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.editor-promo-off span {
  background: linear-gradient(135deg, #e98689, #84a3c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 23px;
  margin-left: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.editor-promo-off strong {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin: auto;
  display: table;
  margin-top: 10px;
}


/* ========================================================= EDITOR PROMO ========================================================= */
.editor-promo {
  min-height: 66px;
  margin-top: 15px;
  padding: 12px;
  border-radius: 15px;
  background: #ffffff;
  color: #303030;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .2s;
  border: 1px solid var(--border);
}



.editor-promo-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  border-radius: 8px;
  /* background: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-promo-icon img {
  width: 40px;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
}

.editor-promo>div:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.editor-promo span {
  background: linear-gradient(135deg, #e98689, #84a3c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.editor-promo strong {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.editor-arrow {
  margin-left: auto;
  color: #111 !important;
  font-size: 14px !important;
}

/* ========================================================= FEED ========================================================= */
.feed {
  min-width: 0;
}

/* ========================================================= FEED TOP ========================================================= */
.feed-top {
  min-height: 56px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.small-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.feed-top h1 {
  margin-top: 0px;
  font-size: 22px;
  letter-spacing: -.9px;
  font-weight: 500;
}

.feed-tabs {
  padding: 3px;
  border-radius: 20px;
  background: #eaeaec;
  display: flex;
}

.feed-tabs button {
  height: 29px;
  padding: 0 11px;
  border-radius: 17px;
  background: transparent;
  color: #828188;
  font-size: 12px;
  font-weight: 600;
}

.feed-tabs button.active {
  background: white;
  color: var(--text);
  box-shadow: 0 2px 7px rgba(25, 25, 30, .05);
}

/* ========================================================= STORIES ========================================================= */
.stories {
  margin-bottom: 14px;
  padding: 15px 13px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: white;
  display: flex;
  align-items: center;
  gap: 15px;
  scrollbar-width: none;
}

.stories::-webkit-scrollbar {
  display: none;
}

.story {
  min-width: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.story small {
  max-width: 55px;
  overflow: hidden;
  color: #67666d;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-ring {
  width: 51px;
  height: 51px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e98689, #84a3c7);
}

.story-ring.viewed {
  background: #d7d6da;
}

.story-avatar {
  width: 47px;
  height: 47px;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.story-purple {
  background: #7059ee;
}

.story-orange {
  background: #ef8c53;
}

.story-green {
  background: #16ae82;
}

.story-blue {
  background: #3a8bd6;
}

.story-pink {
  background: #e85c89;
}

.story-yellow {
  background: #dda430;
}

.story-circle {
  width: 51px;
  height: 51px;
  border: 1px dashed #c5c3cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-circle span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ========================================================= QUICK CREATE ========================================================= */
.quick-create {
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: white;
}

.quick-create-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.quick-placeholder {
  display: flex;
  flex-direction: column;
}

.quick-placeholder strong {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.control-new-post {
  position: relative;
  width: 100%;
  height: auto;
  padding: 6px;
  margin-top: 17px;
}

.textarea-new-post {
  width: 100%;
  min-height: 24px;
  border: none;
  outline: none;
  background: #f1f1f4;
  padding: 13px;
  resize: none;
  border-radius: 10px;
  margin: 0;
  font: inherit;
  color: inherit;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  font-size: 12px;
  field-sizing: content;
  border: 1px solid transparent;
  transition: .18s ease;
}

.textarea-new-post:focus-within {
  background: white;
  border-color: #d88b94;
  box-shadow: 0 0 0 3px rgba(223, 137, 144, 15%);
}

.quick-placeholder span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}




.quick-actions-active {
  background-color: #14a87e;
}

.quick-actions-active svg {
  stroke: #14a87e;
}

.quick-actions {
  padding-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.quick-actions-button {
  min-height: 30px;
  padding: 0 9px;
  border-radius: 8px;
  background: transparent;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.quick-actions-button-active {
  min-height: 30px;
  padding: 0 9px;
  border-radius: 8px;
  background: #98aac6;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.quick-actions-button:hover {
  background: #f4f4f6;
}

.quick-actions-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #626262;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-actions-button-active svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inputs-quick-create {

  min-height: 30px;
  padding: 0 9px;
  border-radius: 8px;
  background: transparent;
  color: #747279;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;

}

.quick-actions-a {
  min-height: 31px;
  margin-left: auto;
  padding: 0 13px;
  border-radius: 9px;
  background: #f4f4f4;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: .18s ease;
}



.quick-actions-a:hover {
  /* background: linear-gradient(145deg, #f4bfc8, #c6d9f4); */
  background: linear-gradient(145deg, #f4bfc8, #c6d9f4, #f4bfc8);
  background-size: 250% 250%;
  animation: gradient-move 8s ease infinite;
}

.quick-actions-a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  margin-right: 5px;
}


@keyframes gradient-move {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }

}

/* ========================================================= SOCIAL POST ========================================================= */
.social-post {
  margin-bottom: 16px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: 0 6px 24px rgba(30, 25, 55, .025);
}


/* ========================================================= POST HEADER ========================================================= */
.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.avatar {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.avatar-purple {
  background: linear-gradient(135deg, #7059ee, #b19fff);
}

.avatar-orange {
  background: linear-gradient(135deg, #ef8c53, #f7c9aa);
}

.avatar-green {
  background: linear-gradient(135deg, #16ae82, #a8e0d2);
}

.post-author-info {
  display: flex;
  flex-direction: column;
}

.post-author-info>div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-author-info strong {
  font-size: 12px;
  font-weight: 500;
  color: #17171c;
}


.follow-button {
  min-height: 28px;
  margin-left: auto;
  padding: 0 8px;
  border-radius: 7px;
  background: #fff;
  color: #585858;
  border: 1px solid #777777;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.project-menu {
  position: relative;
  z-index: 10;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 31px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 9px;
  background: #f4f4f4;
  backdrop-filter: blur(8px);
  color: #55535b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-menu svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}


.post-author-info>span {
  margin-top: 0px;
  color: var(--muted);
  font-size: 12px;
}

.verified {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.creator-badge {
  padding: 3px 5px;
  border-radius: 4px;
  background: #18171d;
  color: white;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .8px;
}

.post-menu {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: #8e8d94;
  font-size: 14px;
}


/* ========================================================= POST DESCRIPTION ========================================================= */
.post-description {
  margin: 13px 0;
  color: #3f3e44;
  font-size: 14px;
  line-height: 1.6;
}

.post-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-tags a {
  color: var(--purple);
  font-size: 12px;
}

/* ========================================================= VECTOR ========================================================= */
.vector-content {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1.44 / 1;
}

.vector-purple {
  background: linear-gradient(135deg, #e7e1ff, #d6cbff);
}

.vector-orange {
  background: linear-gradient(135deg, #fae4d3, #f7c9aa);
}

.vector-green {
  background: linear-gradient(135deg, #dcf7ed, #bdeada);
}

.vector-content>svg {
  width: 100%;
  height: 100%;
}

/* ========================================================= VECTOR TOP ========================================================= */

/* ========================================================= VECTOR OVERLAY ========================================================= */
.vector-overlay {
  position: absolute;
  z-index: 6;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.vector-overlay-left {
  display: flex;
  gap: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: .2s;
}

.vector-overlay-left span {
  min-height: 25px;
  padding: 0 8px;
  border-radius: 15px;
  background: rgba(20, 20, 26, .72);
  backdrop-filter: blur(8px);
  color: white;
  display: flex;
  align-items: center;
  font-size: 12px;
}

/* .vector-content:hover .vector-overlay-left {
  opacity: 1;
  transform: translateY(0);
} */

.vector-floating-actions {
  display: flex;
  gap: 5px;
  opacity: 0;
  transform: translateY(7px);
  transition: .2s;
}

/* .vector-content:hover .vector-floating-actions {
  opacity: 1;
  transform: translateY(0);
} */

.vector-floating-actions button {
  min-height: 32px;
  padding: 0 11px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

.preview-button {
  background: rgba(255, 255, 255, .9);
  color: #2f2e34;
  backdrop-filter: blur(8px);
}

.vector-floating-actions .remix-button {
  background: rgba(20, 20, 25, .9);
  color: white;
}

.vector-floating-actions svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================================================= PROJECT DETAILS ========================================================= */
.project-details {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fafafa;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.5fr auto;
  align-items: center;
  gap: 10px;
}

.project-details>div {
  display: flex;
  flex-direction: column;
}

.project-details span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .8px;
}

.project-details strong {
  margin-top: 3px;
  overflow: hidden;
  color: #535158;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-details button {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border);
  color: #4d4b52;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.project-details button svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

/* ========================================================= POST ACTIONS ========================================================= */
.post-actions-row {
  min-height: 50px;
  /* border-bottom: 1px solid var(--border); */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-action-group {
  display: flex;
  align-items: center;
  gap: 3px;
}

.post-action-group button,
.save-button {
  height: 31px;
  padding: 0 7px;
  border-radius: 8px;
  background: transparent;
  color: #77757c;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.post-action-group button:hover,
.save-button:hover {
  background: #f4f4f6;
  color: var(--purple);
}

.post-action-group button.liked {
  color: #ee527e;
}

.post-action-group svg,
.save-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  /* stroke: currentColor; */
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.post-action-group .liked svg {
  fill: currentColor;
}

/* ========================================================= LIKED BY ========================================================= */
.liked-by {
  min-height: 26px;
  display: flex;
  align-items: center;
}

.liked-avatars {
  display: flex;
  margin-right: 8px;
}

.liked-avatars span {
  width: 18px;
  height: 18px;
  margin-left: -6px;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 500;
}

.liked-avatars span:first-child {
  margin-left: 0;
}

.liked-a {
  background: #ed8a52;
}

.liked-b {
  background: #15ad81;
}

.liked-c {
  background: #3b8bd6;
}

.liked-by p {
  color: #7b7980;
  font-size: 10px;
}

.liked-by p strong {
  color: #444249;
}

/* ========================================================= COMMENTS ========================================================= */
.comments {
  padding-top: 10px;
}

.comment {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.comment-avatar {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.comment-orange {
  background: #ef8951;
}

.comment-body {
  flex: 1;
}

.comment-body>div {
  display: grid;
  align-items: center;
  gap: 0;
}

.comment-body strong {
  font-size: 12px;
  font-weight: 500;
}

.comment-body span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.comment-body p {
  margin-top: 4px;
  color: #5e5c63;
  font-size: 13px;
  line-height: 1.4;
}

.comment>button {
  background: transparent;
  color: #aaa8af;
  font-size: 11px;
}

.view-comments {
  display: table;
  margin-top: 7px;
  color: #99979e;
  font-size: 12px;
}

.view-comments:hover {
  color: #55545a;
}

.btn-show-comment-form {
  position: static;
  display: table;
  margin: auto;
  margin-top: 9px;
  cursor: pointer;
  color: #99979e;
  padding: 3px 13px;
  border-radius: 5px;
  font-size: 12px;
}

.btn-show-comment-form:hover {
  color: #55545a;
  background: #f5f5f5;
}

.new-comment {
  position: relative;
  display: none;
  min-height: 42px;
  width: 100%;
  margin-top: 7px;
  border-top: 1px solid #f2f2f3;
}

.new-comment.open {
  display: inline-block;
}

.new-comment div {
  position: relative;
  width: 100%;
  height: auto;
  padding: 6px;

}

.new-comment-div-avatar {
  position: relative;
  display: flex;
  align-items: center;
}

.new-comment-avatar {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
}

.new-comment-div-nome {
  position: relative;
  display: grid;
  align-items: center;

}

.new-comment-div-nome strong {
  font-size: 12px;
  font-weight: 500;
}

.new-comment-div-nome span {
  font-size: 10px;
  font-weight: 400;
  color: #7b7676;
}

.control-new-post-comment {
  position: relative;
  width: 100%;
  height: auto;
  padding: 6px;
  margin-top: 0px;
}


.new-comment div a {
  min-height: 31px;
  margin-left: auto;
  padding: 0 13px;
  border-radius: 9px;
  background: #f4f4f4;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: .18s ease;
}


.new-comment div a:hover {
  background: linear-gradient(145deg, #f4bfc8, #c6d9f4, #f4bfc8);
  background-size: 250% 250%;
  animation: gradient-move 8s ease infinite;
}


.new-comment div a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  margin-right: 5px;
}


.comentar {
  position: relative;
  float: right;
  color: #111;
  top: 5px;
}

.comment-hidden {
  display: none !important;
}

/* ========================================================= FEED DISCOVERY ========================================================= */
.feed-discovery {
  margin-bottom: 16px;
  padding: 15px;
  border-radius: 17px;
  background: #ffffff;
  color: #333333;
  border: 1px solid var(--border);
}

.feed-discovery>header {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feed-discovery header>div {
  display: flex;
  flex-direction: column;
}

.feed-discovery header span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.feed-discovery header strong {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #404040;
}

.feed-discovery header a {
  color: #134781;
  font-size: 12px;
}

.feed-discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.discovery-art {
  aspect-ratio: 1.25;
  overflow: hidden;
  border-radius: 10px;
}

.discovery-art svg {
  width: 100%;
  height: 100%;
}

.discovery-orange {
  background: #f5d4bf;
}

.discovery-blue {
  background: #d9ebf8;
}

.discovery-green {
  background: #d6f2e8;
}

/* ========================================================= REMIX SECTION ========================================================= */
.community-highlight {
  min-height: 280px;
  margin-bottom: 16px;
  padding: 28px;
  overflow: hidden;
  border-radius: 18px;
  background: radial-gradient(circle at 100% 0, rgba(112, 89, 238, .28), transparent 40%), #19181d;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
}

.community-highlight-text {
  width: 52%;
  position: relative;
  z-index: 3;
}

.community-highlight-text>span {
  color: #938e9d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.community-highlight-text h2 {
  margin-top: 10px;
  font-size: 33px;
  line-height: .95;
  letter-spacing: -1.5px;
}

.community-highlight-text p {
  max-width: 280px;
  margin-top: 12px;
  color: #9e9aa5;
  font-size: 12px;
  line-height: 1.55;
}

.community-highlight-text a {
  min-height: 33px;
  margin-top: 17px;
  padding: 0 12px;
  border: 1px solid #47434e;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
}

.remix-stack {
  width: 295px;
  height: 240px;
  position: absolute;
  right: -5px;
  bottom: -2px;
}

.remix-card {
  width: 205px;
  height: 150px;
  position: absolute;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, .25);
}

.remix-card svg {
  width: 100%;
  height: 100%;
}

.remix-1 {
  right: -15px;
  top: 12px;
  background: #f7c957;
  transform: rotate(12deg);
}

.remix-2 {
  right: 70px;
  top: 68px;
  background: #63d4c4;
  transform: rotate(-12deg);
}

.remix-3 {
  right: 12px;
  top: 72px;
  background: #ddd5ff;
  transform: rotate(3deg);
}

/* ========================================================= LOAD ========================================================= */
.feed-load {
  padding: 22px 0;
  display: flex;
  justify-content: center;
}

.feed-load button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  background: white;
  color: #66656c;
  font-size: 12px;
  font-weight: 700;

}

/* ========================================================= RIGHT CARD ========================================================= */
.right-card,
.activity-card {
  margin-bottom: 15px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: white;
}

.right-card-header {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.right-card-header>div {
  display: flex;
  flex-direction: column;
}

.right-card-header span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.right-card-header h3 {
  font-size: 13px;
  font-weight: 500;
}

.right-card-header a {
  color: #134781;
  font-size: 12px;
}

/* ========================================================= FEATURE TREND ========================================================= */
.featured-trend {
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 12px;
  background: #efebff;
  display: block;
}

.featured-trend-art {
  height: 95px;
}

.featured-trend-art svg {
  width: 100%;
  height: 100%;
}

.featured-trend>div:last-child {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.featured-trend span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
}

.featured-trend strong {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
}

.featured-trend small {
  margin-top: 3px;
  color: #8b8992;
  font-size: 12px;
}

/* ========================================================= TREND ========================================================= */
.trend-item {
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trend-item>div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trend-item small {
  color: #bab8c0;
  font-size: 12px;
}

.trend-item>div>div {
  display: flex;
  flex-direction: column;
}

.trend-item strong {
  font-size: 12px;
  font-weight: 600;
}

.trend-item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}


/* ========================================================= FOLLOW ========================================================= */
.follow-user {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.follow-user:first-of-type {
  border-top: 0;
}

.follow-avatar {
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.follow-purple {
  background: #7059ee;
}

.follow-blue {
  background: #398bd6;
}

.follow-orange {
  background: #ef8b52;
}

.follow-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.follow-info strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.follow-info span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}



.all-creators {
  min-height: 35px;
  margin-top: 8px;
  color: var(--purple);
  display: flex;
  align-items: flex-end;
  font-size: 12px;
  font-weight: 600;
}

/* ========================================================= CHALLENGE ========================================================= */
.challenge-card {
  margin-bottom: 15px;
  padding: 17px;
  overflow: hidden;
  border-radius: 17px;
  background: linear-gradient(145deg, #eab9c1, #c7daf5);
  position: relative;
}

.challenge-top {
  display: flex;
  justify-content: space-between;
  color: #6555aa;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.challenge-time {
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .5);
}

.challenge-art {
  height: 105px;
  position: relative;
}

.challenge-circle {
  width: 77px;
  height: 77px;
  position: absolute;
  left: 36px;
  top: 16px;
  border-radius: 50%;
  background: #7059ee;
}

.challenge-square {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 96px;
  top: 26px;
  border-radius: 20px;
  background: #ff7ca7;
  transform: rotate(18deg);
}

.challenge-outline {
  width: 83px;
  height: 83px;
  position: absolute;
  right: 18px;
  top: 7px;
  border: 1px solid rgba(104, 85, 181, .28);
  border-radius: 50%;
}

.challenge-card h3 {
  margin-top: 8px;
  font-size: 25px;
  line-height: .95;
  letter-spacing: -1px;
}

.challenge-card p {
  max-width: 225px;
  margin-top: 9px;
  color: #6f6981;
  font-size: 12px;
  line-height: 1.5;
}

.challenge-members {
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.challenge-avatars {
  display: flex;
}

.challenge-avatars span {
  width: 24px;
  height: 24px;
  margin-left: -6px;
  border: 2px solid #e5deff;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.challenge-avatars span:first-child {
  margin-left: 0;
}

.ca-1 {
  background: #7059ee;
}

.ca-2 {
  background: #f18a53;
}

.ca-3 {
  background: #16aa80;
}

.ca-4 {
  background: #17171c;
}

.challenge-members small {
  color: #777186;
  font-size: 12px;
}

.challenge-card>a {
  height: 34px;
  margin-top: 14px;
  border-radius: 18px;
  background: #18171d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ========================================================= ACTIVITY ========================================================= */
.activity-item {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 0;
}

.activity-item:first-of-type {
  border-top: 0;
}

.activity-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.activity-remix {
  background: #efecff;
  color: var(--purple);
}

.activity-heart {
  background: #ffedf2;
  color: #ec5a82;
}

.activity-upload {
  background: #e9f8f3;
  color: #14a87e;
}

.activity-item p {
  color: #77757c;
  font-size: 12px;
  line-height: 1.45;
}

.activity-item strong {
  color: #46444b;
}

.activity-item small {
  display: block;
  margin-top: 3px;
  color: #aaa8af;
  font-size: 12px;
}

/* ========================================================= RIGHT FOOTER ========================================================= */
.right-footer {
  padding: 1px 5px;
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.3fr 1fr;
  gap: 7px 11px;
}

.right-footer a,
.right-footer span {
  color: #aaa9af;
  font-size: 12px;
}




.quick-actions-button.quick-actions-button-off {
  background: #fff2f2;
  border-color: #f1cccc;
  color: #b85f5f;
}

.quick-actions-button.quick-actions-button-off svg {
  stroke: #b85f5f;
}




.post-vector-card.selected {
  cursor: grab;
}

.post-vector-card.selected:active {
  cursor: grabbing;
}

.post-vector-card.dragging {
  opacity: .35;
  transform: scale(.96);
}



.post-vector-card.selected::before {
  content: attr(data-position);
  position: absolute;
  top: 5px;
  left: 5px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6bec8;
  color: #000;
  border-radius: 38%;
  font-size: 11px;
  font-weight: 700;
  z-index: 5;
}


/* =========================================================
   SELECT VECTOR
========================================================= */

.post-vector-selector {
  display: none;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
}

.post-vector-selector.open {
  display: block;
}

.post-vector-selector-header {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-vector-selector-header strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.post-vector-selector-header span {
  color: var(--muted);
  font-size: 10px;
}

.post-vector-selector-list {
  width: 100%;
  padding-bottom: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.post-vector-selector-list::-webkit-scrollbar {
  height: 5px;
}

.post-vector-selector-list::-webkit-scrollbar-track {
  background: transparent;
}

.post-vector-selector-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #d5d5db;
}

.post-vector-selector-list::-webkit-scrollbar-thumb:hover {
  background: #bdbdc5;
}

.post-vector-card {
  width: 102px;
  height: 102px;
  flex: 0 0 102px;
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e8e8ec;
  background: #fff;
  cursor: pointer;
}

.post-vector-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.post-vector-card:hover {
  border-color: #d6d4dc;
}

.post-vector-card.selected {
  border-color: #c8d9f3;
}


.post-vector-card.loaded img {
  opacity: 1;
}


/* =========================================================
   VECTOR PRELOADER
========================================================= */

.post-vector-loader {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #e9e9ed;
}

.post-vector-loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
  animation: post-vector-loading 1.2s infinite;
}

.post-vector-card.loaded .post-vector-loader {
  display: none;
}

@keyframes post-vector-loading {
  100% {
    left: 100%;
  }
}


/* =========================================================
   VECTOR CHECK
========================================================= */

.post-vector-check {
  position: absolute;
  top: 5px;
  right: 6px;
  z-index: 4;
  width: 18px;
  height: 18px;
  border: 1px solid #dddce2;
  border-radius: 33%;
  background: rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .15s ease;
}

.post-vector-card.selected .post-vector-check {
  opacity: 1;
  border-color: #d4cfe4;
  background: #cfd2e8;
}

.post-vector-check svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #3e3e3e;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.post-vector-empty {
  grid-column: 1 / -1;
  padding: 20px;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

















.post-vectors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

.post-vectors[data-count="1"] {
  grid-template-columns: 1fr;
}

.post-vectors .vector-content {
  min-width: 0;
}

.post-vectors .vector-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}






.post-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.post-slider-track {
  width: 100%;
  display: flex;
  transition: transform .35s ease;
}

.post-slider-slide {
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
}

.post-slider-arrow {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  z-index: 10;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 45%);
  backdrop-filter: blur(22px);
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.post-slider-prev {
  left: 12px;
}

.post-slider-next {
  right: 12px;
}

.post-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
}

.post-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.post-slider-dot.active {
  background: #fff;
}














.project-menu-container {
  position: relative;
  display: inline-flex;
}

.post-options-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 6px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  display: none;
  z-index: 100;
}

.post-options-menu.active {
  display: block;
}

.post-options-menu button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
}

.post-options-menu button:hover {
  background: #f5f5f5;
}

.post-options-empty {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: #888;
}



.btn-seguir {
  min-height: 31px;
  margin-left: auto;
  padding: 0 13px;
  border-radius: 9px;
  background: #f4f4f4;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: .18s ease;
}

.btn-seguir:hover {
  background: linear-gradient(145deg, #f4bfc8, #c6d9f4, #f4bfc8);
  background-size: 250% 250%;
  animation: gradient-move 8s ease infinite;
}

















/* =========================================================
   REPOST COMPOSE
========================================================= */

.repost-compose {
  display: none;
  width: 100%;
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
}


.repost-compose.open {
  display: block;
}


.repost-compose-header {
  display: flex;
  align-items: center;
  gap: 10px;
}


.repost-compose-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}


.repost-compose-user {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}


.repost-compose-user strong {
  color: #17171c;
  font-size: 13px;
  font-weight: 500;
}


.repost-compose-user span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}


.repost-publish-button {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 9px;
  background: #f4f4f4;
  color: #444;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
}


.repost-publish-button:hover {
  background: linear-gradient(145deg, #f4bfc8, #c6d9f4, #f4bfc8);
  background-size: 250% 250%;
  animation: gradient-move 8s ease infinite;
}

.repost-publish-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  margin-right: 5px;
}






















.repost-compose-content {
  margin-top: 15px;
}


.repost-textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px;
  resize: none;
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  background: #f1f1f4;
  color: #333;
  font-family: inherit;
  font-size: 12px;
}


.repost-textarea:focus {
  background: #fff;
  border-color: #d88b94;
  box-shadow: 0 0 0 3px rgba(223, 137, 144, 15%);
}


.repost-original-author {
  width: 100%;
  margin: 4px 0 12px 0;
  padding: 11px 12px;
  border-top: 1px solid #f5f5f5;
  display: block;
  transition: .15s ease;
}



.repost-original-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.repost-original-user {
  display: flex;
  align-items: center;
  gap: 9px;
}

.repost-original-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.repost-original-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.repost-original-user-info {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.repost-original-user-info strong {
  color: #333;
  font-size: 11px;
  font-weight: 500;
}

.repost-original-user-info span {
  margin-top: 1px;
  color: var(--muted);
  font-size: 10px;
}

.repost-original-arrow {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #9b99a1;
}



/* ========================================================= RESPONSIVE 1250 ========================================================= */
@media(max-width: 1250px) {
  .app-layout {
    grid-template-columns: 205px minmax(500px, 700px);
  }

  .right-column {
    display: none;
  }
}

/* ========================================================= RESPONSIVE 930 ========================================================= */
@media(max-width: 930px) {
  .main-nav {
    display: none;
  }

  .app-layout {
    grid-template-columns: minmax(0, 700px);
  }

  .left-column {
    display: none;
  }

  .header-search {
    margin-left: auto;
  }
}

/* ========================================================= RESPONSIVE 650 ========================================================= */
@media(max-width: 650px) {
  .topbar-inner {
    padding: 0 13px;
    gap: 8px;
  }

  .logo-text {
    display: none;
  }

  .header-search {
    width: auto;
    flex: 1;
  }

  .search-shortcut {
    display: none;
  }

  .header-icon-button {
    display: none;
  }

  .create-button {
    width: 37px;
    height: 37px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .create-button svg {
    width: 16px;
  }

  .header-avatar {
    display: none;
  }

  .app-layout {
    padding: 18px 10px 50px;
  }

  .feed-top {
    min-height: auto;
  }

  .stories {
    padding: 13px 9px;
  }

  .quick-create {
    padding: 12px;
  }

  .quick-actions button:nth-child(2) {
    display: none;
  }

  .social-post {
    padding: 12px;
    border-radius: 14px;
  }

  .vector-content {
    aspect-ratio: 1 / .88;
  }

  .project-details {
    grid-template-columns: 1fr 1fr;
  }

  .project-details>div:nth-child(3) {
    display: none;
  }

  .project-details button {
    justify-content: center;
  }

  .post-action-group {
    gap: 0;
  }

  .post-action-group button {
    padding: 0 5px;
    font-size: 12px;
  }

  .post-action-group button:nth-child(4) {
    display: none;
  }

  .vector-overlay-left {
    display: none;
  }

  .vector-floating-actions {
    opacity: 1;
    transform: none;
  }

  .feed-discovery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .community-highlight {
    min-height: 355px;
    padding: 24px;
    align-items: flex-start;
  }

  .community-highlight-text {
    width: 100%;
  }

  .community-highlight-text h2 {
    font-size: 29px;
  }

  .remix-stack {
    right: -35px;
    bottom: -25px;
    transform: scale(.75);
    transform-origin: bottom right;
  }
}