.blog-page {
  color: #f7f7f7;
}

.blog-page .content__container {
  display: block;
}




.blog-menu {
  gap: 40px;
}

.blog-menu .menu_list {
  width: auto;
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border-radius: 999px;
}

.blog-menu .menu_link {
  font-size: 18px;
  text-transform: lowercase;
}

.blog-menu__active {
  width: 54px;
  height: 54px;
  background: #000;
  padding: 0;
}

.blog-menu__active .menu_link {
  color: #fff;
  font-size: 14px;
}

.blog-burger {
  background: #d2fb3d;
}


.blog-hero__panel {
  min-height: 340px;
  background:
    url("/images/blogs-banner.png") center/cover no-repeat;
  overflow: hidden;

}

.blog-hero__panel--banner {
  padding: 0;
  display: block;
  min-height: 0;
  line-height: 0;
}

.blog-hero__panel--banner .blogs-banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.blogs-hero__copy {
  max-width: 650px;
  padding-bottom: 10px;
}

.blogs-hero__copy .section-kicker,
.blog-single__eyebrow,
.blog-admin__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d2fb3d;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blogs-hero__copy h1,
.blog-single__content h1,
.blog-admin__intro h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.95;
  margin-bottom: 18px;
}

.blogs-hero__copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.blogs-hero__visual {
  justify-self: end;
  width: min(100%, 420px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(210, 251, 61, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.blogs-hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}



.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  gap: 14px;
  justify-content: center;
}

.blog-card {
  background: #0a0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 251, 61, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: inherit;
  text-decoration: none;
}

.blog-card__media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #111624, #0a0d14);
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 12px 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.admin-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(210, 251, 61, 0.9);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-card__body h3,
.admin-post__content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.blog-card__body p,
.admin-post__content p {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.blog-card__arrow {
  color: #ff3b7f;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.blog-pagination__btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #d9d9d9;
  cursor: pointer;
  transition: 180ms ease;
}

.blog-pagination__btn:hover,
.blog-pagination__btn.is-active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.blog-pagination__btn--ghost {
  color: #d2fb3d;
}

.blog-pagination__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.blog-single {
  display: grid;
  gap: 28px;
}

.blog-single__hero {
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #111624, #0a0d14);
}

.blog-single__hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-single__content {
  width: 100%;
  /* max-width: 400px; */
  margin: 0 auto;
}

.blog-single__content h1 {
  text-align: center;
  font-size: clamp(32px, 3.8vw, 54px);
  margin-bottom: 14px;
}

.blog-single__lead {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 24px;
}

.blog-single__content p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.blog-single__figure {
  margin: 24px 0 28px;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0d14;
}

.blog-single__figure img {
  width: 100%;
  display: block;
}

.blog-related {
  margin-top: 34px;
}

.blog-related h2,
.blog-admin__list-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  margin-bottom: 18px;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 350px));
  gap: 18px;
  justify-content: center;
}

.blog-empty {
  padding: 60px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.blog-admin__intro {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.blog-admin__intro p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Manrope", sans-serif;
  line-height: 1.8;
}

.blog-admin__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(10, 13, 20, 0.92);
}

.blog-admin__toolbar-label {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Manrope", sans-serif;
}

.blog-admin__logout {
  border: 1px solid rgba(210, 251, 61, 0.25);
  background: transparent;
  color: #d2fb3d;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.blog-admin__login-panel {
  display: grid;
  place-items: center;
  min-height: 55vh;
}

.blog-admin__login-card {
  width: min(100%, 520px);
  padding: 30px;
  border-radius: 26px;
  background: rgba(10, 13, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.blog-admin__login-card h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  margin-bottom: 12px;
}

.blog-admin__login-card p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Manrope", sans-serif;
  line-height: 1.8;
}

.blog-admin__login-form {
  margin-top: 22px;
}

.blog-admin__login-form .blog-admin__primary {
  width: 100%;
  margin-top: 8px;
  padding: 15px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 14px;
  background: linear-gradient(135deg, #d2fb3d 0%, #b7eb0f 100%);
  color: #050608;
  box-shadow: 0 12px 28px rgba(210, 251, 61, 0.22);
}

.blog-admin__login-form .blog-admin__primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(210, 251, 61, 0.3);
}

.blog-admin__login-form .blog-admin__primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(210, 251, 61, 0.18);
}

.blog-admin__login-error {
  margin-top: 14px;
  color: #ff7aa8 !important;
}

.blog-admin__layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-admin__form,
.blog-admin__saved-inner {
  background: rgba(10, 13, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 24px;
}

.blog-admin__group {
  margin-bottom: 16px;
}

.blog-admin__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.blog-admin__group label {
  display: block;
  margin-bottom: 8px;
  color: #d2fb3d;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.blog-admin__group-head label {
  margin-bottom: 0;
}

.blog-admin__group input,
.blog-admin__group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #06080d;
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.blog-admin__block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-admin__block-actions button {
  border: 1px solid rgba(210, 251, 61, 0.22);
  background: rgba(210, 251, 61, 0.06);
  color: #d2fb3d;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  transition: 180ms ease;
  font-family: "Manrope", sans-serif;
}

.blog-admin__block-actions button:hover {
  background: rgba(210, 251, 61, 0.14);
  border-color: rgba(210, 251, 61, 0.35);
}

.blog-admin__blocks {
  display: grid;
  gap: 12px;
  min-height: 32px;
}

.blog-admin__group input::file-selector-button {
  border: 0;
  background: #d2fb3d;
  color: #000;
  border-radius: 999px;
  padding: 10px 14px;
  margin-right: 12px;
  cursor: pointer;
}

.blog-admin__group textarea {
  resize: vertical;
  min-height: 120px;
}

.blog-admin__translations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.blog-admin__lang-section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 13, 0.72);
  border-radius: 22px;
  padding: 20px;
}

.blog-admin__section-head {
  margin-bottom: 18px;
}

.blog-admin__section-head h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: #fff;
}

.blog-block {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(12, 15, 22, 0.88);
}

.blog-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-block__head strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.blog-block__remove {
  border: 1px solid rgba(255, 122, 168, 0.3);
  background: transparent;
  color: #ff7aa8;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.blog-block__field+.blog-block__field {
  margin-top: 12px;
}

.blog-block__field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.blog-block__field input,
.blog-block__field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #06080d;
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.blog-block__field textarea {
  resize: vertical;
  min-height: 120px;
}

.blog-block--editor {
  padding: 0;
  overflow: hidden;
}

.blog-editor {
  background: #f5f5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #f9f9f9, #efefef);
}

.blog-editor__toolbar button {
  min-width: 38px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-right-width: 0;
  background: #fff;
  color: #222;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  transition: 160ms ease;
}

.blog-editor__toolbar button:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.blog-editor__toolbar button:last-child {
  border-right-width: 1px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog-editor__toolbar button:hover {
  background: #f0f0f0;
}

.blog-editor__surface {
  min-height: 220px;
  padding: 16px 18px;
  background: #fff;
  color: #1d1d1d;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  outline: none;
}

.blog-editor__surface div,
.blog-single__richtext div {
  margin: 0 0 1em;
}

.blog-editor__surface div:last-child,
.blog-single__richtext div:last-child {
  margin-bottom: 0;
}

.blog-editor__surface:empty::before {
  content: attr(data-placeholder);
  color: rgba(0, 0, 0, 0.35);
}

.blog-editor__surface p {
  margin: 0 0 1em;
}

.blog-editor__surface p:last-child {
  margin-bottom: 0;
}

.blog-editor__surface ul,
.blog-editor__surface ol {
  margin: 0 0 1em 1.25em;
  padding: 0;
}

.blog-editor__surface blockquote {
  margin: 0 0 1em;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.7);
}

.blog-single__richtext p {
  margin: 0 0 1em;
}

.blog-single__richtext p:last-child {
  margin-bottom: 0;
}

.blog-single__richtext ul,
.blog-single__richtext ol {
  margin: 0 0 1em 1.25em;
  padding: 0;
}

.blog-single__richtext blockquote {
  margin: 0 0 1em;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(210, 251, 61, 0.5);
  color: rgba(255, 255, 255, 0.82);
}

.blog-block__empty {
  margin: 0;
  padding: 14px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Manrope", sans-serif;
}

.blog-admin__two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blog-admin__checkbox {
  display: flex;
  align-items: end;
  padding-bottom: 6px;
}

.blog-admin__checkbox label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.blog-admin__checkbox input {
  width: auto;
  margin-right: 8px;
}

.blog-admin__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 14px;
}

.blog-admin__actions button,
.admin-post__actions button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  transition: 180ms ease;
}

.blog-admin__actions .blog-admin__primary {
  background: #d2fb3d;
  color: #000;
  border-color: #d2fb3d;
}

.blog-admin__actions button:hover,
.admin-post__actions button:hover {
  transform: translateY(-1px);
}

.blog-admin__list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.blog-admin__list-head span {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Manrope", sans-serif;
}

.admin-post {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-post:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.admin-post__thumb {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  background: #111624;
}

.admin-post__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.admin-post__content h3 {
  font-size: 16px;
}

.admin-post__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.admin-post__actions .is-danger {
  border-color: rgba(255, 59, 127, 0.35);
  color: #ff7aa8;
}
.blogs-section {
  padding: 20px 0;
}

@media (max-width: 500px) {

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blogs-hero__copy h1,
  .blog-single__content h1,
  .blog-admin__intro h1 {
    font-size: 34px;
  }

  .blog-admin__two-col {
    grid-template-columns: 1fr;
  }

  .blog-admin__translations {
    grid-template-columns: 1fr;
  }

  .admin-post {
    grid-template-columns: 1fr;
  }

  .blog-admin__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
