.fc-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
  width: 100%;
  height: fit-content;
}

.fc-blog-sidebar {
  font-size: 13px;
}

.fc-blog-sidebar h3 {
  font-size: 16px;
}

@media (min-width: 980px) {
  .fc-blog-sidebar {
    max-width: 360px;
  }
}

/** Recent Articles **/
.fc-recently_articles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px auto 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.fc-recently_articles a {
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  width: 100%;
  transition: .2s opacity ease-in-out;
}

.fc-recently_articles a:hover {
  opacity: .6;
}

.fc-recently_articles picture {
  width: 100%;
}

.fc-recently_articles img {
  width: 120px;
}

.fc-recently_articles div {
  display: flex;
  align-items: center;
}

.fc-recently_articles h4 {
  margin: 20px 10px;
  color: #282828;
  font-size: 13px;
}

@media (min-width: 980px) {
  .fc-recently_articles {
    max-width: 360px;
  }
}

/** Search Form **/
.fc-search_form {
  display: flex;
  gap: 10px;
}

.fc-search_form input {
  flex-grow: 1;
  border-radius: 20px 0 0 20px;
  border: 1px solid #282828;
  padding: 5px 20px;
  outline: none;
}

.fc-search_form button {
  border: 1px solid #282828;
  border-radius: 0 20px 20px 0;
  padding: 5px 20px;
  background: #fff;
  color: #282828;
  transition: .2s all ease-in-out;
}

.fc-search_form button:hover {
  background: #DD3A76;
  border-color: #DD3A76;
  color: #fff;
}

@media (min-width: 980px) {
  .fc-search_form {
    max-width: 360px;
  }
}

/** Category List **/
.fc-category_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px auto 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.fc-category_list a {
  display: block;
  border-left: 1px solid #DD3A76;
  padding: 10px;
  width: 100%;
  background: #fff;
  text-decoration: none;
  color: #282828;
  transition: .2s opacity ease-in-out;
}

.fc-category_list a:hover {
  opacity: .6;
}

@media (min-width: 980px) {
  .fc-category_list {
    max-width: 360px;
  }
}
