/* Facebook-style Comments UI Styles */
.fb {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #1d2129;
  border: 1px solid #dddfe2;
  border-radius: 6px;
  max-width: 600px;
  margin: 0 auto;
position: relative;
  background: #fff;
}
.fb__name{
  text-decoration: none !important;
}

.fb__head {
  display: flex;
  align-items: center;
  border-radius: 8px 8px 0px 0px !important;
  gap: 10px;
  background: #4267b2;
  padding: 10px;
  border-radius: 6px 6px 0 0;
}

.fb__logo {
  width: 28px;
  height: auto;
}

.fb__title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.fb__input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #dddfe2;
  flex-wrap: nowrap;
}

.fb__field {
  flex-grow: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: #f2f3f5;
  outline: none;
  min-width: 240px;
  white-space: nowrap;
}

.fb__btn {
  color: #365899;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.fb__sort {
  color: #365899;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
}

.fb__items {
  padding: 0 10px 10px 10px;
}

.fb__item {
  display: flex;
  margin: 15px 0;
  align-items: flex-start;
  gap: 10px;
}

.fb__ava {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fb__body {
  flex: 1;
}

.fb__text {
  background: #f2f3f5;
  border-radius: 18px;
  padding: 8px 12px;
  margin: 0 0 4px 0;
  display: inline-block;
  word-break: break-word;
  font: 400 14px / 20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fb__name {
  font-weight: bold;
  color: #365899;
  margin-right: 5px;
    text-decoration: none !important;
}

.fb__like {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  color: #8d949e;
  padding: 2px 6px;
  margin-top: 4px;
  gap: 4px;
}

.fb__like img {
  width: 16px;
  height: 16px;
}

.fb__meta {
  font-size: 12px;
  color: #606770;
  margin-top: 4px;
}

.fb__reply {
  display: flex;
  flex-direction: row;
  margin-top: 12px;
  padding-left: 42px;
  gap: 10px;
  align-items: flex-start;
}

.fb__reply .fb__ava {
  width: 28px;
  height: 28px;
}

.fb__reply .fb__text {
  background: #f2f3f5;
  border-radius: 18px;
  padding: 8px 12px;
  margin: 0;
  flex: 1;
}

.fb__reply .fb__meta {
  padding-left: 42px;
}

.fb__img {
  margin-top: 10px;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .fb {
    border-radius: 0;
  }
  .fb__head {
  border-radius: 8px 8px 0px 0px;
  }
  .fb__input {
    flex-direction: row;
    align-items: stretch;
  }
  .fb__field {
    width: 100%;
    margin-bottom: 8px;
  }
  .fb__btn {
    text-align: right;
  }
}