body {
  background-color: lightgrey;
}

.card__wrapper {
  overflow: hidden;
  height: 220px;
  width: 100%;
  position: relative;
  border-radius: 12px;
  transition: all 0.2s linear;
}
.card__wrapper:hover .card__wrapper__bg_image {
  transform: scale(1.05);
}
.card__wrapper .card__wrapper__bg_image {
  transition: all 0.2s linear;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px);
  z-index: 1;
}
.card__wrapper .card__content {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(0,0,0,0.5);
}
.card__wrapper .card__content .card__content__header .card__content__header__component {
  color: white;
  font-size: 12px;
  border-radius: 20px;
  border: 1px solid white;
  padding: 4px 8px;
}
.card__wrapper .card__content .card__content__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card__wrapper .card__content .card__content__body .body__title {
  font-weight: bold;
  color: white;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.card__wrapper .card__content .card__content__body .body__sub_title {
  color: white;
  font-size: 12px;
}
.card__wrapper .card__content .card__content__footer {
  width: 100%;
  display: flex;
  justify-content: end;
  padding: 4px 8px;
}
.card__wrapper .card__content .card__content__footer a {
  text-decoration: none;
  color: white;
  cursor: pointer;
  font-size: 12px;
}

.custom__tab {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.custom__tab li a {
  transition: all 0.2s linear;
  text-decoration: none;
  color: black;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.custom__tab li a:hover {
  color: orange;
  border-bottom: 2px solid orange;
}
.custom__tab li a:focus {
  color: orange;
  border-bottom: 2px solid orange;
}

.create__content__wrapper {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
}
.create__content__wrapper .create__button {
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: orange;
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 16px;
}

.news__info__wrapper .news__info__content .news__info__content__header .title {
  display: flex;
  gap: 12px;
  align-items: center;
  align-content: center;
}
.news__info__wrapper .news__info__content .news__info__content__header .title .title__tag {
  padding: 0 12px;
  font-size: 12px;
  color: white;
  background-color: orange;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.news__info__wrapper .news__info__content .news__info__content__header .title .title__text {
  font-weight: bold;
  font-size: 20px;
  padding: 0;
  margin: 0;
}
.news__info__wrapper .news__info__content .news__info__content__header .image__info {
  width: 100%;
  height: 100%;
  max-height: 500px;
}
.news__info__wrapper .news__info__content .news__info__content__header .image__info img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.news__info__wrapper .news__info__content .news__info__content__header .sub__info {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.news__info__wrapper .news__info__content .news__info__content__header .sub__info .view,
.news__info__wrapper .news__info__content .news__info__content__header .sub__info .date {
  font-size: 14px;
  color: grey;
}
.news__info__wrapper .news__info__content .news__info__content__header .sub__content {
  background-color: white;
  border-radius: 8px;
}
.news__info__wrapper .news__info__content .news__info__content__header .sub__content .sub__content__item {
  padding: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.news__info__wrapper .news__info__content .news__info__content__header .sub__content .sub__content__item .title {
  font-size: 16px;
  font-weight: 600;
}
.news__info__wrapper .news__info__content .news__info__content__header .sub__content .sub__content__item .sub__title {
  font-size: 14px;
  font-weight: 600;
  color: green;
}
.news__info__wrapper .news__info__content .news__info__content__header .sub__content .sub__content__item .sub__tag {
  font-size: 12px;
  padding: 0 12px;
  background-color: green;
  color: white;
  border-radius: 20px;
}/*# sourceMappingURL=style.css.map */