@import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap");
.announst .container {
  padding: 30px 52px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .announst .container {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .announst .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .announst .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.announst-item {
  background-size: contain;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 350px;
  padding: 1rem;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.announst-item img {
  display: block;
  width: 100%;
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.announst-item .body {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.announst-item .body .text {
  display: flex;
  flex-direction: column;
}
.announst-item .body .text .date {
  color: #5d809b;
  font-weight: normal;
  font-size: 13px;
}
.announst-item .body .text .discreption {
  color: #5d809b;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* Qatorlar sonini belgilang */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announst-item .body .btn {
  display: flex;
  justify-content: end;
}
.announst-item .body .btn a {
  right: 0rem;
  bottom: 0rem;
  padding: 0.5rem 2rem;
  background: none;
  border: 1px solid #627e94;
  color: #5d809b;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}
.announst-item .body .btn a:hover {
  background-color: rgba(98, 126, 148, 0.71);
  color: #ffffff;
}
.announst-item .body .btn a:active {
  background: local;
  color: #5d809b;
}/*# sourceMappingURL=style.css.map */