* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
@media screen and (max-width: 68.75em) {
  html {
    font-size: 50%;
  }
}

body {
  height: 100vh;
  overflow: hidden;
}

.container {
  height: 100vh;
  max-width: 100vw;
  background-color: var(--color-grey-light-1);
}

.content {
  display: flex;
  height: 100%;
  width: 100%;
}

.sidebar {
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 0 0 30%;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* The main nav list */
  /* Post button (CTA) */
  /* Bottom section for profile */
}
.sidebar::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
@media (max-width: 1885px) {
  .sidebar {
    flex: 0 0 25%;
  }
}
.sidebar.sidebar--left {
  border-right: 0.05px solid white;
  padding-right: 4rem;
  padding-left: 20rem;
  height: 100%;
  overflow-y: auto;
  /* Post button (CTA) */
  /* Bottom section for profile */
}
@media (max-width: 1885px) {
  .sidebar.sidebar--left {
    padding-right: 3rem;
    padding-left: 15rem;
  }
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left {
    padding-right: 2.5rem;
    padding-left: 12rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left {
    padding-right: 2rem;
    padding-left: 8rem;
  }
}
@media (max-width: 900px) {
  .sidebar.sidebar--left {
    padding-right: 1rem;
    padding-left: 1rem;
    flex: 0 0 6rem;
    height: calc(100vh - 6rem);
    overflow-y: auto;
  }
  .sidebar.sidebar--left__top {
    padding-bottom: 2rem;
  }
  .sidebar.sidebar--left__bottom {
    position: sticky;
    bottom: 0;
    background-color: black;
    padding: 1rem 0;
    z-index: 10;
  }
}
.sidebar.sidebar--left__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1rem;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left__top {
    padding-top: 0.8rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left__top {
    padding-top: 0.6rem;
  }
}
.sidebar.sidebar--left .side-nav__item {
  margin-bottom: 1.5rem;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left .side-nav__item {
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left .side-nav__item {
    margin-bottom: 1rem;
  }
}
.sidebar.sidebar--left .side-nav__item--active .side-nav__link {
  background-color: #1a1a1a;
}
.sidebar.sidebar--left .side-nav__link {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #e7e9ea;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left .side-nav__link {
    font-size: 1.7rem;
    padding: 0.9rem 2.2rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left .side-nav__link {
    font-size: 1.6rem;
    padding: 0.8rem 2rem;
  }
}
.sidebar.sidebar--left .side-nav__link:hover {
  background-color: #1a1a1a;
}
.sidebar.sidebar--left .side-nav__link .side-nav__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1.2rem;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left .side-nav__link .side-nav__icon {
    width: 2.3rem;
    height: 2.3rem;
    margin-right: 1rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left .side-nav__link .side-nav__icon {
    width: 2.1rem;
    height: 2.1rem;
    margin-right: 0.8rem;
  }
}
.sidebar.sidebar--left .side-nav__link .side-nav__icon.fa {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left .side-nav__link .side-nav__icon.fa {
    font-size: 2.3rem;
    line-height: 2.3rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left .side-nav__link .side-nav__icon.fa {
    font-size: 2.1rem;
    line-height: 2.1rem;
  }
}
.sidebar.sidebar--left .side-nav__link .side-nav__icon--img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar.sidebar--left__post-btn {
  display: inline-block;
  margin-top: 0;
  background-color: white;
  color: black;
  border: none;
  border-radius: 9999px;
  padding: 1.5rem 10rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left__post-btn {
    padding: 1.4rem 9rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left__post-btn {
    padding: 1.3rem 8rem;
    font-size: 1.4rem;
  }
}
.sidebar.sidebar--left__post-btn:hover {
  background-color: rgb(221, 218, 218);
}
.sidebar.sidebar--left__bottom {
  padding-top: 2rem;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left__bottom {
    padding-top: 1.8rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left__bottom {
    padding-top: 1.6rem;
  }
}
.sidebar.sidebar--left__profile {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 9999px;
  padding: 1rem;
  margin-bottom: 3rem;
  transition: background-color 0.2s;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left__profile {
    padding: 0.9rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left__profile {
    padding: 0.8rem;
    margin-bottom: 2rem;
  }
}
.sidebar.sidebar--left__profile:hover {
  background-color: #1a1a1a;
}
.sidebar.sidebar--left__profile-img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 9999px;
  margin-right: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left__profile-img {
    width: 4.4rem;
    height: 4.4rem;
    margin-right: 0.9rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left__profile-img {
    width: 4rem;
    height: 4rem;
    margin-right: 0.8rem;
  }
}
.sidebar.sidebar--left__profile-info {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.sidebar.sidebar--left__profile-name {
  font-size: 1.4rem;
  font-weight: 600;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left__profile-name {
    font-size: 1.3rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left__profile-name {
    font-size: 1.2rem;
  }
}
.sidebar.sidebar--left__profile-handle {
  font-size: 1.2rem;
  color: #71767b;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--left__profile-handle {
    font-size: 1.1rem;
  }
}
@media (max-width: 1302px) {
  .sidebar.sidebar--left__profile-handle {
    font-size: 1rem;
  }
}
.sidebar__profile-img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 9999px;
  margin-right: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar .side-nav {
  list-style: none;
  margin-bottom: 0.5rem;
  width: 100%;
}
.sidebar .side-nav__item {
  margin-bottom: 1.5rem;
}
.sidebar .side-nav__item--active .side-nav__link {
  background-color: #1a1a1a;
}
.sidebar .side-nav__link {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #e7e9ea;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s;
}
.sidebar .side-nav__link:hover {
  background-color: #1a1a1a;
}
.sidebar .side-nav__link .side-nav__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1.2rem;
}
.sidebar .side-nav__link .side-nav__icon.fa {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.sidebar .side-nav__link .side-nav__icon--img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar__post-btn {
  display: inline-block;
  margin-top: 0;
  background-color: white;
  color: black;
  border: none;
  border-radius: 9999px;
  padding: 1.5rem 10rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.sidebar__post-btn:hover {
  background-color: rgb(221, 218, 218);
}
.sidebar__bottom {
  padding-top: 2rem;
}
.sidebar__profile {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 9999px;
  padding: 1rem;
  margin-bottom: 3rem;
  transition: background-color 0.2s;
}
.sidebar__profile:hover {
  background-color: #1a1a1a;
}
.sidebar__profile-info {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.sidebar__profile-name {
  font-size: 1.4rem;
  font-weight: 600;
}
.sidebar__profile-handle {
  font-size: 1.2rem;
  color: #71767b;
}
.sidebar.sidebar--right {
  height: 100%;
  border-left: 0.009px solid white;
  justify-content: flex-start;
  overflow-y: auto;
  flex: 0 0 30%;
  /* Sticky search container */
  /* Scrollable content area */
  /* Generic card style */
  /* "What's happening" card specifics */
}
.sidebar.sidebar--right .right-sidebar__search-container {
  position: sticky;
  top: 0;
  background-color: black;
  padding: 2rem;
  padding-right: 2rem;
  padding-left: 2rem;
  z-index: 10;
  border-bottom: 1px solid #2f3336;
}
.sidebar.sidebar--right .right-sidebar__content {
  padding: 2rem;
  padding-right: 2rem;
  padding-left: 2rem;
  overflow-y: auto;
}
.sidebar.sidebar--right .right-sidebar__search {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border-radius: 9999px;
  border: 1px solid #555;
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
}
.sidebar.sidebar--right .card {
  background-color: #161819;
  border: 1px solid #2f3336;
  border-radius: 1.6rem;
  padding: 1.6rem;
  margin-bottom: 1.6rem;
  color: #fff;
  max-width: 100%;
  overflow: hidden;
}
.sidebar.sidebar--right .card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  word-wrap: break-word;
}
.sidebar.sidebar--right .card p {
  font-size: 1.4rem;
  color: #e7e9ea;
  line-height: 1.6;
  word-wrap: break-word;
}
.sidebar.sidebar--right .card--whats-happening h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.sidebar.sidebar--right .card--whats-happening .wh-item--featured {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.8rem;
}
.sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__img {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__content {
  flex: 1;
  min-width: 0;
}
.sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__title {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  line-height: 1.3;
  word-wrap: break-word;
}
.sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__subtitle {
  font-size: 1.2rem;
  word-wrap: break-word;
}
.sidebar.sidebar--right .card--whats-happening .wh-item__desc {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
  word-wrap: break-word;
}
.sidebar.sidebar--right .card--whats-happening .wh-item__promo {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  word-wrap: break-word;
}
.sidebar.sidebar--right .card--whats-happening .wh-item--trending {
  margin-bottom: 1rem;
}
.sidebar.sidebar--right .card--whats-happening .wh-item--trending p {
  font-size: 1.3rem;
  margin: 0.3rem 0;
  line-height: 1.5;
  word-wrap: break-word;
}
.sidebar.sidebar--right .card--whats-happening .show-more {
  font-size: 1.3rem;
  margin-top: 0.6rem;
  display: inline-block;
}
.sidebar.sidebar--right .card--subscribe .premium-btn {
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  border-radius: 9999px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1709px) {
  .sidebar.sidebar--right {
    flex: 0 0 25%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .sidebar.sidebar--right .right-sidebar__search-container,
  .sidebar.sidebar--right .right-sidebar__content {
    padding: 1.5rem;
  }
  .sidebar.sidebar--right .card {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .sidebar.sidebar--right .card h3 {
    font-size: 1.8rem;
  }
  .sidebar.sidebar--right .card p {
    font-size: 1.3rem;
  }
  .sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__img {
    width: 75px;
    height: 75px;
  }
  .sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__title {
    font-size: 1.3rem;
  }
  .sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 900px) {
  .sidebar.sidebar--right {
    height: calc(100vh - 6rem);
    flex: 0 0 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    display: none;
    overflow-y: auto;
    background-color: black;
    padding: 1rem;
  }
  .sidebar.sidebar--right.active {
    display: block;
  }
  .sidebar.sidebar--right .right-sidebar__search-container,
  .sidebar.sidebar--right .right-sidebar__content {
    padding: 1rem;
  }
  .sidebar.sidebar--right .card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .sidebar.sidebar--right .card h3 {
    font-size: 1.6rem;
  }
  .sidebar.sidebar--right .card p {
    font-size: 1.2rem;
  }
  .sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__img {
    width: 65px;
    height: 65px;
  }
  .sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__title {
    font-size: 1.1rem;
  }
  .sidebar.sidebar--right .card--whats-happening .wh-item--featured .wh-item__subtitle {
    font-size: 0.9rem;
  }
}

.sidebar__logo-img {
  width: 80px;
  height: auto;
  display: block;
  padding-bottom: 10px;
  padding-top: 10px;
}
@media (max-width: 1885px) {
  .sidebar__logo-img {
    width: 55px;
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (max-width: 1709px) {
  .sidebar__logo-img {
    width: 50px;
    padding-bottom: 6px;
    padding-top: 6px;
  }
}
@media (max-width: 1302px) {
  .sidebar__logo-img {
    width: 45px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
@media (max-width: 900px) {
  .sidebar__logo-img {
    width: 40px;
    padding-bottom: 4px;
    padding-top: 4px;
  }
}

/* MAIN CONTENT (Center Column) */
/* 
  1) MAIN CONTENT: 
  - Only this container scrolls vertically
  - We use flex: 1 so it expands in the parent .content layout
*/
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* Let only this container scroll */
  overflow-y: auto;
  height: 100%;
  background-color: black;
  color: #fff;
  /* If your parent container has `overflow: hidden;`, 
     this ensures .main-content can still scroll. */
  min-height: 0;
}

/* 2) STICKY TOP NAV (tabs) */
.main-nav {
  position: sticky;
  top: 0;
  background-color: black;
  z-index: 1000;
  border-bottom: 1px solid #2f3336;
  padding: 1rem;
}

.main-nav__tabs {
  display: flex;
  justify-content: space-around;
}

.main-nav__tab {
  flex: 1;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #71767b;
  padding: 1rem 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.main-nav__tab:hover {
  color: #e7e9ea;
}
.main-nav__tab.main-nav__tab--active {
  color: #fff;
  border-bottom-color: #1d9bf0;
}

/* 3) COMPOSE BOX */
.compose {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #2f3336;
  padding: 1rem 1.6rem;
}

/* A wrapper so the avatar sits next to the textarea */
.compose__wrapper {
  display: flex;
  align-items: flex-start;
  gap: rem;
  margin-bottom: 1rem;
}

/* The user's profile avatar in the compose box */
.compose__avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}

.compose__textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  resize: none;
  outline: none;
  padding-left: 1rem;
}

.compose__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 6rem;
}

.compose__icons i {
  color: #1d9bf0;
  margin-right: 2rem;
  cursor: pointer;
  font-size: 1.5rem;
}
.compose__icons i:hover {
  opacity: 0.8;
}

.compose__post-btn {
  background-color: rgb(173, 174, 175);
  color: black;
  border: none;
  border-radius: 9999px;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  cursor: pointer;
  margin-right: 0.5rem;
}
.compose__post-btn:hover {
  background-color: #1a8cd8;
}

/* 4) "Show 175 posts" link */
.show-posts-link {
  display: block;
  padding: 1.5rem 1.6rem;
  text-align: center;
  color: #1d9bf0;
  text-decoration: none;
  font-size: 1.75rem;
  border-bottom: 1px solid #2f3336;
}
.show-posts-link:hover {
  background-color: rgb(16, 16, 16);
}

/* 5) FEED: where the posts (feed items) go */
/* Container for the entire feed */
.feed {
  padding: 1rem 1.6rem;
  /* If you want snap scrolling, uncomment:
     scroll-snap-type: y mandatory;
  */
}

/* Each post container */
.feed-item {
  display: flex; /* Avatar on the left, content on the right */
  border-bottom: 1px solid #2f3336;
  padding: 1.6rem 0;
  /* For scroll snapping:
     scroll-snap-align: start;
  */
  /* Left side: avatar */
  /* Right side: content wrapper */
  /* Header: username, handle, timestamp */
  /* Body: post text + optional image */
  /* Footer: icons for comment, retweet, like, view, etc. */
}
@media (max-width: 703px) {
  .feed-item {
    padding-left: 10rem;
  }
}
.feed-item__avatar {
  margin-right: 1.2rem;
}
.feed-item__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 9999px; /* fully rounded */
  -o-object-fit: cover;
     object-fit: cover;
  margin: 1.5rem;
}
@media (max-width: 600px) {
  .feed-item__avatar img {
    width: 40px;
    height: 40px;
  }
}
.feed-item__content {
  flex: 1; /* so it fills the remaining space */
  display: flex;
  flex-direction: column;
  max-width: 65rem;
}
.feed-item__header {
  display: flex;
  align-items: center;
  gap: 0.8rem; /* space between name & handle */
  margin-bottom: 0.5rem;
}
.feed-item__header strong {
  font-size: 1.4rem;
  color: #fff;
}
.feed-item__header span {
  font-size: 1.2rem;
  color: #71767b; /* subdued gray */
}
.feed-item__body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #e7e9ea; /* subdued text color */
  margin-bottom: 1rem;
}
.feed-item__body p {
  margin-bottom: 0.5rem;
}
.feed-item__body p a {
  color: #1a8cd8;
}
.feed-item__body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  margin-top: 0.8rem;
}
@media (max-width: 703px) {
  .feed-item__body {
    font-size: 1.3rem;
  }
  .feed-item__body p {
    padding-right: 15rem;
  }
  .feed-item__body img {
    width: 100%;
    height: 250px;
  }
}
.feed-item__footer {
  display: flex;
  justify-content: space-between; /* spread icons across the footer */
  max-width: 25rem; /* optional: limit how far they spread */
  color: #71767b; /* subdued gray for icons/text */
  /* Each icon + count pair */
}
.feed-item__footer-icon {
  display: flex;
  align-items: center;
  gap: 0.4rem; /* space between icon and count */
  cursor: pointer;
}
.feed-item__footer-icon i {
  font-size: 1.6rem; /* icon size */
}
.feed-item__footer-icon span {
  font-size: 1.2rem;
}
.feed-item__footer-icon:hover {
  color: #fff; /* highlight on hover */
}

@media (max-width: 900px) {
  .content {
    flex-direction: column;
  }
  .sidebar.sidebar--left {
    order: 2; /* Moves it after the main content */
    width: 100%;
    flex: 0 0 6rem; /* Set a fixed height for the bottom nav (adjust as needed) */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
    box-shadow: 0 -6px 12px rgba(37, 36, 36, 0.3);
  }
  .sidebar.sidebar--left .sidebar__top {
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .sidebar.sidebar--left .side-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }
  .sidebar.sidebar--left .side-nav__item {
    margin: 0;
  }
  .sidebar.sidebar--left .side-nav__link {
    padding: 1rem;
  }
  .sidebar__logo,
  .sidebar.sidebar--left span,
  .sidebar.sidebar--left button,
  .sidebar.sidebar--left .sidebar__profile,
  .sidebar.sidebar--left .sidebar__bottom {
    display: none;
  }
  .sidebar.sidebar--left .side-nav__item:nth-child(6),
  .sidebar.sidebar--left .side-nav__item:nth-child(7),
  .sidebar.sidebar--left .side-nav__item:nth-child(8),
  .sidebar.sidebar--left .side-nav__item:nth-child(9),
  .sidebar.sidebar--left .side-nav__item:nth-child(10) {
    display: none !important;
  }
  .feed-item {
    padding: 3.6rem 10rem;
  }
}
@media (max-width: 700px) {
  .feed-item {
    padding: 3.6rem 5rem;
  }
  .feed-item__body p {
    padding-right: 0;
  }
  .feed-item__body img {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */