ul.list{
padding-left:0px!important;
}
article.card {
    background-color:#f9f9f9;
    border-radius:12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out;
}

article.card:hover {
    transform: scale(1.02);
}
.card .image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius:12px;
}

.card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

article.card .image .bookmark button{
    position: absolute;
    top: .4rem;
    right: .4rem;
    z-index: 10;
    color: var(--color-primary) !important;
    background-color: var(--bg-primary);
    opacity: 0.5;
    transition: opacity 0.2s;
}

article.card .image .bookmark button:hover {
    opacity: 1;
}

article.card .image .bookmark.saved{
    color: var(--color-primary) !important;
    opacity: 1 !important;
}

article.card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

article.card .content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

article.card .meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-primary);
}

article.card .category {
    font-weight: 500;
    color: var(--text-primary);
}

article.card .title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

article.card .excerpt {
    font-size: 0.95rem;
    color: var(--text-primary);
}

article.card .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.4rem;
}

article.card .author {
    font-size: 0.85rem;
    color: var(--text-primary);
}

/* Horizontal variant */

article.card.horizontal {
    flex-direction: row;
    width: 100%;
}

article.card.horizontal .image {
    width: 240px;
    height: auto;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
}

article.card.horizontal .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

article.card.horizontal .content {
    padding: var(--space-l);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

article.card.horizontal .title {
    font-size: 1.3rem;
}


@media screen and (max-width: 960px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 900px) {

    .responsive_article {
        flex-direction: column;
    }
}
/* === progress-wrap scss (index 01) === */
.progress-wrap {
  position: fixed;
  right: 80px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 9999;
  opacity: 0;
  background-color: var(--primary);
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 300ms linear;
}
@media only screen and (max-width: 767px) {
  .progress-wrap {
    right: 20px;
    bottom: 30px;
  }
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color:#f6757e;
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font: var(--fa-font-solid);
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color:#fff;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
  background-color:#f6757e;
}
.dark .progress-wrap::after {
  color: var(--black);
}
.progress-wrap_2::after {
  background-color: var(--primary2);
}
.progress-wrap_3::after {
  background-color: var(--primary3);
}
.progress-wrap_4::after {
  background-color: var(--primary4);
}

.progress-wrap svg path {
  fill: var(--black-6);
}

.progress-wrap svg.progress-circle path {
  fill: #fff;
  stroke: transparent;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}
.sidebar_search form {
    position: relative; }
.sidebar_search form input {
    background: #e1eaf4;
    border: none;
    outline: none;
    border-radius: 0;
    padding: 18px 95px 18px 25px;
    font-weight: 500;
    min-width: 100%; 
}
  .sidebar_search form input::placeholder {
    color: #626262; 
}
  .sidebar_search form button {
    position: absolute;
    border: none;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background:#f6757e;
    color: #fff;
    font-size: 20px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%); }
  .sidebar_search form button:hover {
    background: #000; }
  .sidebar_services {
    background: #fff;
    padding: 35px;
    margin-top: 30px;
}
.tag-item {
    background: #f6757e !important;
    color: #fff !important;
    font-size:11px!important;
    border-color:#f6757e !important;
    transform: translateY(-2px);
}
.tag-item:hover {
    background: #222!important;
    color: #fff !important;
    font-size:11px;
    border-color: #222 !important;
    transform: translateY(-2px);
}
.enonewsticker{
  background-color:#F2F2F2;
  display:block;
}
.titleenonewsticker{
  height:100%;
  align-items: center;
  justify-content: center;
}
.itemsenonewsticker{
  background-color:#fff
}
.itemsenonewsticker p{
  margin-bottom:0;position:relative
}
.navenonewsticker .carousel-control-prev,.navenonewsticker .carousel-control-next{
  color:#000;
  position:relative;
  flex-grow:2;
}
.navenonewsticker .carousel-control-next .carousel-control-next-icon,
.navenonewsticker .carousel-control-prev 
.carousel-control-prev-icon{
  display:block;
  height: 100%;
  width:100%;
  background-size: 60% 60%;
}

.navenonewsticker .carousel-control-next, .navenonewsticker .carousel-control-prev {
  width: auto;
}
.topicenonewsticker{
  background-color:#424867;
  color:#fff;
  font-size:70%;
  padding:5px 7px;
  text-transform:uppercase
}
