.sidebar-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 7rem;
  padding-left: 6rem;
}
.sidebar-layout_content {
  grid-column: 1/1;
}
.sidebar-layout_sidebar {
  grid-column: 2/2;
}

.sidebar-widget {
  position: sticky;
  top: 20%;
}

.sidebar-widget_title {
  border: 2px solid black;
  border-left: 0;
  border-right: 0;
  padding: 0.8rem 0;
  margin-bottom: 1rem;
}
.sidebar-widget_title h2 {
  font-weight: 500;
}

.sidebar-widget_article {
  display: flex;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.179);
}
.sidebar-widget_article:last-child {
  border: none;
}
.sidebar-widget_article-image {
  margin-right: 1.5rem;
}
.sidebar-widget_article-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
}
.sidebar-widget_article-category {
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 0.9rem;
}
.sidebar-widget_article-title {
  margin: 0.7rem 0;
  font-weight: 500;
  font-size: 1rem;
}
.sidebar-widget_article-title:hover {
  text-decoration: underline;
}
.sidebar-widget_article-author {
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}

.sidebar-banner {
  position: sticky;
  top: 20%;
}
.sidebar-banner img {
  width: 100%;
}

.read-more-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Releway", sans-serif;
  border: 1px solid black;
  border-left: none;
  border-right: none;
  padding: 1rem 0;
  margin: 2rem 0;
}
.read-more-widget_info {
  width: 70%;
}
.read-more-widget_name {
  font-size: 0.9rem !important;
}
.read-more-widget_title {
  font-size: 1.1rem;
  line-height: 1.5rem;
  margin: 0.7rem 0 0.5rem 0;
}
.read-more-widget_title a {
  color: black;
  text-decoration: none;
  border: none;
  font-weight: 500;
}
.read-more-widget_title a:hover {
  color: black;
  text-decoration: underline;
  border: none;
}
.read-more-widget p {
  text-transform: uppercase;
  font-size: 0.8rem !important;
  margin: 0;
  letter-spacing: 1px;
}
.read-more-widget_image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
}

.products-widget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  margin: 4rem 0;
}

.product-component {
  font-family: "Raleway", sans-serif;
}
.product-component_image {
  width: 100%;
  position: relative;
  padding-bottom: 133%;
  margin-bottom: 1rem;
}
.product-component_image img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.product-component_title {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}
.product-component_about {
  font-size: 0.8rem;
}
.product-component_btn {
  margin-top: 1.5rem;
}
.product-component .btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid black;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}
.product-component .btn:hover {
  background-color: black;
  color: #fff;
}
.product-component .btn p {
  text-transform: uppercase;
}

@media screen and (max-width: 992px) {
  .sidebar-layout {
    display: block;
    padding: 0 3rem;
  }
  .sidebar-layout_sidebar {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .sidebar-layout {
    padding: 0 0rem;
  }
  .products-widget {
    grid-template-columns: 1fr;
    grid-gap: 4rem;
  }
}