.c-banner {
  display: flex;
  width: 100%;
}
.c-banner__container {
  position: relative;
  width: 100%;
}
.c-banner__image {
  width: 100%;
  height: 28.125rem;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 900px) {
  .c-banner__image {
    height: 20rem;
  }
}
.c-banner__bone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: fit-content;
  height: fit-content;
  border-radius: 3.75rem;
  border: 0.75rem solid hsl(23, 100%, 98%);
  position: absolute;
}
@media (max-width: 900px) {
  .c-banner__bone {
    border-radius: 3.75rem;
    border: 0.375rem solid hsl(23, 100%, 98%);
  }
}
.c-banner__bone:first-child {
  background-color: hsl(23, 99%, 65%);
  align-self: flex-start;
  transform: translate(-35%, -50%);
  top: 0;
  left: 0;
}
.c-banner__bone:first-child svg * {
  stroke: #fff;
}
.c-banner__bone:last-child {
  background-color: hsl(32, 67%, 85%);
  align-self: flex-end;
  transform: translate(35%, 50%);
  bottom: 0;
  right: 0;
}
.c-banner__bone:last-child svg {
  stroke: hsl(0, 0%, 0%);
}
.c-banner__bone svg {
  height: 3rem;
  width: 3rem;
}
@media (max-width: 900px) {
  .c-banner__bone svg {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.c-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
  gap: 1rem;
  margin: 4rem 0;
}
@media (max-width: 900px) {
  .c-section {
    margin-top: 3rem;
    gap: 1.5rem;
  }
}
.c-section__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.c-section__subtitle {
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: hsl(0, 0%, 0%);
}
@media (max-width: 900px) {
  .c-section__subtitle {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}
.c-section__title {
  font-size: 3rem;
  color: hsl(23, 99%, 65%);
  line-height: 3rem;
}
@media (max-width: 900px) {
  .c-section__title {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.c-section__description {
  color: hsl(0, 0%, 53%);
  text-align: center;
  max-width: 40rem;
}
@media (max-width: 900px) {
  .c-section__description {
    font-size: 0.75rem;
    max-width: 100%;
  }
}
.c-section--small {
  margin: 0;
  margin-bottom: 2rem;
  gap: 0.5rem;
}
.c-section--small [class*=__title] {
  font-size: 2rem;
  line-height: 2rem;
  color: hsl(15, 51%, 39%);
}
@media (max-width: 900px) {
  .c-section--small [class*=__title] {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.c-section--small [class*=__subtitle] {
  font-size: 1rem;
  line-height: 1rem;
}
@media (max-width: 900px) {
  .c-section--small [class*=__subtitle] {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}

.posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .posts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.post {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: #fff;
  border-radius: 0.5rem;
  border: 0.0625rem solid hsl(32, 67%, 85%);
}
.post__thumbnail {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transition: all 120ms ease-in-out;
}
.post__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  gap: 0.5rem;
}
.post__title, .post__excerpt {
  text-decoration: none;
}
.post__title {
  color: hsl(0, 0%, 0%);
  font-size: 1.125rem;
  transition: all 120ms ease-in-out;
}
.post__excerpt {
  color: hsl(0, 0%, 53%);
  font-size: 0.75rem;
}
.post:hover, .post:focus {
  outline: none;
}
.post:hover [class$=__thumbnail], .post:focus [class$=__thumbnail] {
  filter: brightness(50%);
}
.post:hover [class$=__title], .post:focus [class$=__title] {
  color: hsl(23, 99%, 65%);
}

.c-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.c-pagination__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.c-pagination__item {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
  text-decoration: none;
  font-weight: 600;
  color: hsl(0, 0%, 53%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 120ms ease-in-out;
}
.c-pagination__item.active {
  background-color: hsl(23, 99%, 65%);
  color: #fff;
}
.c-pagination__item:hover, .c-pagination__item:focus {
  background-color: hsl(15, 51%, 39%);
  color: #fff;
}

.empty {
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
}

/*# sourceMappingURL=news.css.map */
