.feed {
  position: relative;
  min-height: 100vh;
  z-index: 0;
}

.feed__bg {
  position: fixed;
  top: var(--header-h, 90px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.feed__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.feed__inner {
  position: relative;
  z-index: 1;
}

.feed__navigation {
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-h, 90px);
  z-index: 150;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  --feed-nav-height: 90px;
}

.feed__navigation .container--fluid {
  padding-top: 12px;
  padding-bottom: 12px;
}

.feed__navigation-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.feed__nav-left,
.feed__nav-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.feed__nav-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.feed__slider {
  overflow: hidden;
}

.feed__slider--types .feed__tab.is-hidden {
  display: none;
}

.feed__tabs,
.feed__authors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.feed__tab {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.feed__tab .text {
  color: #4D4953;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}

.feed__tab:hover .text {
  color: #1E47CA;
}

.feed__tab.is-active {
  background: #F8F6F6;
  border-radius: 30px;
}

.feed__tab.is-active .text {
  color: #1E47CA;
  font-size: 14px;
}

.feed__author-btn {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.feed__author-avatar {
  width: 64px;
  height: 64px;
  padding: 3px;
  border-radius: 50%;
  overflow: hidden;
  background: #FFFFFF;
  border: 3px solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.feed__author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 50%;
}

.feed__author-btn:hover .feed__author-avatar {
  opacity: 1;
}

.feed__author-btn.is-active .feed__author-avatar {
  opacity: 1;
  border-color: #1E47CA;
}

.feed__nav-plus-btn {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 12px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.feed__nav-plus-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid transparent;
  color: #4D4953;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.feed__nav-plus-btn:hover .feed__nav-plus-icon {
  opacity: 1;
  color: #1E47CA;
  border-color: #1E47CA;
}

.feed__stack {
  padding-top: 10px;
  padding-bottom: 100px;
}

.feed__stack__inner {
  width: 100%;
}

.feed__stack__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.feed__stack__item {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  background: rgba(229, 229, 229, 0.3019607843);
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  overflow: hidden;
}

.feed__stack__item.is-hidden {
  display: none;
}

.feed__stack__item-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}

.feed__stack__item-date-day {
  font-size: 14px;
  font-weight: 600;
}

.feed__stack__item-date-other {
  font-size: 14px;
}

.feed__stack__item-content {
  padding: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.feed__stack__item-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.feed__stack__item-author-avatar {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #000000;
}

.feed__stack__item-author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.feed__stack__item-author-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.feed__stack__item-author-name {
  font-size: 16px;
  font-weight: 500;
}

.feed__stack__item-author-position {
  font-size: 13px;
}

.feed__stack__item-description p {
  margin: 0;
  line-height: 1.6;
  font-size: 32px;
  font-family: "Instrument Sans";
  color: #120227;
}

.feed__stack__item-more-btn {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  text-align: left;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.feed__stack__item-more-btn:hover {
  opacity: 0.7;
}

.feed__stack__item-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.feed__stack__item-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feed__stack__item-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3px 16px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.0509803922);
}

.feed__stack__item-badge .text {
  color: #FFFFFF;
  font-size: 16px;
}

.feed__load {
  margin-top: 48px;
  text-align: center;
}

.feed__load-btn {
  outline: none;
  border: none;
  background: #1E47CA;
  color: #FFFFFF;
  cursor: pointer;
  padding: 14px 30px;
  border-radius: 30px;
  font-family: "Instrument Sans";
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.feed__load-btn .text {
  color: #FFFFFF;
}

.feed__load-btn:hover:not(:disabled) {
  background: #1b3fb4;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 60, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 60, 255, 0.3);
}

.feed__load-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.feed__load-status {
  display: block;
  margin-top: 12px;
  font-family: "Instrument Sans";
  font-size: 14px;
  color: #4D4953;
}

.feed__load-status:empty {
  display: none;
}

.feed__modal {
  position: fixed;
  inset: 0;
  top: var(--header-h, 90px);
  z-index: 200;
  display: none;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  padding-top: calc(var(--header-h, 90px) + 20px);
  overflow-y: auto;
}

.feed__modal.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.feed__modal-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h, 90px);
  background: rgba(0, 0, 0, 0.7);
  z-index: 201;
}

.feed__modal-content {
  position: relative;
  z-index: 202;
  width: 100%;
  max-width: 960px;
  max-height: calc(100vh - var(--header-h, 90px) - 40px);
  border-radius: 24px;
  background: #FFFFFF;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
}

.feed__modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.feed__modal-close:hover {
  background: #F8F6F6;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.feed__modal-close-icon {
  font-size: 32px;
  line-height: 1;
  color: #120227;
  font-weight: 300;
}

.feed__modal-body {
  padding: 48px;
  overflow-y: auto;
}

.feed__modal-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}

.feed__modal-date-day {
  font-size: 14px;
  font-weight: 600;
}

.feed__modal-date-other {
  font-size: 14px;
}

.feed__modal-content-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

.feed__modal-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.feed__modal-author-avatar {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #000000;
}

.feed__modal-author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.feed__modal-author-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.feed__modal-author-name {
  font-size: 16px;
  font-weight: 500;
}

.feed__modal-author-position {
  font-size: 13px;
}

.feed__modal-title h2 {
  margin: 0;
  font-size: 48px;
  font-family: "Instrument Sans";
  font-weight: 600;
  color: #120227;
  line-height: 1.2;
}

.feed__modal-image {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.feed__modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feed__modal-image:empty {
  display: none;
}

.feed__modal-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3px 16px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.0509803922);
}

.feed__modal-badge:empty {
  display: none;
}

.feed__modal-badge .text {
  color: #FFFFFF;
  font-size: 16px;
}

.feed__modal-description .text {
  font-size: 32px;
  font-family: "Instrument Sans";
  color: #120227;
  line-height: 1.6;
}

.is-hidden {
  display: none !important;
}

.lets_talk {
  padding: 12px;
  padding-top: 0;
}

.lets_talk-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

.lets_talk__img {
  position: absolute;
  inset: 0;
}

.lets_talk__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.lets_talk__inner {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  max-height: 100%;
  height: 720px;
  padding: 96px 0;
  margin: -12px;
}

.lets_talk__inner .container--fluid {
  height: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

.lets_talk__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.lets_talk__content-title {
  max-width: 490px;
  width: 100%;
}

.lets_talk__content-bottom {
  max-width: 320px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

@media screen and (max-width: 1280px) {
  .feed__stack__item-description p {
    font-size: 32px;
  }

  .lets_talk__inner {
    padding: 32px 0;
    height: 480px;
  }

  .lets_talk__content {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .lets_talk__content-title {
    max-width: 480px;
  }

  .lets_talk__content-title .text {
    font-size: 32px;
  }

  .lets_talk__content-bottom {
    margin-top: auto;
    max-width: 100%;
    gap: 22px;
  }

  .lets_talk__content-description .text {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .feed__navigation-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 12px;
  }

  .feed__nav-left,
  .feed__nav-right {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .feed__nav-right {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .feed__stack {
    padding-bottom: 80px;
  }

  .feed__stack__item-description p {
    font-size: 28px;
  }

  .feed__load {
    margin-top: 32px;
  }

  .feed__modal-content {
    max-width: calc(100% - 40px);
    border-radius: 22px;
    max-height: calc(100vh - var(--header-h, 90px) - 40px);
  }

  .feed__modal-body {
    padding: 32px;
  }

  .feed__modal-content-inner {
    gap: 24px;
  }

  .feed__modal-title h2 {
    font-size: 32px;
  }

  .feed__modal-description .text {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .feed__tab {
    padding: 6px 12px;
  }

  .feed__nav-plus-btn {
    margin-left: 0;
    margin-top: 12px;
  }

  .feed__stack {
    padding-bottom: 60px;
  }

  .feed__stack__item-date {
    padding: 12px 20px;
  }

  .feed__stack__item-content {
    padding: 20px;
    gap: 16px;
  }

  .feed__stack__item-description p {
    font-size: 24px;
  }

  .feed__stack__item-badge {
    top: 12px;
    right: 12px;
    padding: 3px 12px;
  }

  .feed__load {
    margin-top: 24px;
  }

  .feed__load-btn {
    padding: 12px 24px;
  }

  .feed__modal-content {
    max-width: calc(100% - 20px);
    border-radius: 16px;
    max-height: calc(100vh - var(--header-h, 90px) - 20px);
    margin-top: 10px;
  }

  .feed__modal-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .feed__modal-close-icon {
    font-size: 28px;
  }

  .feed__modal-body {
    padding: 24px;
    padding-top: 56px;
  }

  .feed__modal-date {
    margin-bottom: 24px;
    padding-bottom: 12px;
  }

  .feed__modal-content-inner {
    gap: 20px;
  }

  .feed__modal-title h2 {
    font-size: 32px;
  }

  .feed__modal-image {
    border-radius: 16px;
  }

  .feed__modal-badge {
    top: 12px;
    right: 12px;
    padding: 3px 12px;
  }

  .feed__modal-description .text {
    font-size: 16px;
  }

  .lets_talk__inner .container--fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feed__stack__item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .feed__nav-btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .feed__load-btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}