/* BuzzMag secure comments - bundled theme module */
.buzzmag-comments {
  --bmsc-surface: #fff;
  --bmsc-text: #101828;
  --bmsc-muted: #7b88a3;
  --bmsc-line: #e5eaf2;
  --bmsc-primary: #0d6efd;
  --bmsc-primary-2: #1769ff;
  --bmsc-shadow-main: 0 20px 55px rgba(23, 43, 77, .10);
  --bmsc-shadow-card: 0 8px 24px rgba(31, 50, 81, .08);
  width: min(1060px, 100%);
  margin: 0 auto;
  overflow: hidden;
  color: var(--bmsc-text);
  border: 1px solid #e8edf5;
  border-radius: 22px;
  background: var(--bmsc-surface);
  box-shadow: var(--bmsc-shadow-main);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.buzzmag-comments *,
.buzzmag-comments *::before,
.buzzmag-comments *::after {
  box-sizing: border-box;
}

.buzzmag-comments .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.buzzmag-comments .comment-compose {
  padding: 34px 36px 24px;
  background: linear-gradient(180deg, #fff 0%, #fefefe 100%);
}

.buzzmag-comments .compose-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.buzzmag-comments .compose-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 72px;
  border-radius: 50%;
  color: var(--bmsc-primary);
  background: linear-gradient(145deg, #eaf2ff 0%, #edf4ff 100%);
}

.buzzmag-comments .compose-icon svg {
  width: 32px;
  height: 32px;
}

.buzzmag-comments .compose-copy h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.5px;
  font-weight: 800;
}

.buzzmag-comments .compose-copy p {
  margin: 0;
  color: var(--bmsc-muted);
  font-size: 17px;
  line-height: 1.5;
}

.buzzmag-comments .comment-form {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.buzzmag-comments .comment-form-cookies-consent {
  margin: 14px 0 0;
  color: var(--bmsc-muted);
  font-size: 14px;
}

.buzzmag-comments .comment-form-cookies-consent input {
  margin-right: 7px;
}

.buzzmag-comments .comment-identity-field {
  margin: 0;
  display: grid;
  gap: 7px;
}


.buzzmag-comments .comment-form > .textarea-wrap,
.buzzmag-comments .comment-form > .form-actions,
.buzzmag-comments .comment-form > .comment-form-cookies-consent,
.buzzmag-comments .comment-form > .logged-in-as,
.buzzmag-comments .comment-form > .must-log-in,
.buzzmag-comments .comment-form > .buzzmag-sc-honeypot {
  grid-column: 1 / -1;
}


.buzzmag-comments .comment-identity-field label {
  color: #53617a;
  font-size: 14px;
  font-weight: 700;
}

.buzzmag-comments .comment-identity-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  color: var(--bmsc-text);
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 12px;
  outline: none;
  font: inherit;
}

.buzzmag-comments .comment-identity-field input:focus,
.buzzmag-comments .comment-textarea:focus {
  border-color: #8fbcff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, .10), 0 6px 18px rgba(15, 23, 42, .06);
}

.buzzmag-comments .textarea-wrap {
  position: relative;
}

.buzzmag-comments .comment-textarea {
  width: 100%;
  min-height: 162px;
  resize: vertical;
  display: block;
  padding: 22px 22px 48px;
  color: var(--bmsc-text);
  font: inherit;
  font-size: 18px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 20px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, .02), 0 3px 12px rgba(15, 23, 42, .055);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.buzzmag-comments .comment-textarea::placeholder {
  color: #8b98b2;
}

.buzzmag-comments .counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: #7b88a3;
  font-size: 16px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

.buzzmag-comments .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
}

.buzzmag-comments .submit-comment {
  min-height: 60px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  appearance: none;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--bmsc-primary) 0%, var(--bmsc-primary-2) 100%);
  box-shadow: 0 8px 18px rgba(13, 110, 253, .20);
  font-size: 18px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.buzzmag-comments .submit-comment:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(13, 110, 253, .25);
  filter: saturate(1.05);
}

.buzzmag-comments .submit-comment:active {
  transform: translateY(0);
}

.buzzmag-comments .submit-comment:focus-visible {
  outline: 3px solid rgba(13, 110, 253, .3);
  outline-offset: 3px;
}

.buzzmag-comments .submit-comment svg {
  width: 26px;
  height: 26px;
}

.buzzmag-comments .buzzmag-sc-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.buzzmag-comments .comments-list-section {
  border-top: 1px solid var(--bmsc-line);
  padding: 24px 34px 20px;
  background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
}

.buzzmag-comments .comments-title-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--bmsc-line);
  margin-bottom: 22px;
}

.buzzmag-comments .comments-title-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 66px;
  height: 3px;
  border-radius: 99px;
  background: var(--bmsc-primary);
}

.buzzmag-comments .comments-title-row h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.35px;
  font-weight: 800;
}

.buzzmag-comments .comment-count {
  color: #66758f;
  font-size: 18px;
  font-weight: 700;
}

.buzzmag-comments .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.buzzmag-comments .comment-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 20px 28px 21px 18px;
  border: 1px solid #e2e7ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--bmsc-shadow-card);
}

.buzzmag-comments .avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  align-self: start;
  justify-self: center;
  overflow: hidden;
  border-radius: 50%;
  background: #e9edf4;
}

.buzzmag-comments .avatar-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: #5f6f8c;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  user-select: none;
}

.buzzmag-comments .avatar {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
  background: #e9edf4;
}

.buzzmag-comments .avatar[hidden] {
  display: none !important;
}

.buzzmag-comments .comment-body {
  min-width: 0;
  padding-top: 2px;
}

.buzzmag-comments .comment-author {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.15px;
}

.buzzmag-comments .comment-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #77859e;
  font-size: 15px;
  line-height: 1.2;
}

.buzzmag-comments .comment-meta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.buzzmag-comments .comment-awaiting-moderation {
  margin: 0 0 8px;
  color: #9a6700;
  font-size: 14px;
  font-weight: 700;
}

.buzzmag-comments .comment-text {
  margin: 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.buzzmag-comments .no-comments-yet {
  margin: 0;
  color: var(--bmsc-muted);
  font-size: 16px;
}

.buzzmag-comments .comments-pagination {
  margin-top: 22px;
}

@media (max-width: 700px) {
  .buzzmag-comments .comment-compose {
    padding: 24px 18px 22px;
  }

  .buzzmag-comments .compose-heading {
    gap: 14px;
    align-items: flex-start;
  }

  .buzzmag-comments .compose-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .buzzmag-comments .compose-icon svg {
    width: 26px;
    height: 26px;
  }

  .buzzmag-comments .compose-copy h2 {
    font-size: 23px;
  }

  .buzzmag-comments .compose-copy p {
    font-size: 15px;
  }

  .buzzmag-comments .comment-form {
    grid-template-columns: 1fr;
  }

  .buzzmag-comments .comment-textarea {
    min-height: 150px;
    padding: 18px 18px 44px;
    font-size: 16px;
  }

  .buzzmag-comments .submit-comment {
    min-height: 54px;
    padding: 0 22px;
    font-size: 16px;
  }

  .buzzmag-comments .comments-list-section {
    padding: 22px 16px 18px;
  }

  .buzzmag-comments .comments-title-row h3 {
    font-size: 22px;
  }

  .buzzmag-comments .comment-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 16px 18px 12px;
  }

  .buzzmag-comments .avatar-wrap,
  .buzzmag-comments .avatar {
    width: 56px;
    height: 56px;
  }

  .buzzmag-comments .comment-author {
    font-size: 18px;
  }

  .buzzmag-comments .comment-text {
    font-size: 16px;
  }
}

.buzzmag-comments .comment-security-status,
.buzzmag-comments .comment-security-error {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--bmsc-muted);
  font-size: 13px;
  line-height: 1.4;
}

.buzzmag-comments .comment-security-status.is-ready {
  color: #38734a;
}

.buzzmag-comments .comment-security-status.is-error,
.buzzmag-comments .comment-security-error {
  color: #b42318;
  font-weight: 700;
}

.buzzmag-comments .submit-comment:disabled {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
  box-shadow: none;
  filter: none;
}
