<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">a {
    border-bottom: 0;
}
.analytics_redesign {
    width: 100%;
    max-width: 1392px;
    margin: 0 auto;
    padding: 50px 0;
}

.analytics_redesign__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 30px 60px 30px;
}

.analytics_redesign__header h2 {
    font-weight: 500;
    font-size: 36px;
    margin: 0;
}

.analytics_redesign__more {
    color: #ee1c25;
    font-weight: 500;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-style: solid;
}

.analytics_redesign__grid {
    display: flex;
    justify-content: center;
    /* missing semicolon was here */
    flex-wrap: wrap;
    gap: 36px;
}

.analytics_redesign__item {
    background: #2a2a2a;
    border: 1px solid #FFFFFF;
    padding: 10px;
    width: 100%;
    max-width: 440px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analytics_redesign__imgwrap {
    position: relative;
    display: block;
    width: 100%;
    height: 257px;
    padding: 0;
    overflow: hidden;
}


.analytics_redesign__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.analytics_redesign__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.analytics_redesign_text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.analytics_redesign__title {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.analytics_redesign__desc {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.analytics_redesign__title,
.analytics_redesign__desc {
    position: static;
    text-align: start;
    line-height: 1.3;
}


.analytics_redesign__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.analytics_redesign__author {
    display: flex;
    align-items: center;
    text-align: start;
    gap: 17px;
}

.analytics_redesign__author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.analytics_redesign__author-name {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px;
    color: #fff;
}

.analytics_redesign__date {
    font-weight: 400;
    font-size: 12px;
    color: #acacac;
}

.analytics_redesign__views {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #cdcdcd;
}
.analytics_redesign__views .icon-eye {
    width: 16px;
    height: 16px;
    stroke: #cdcdcd;
    fill: none;
  }
.analytics_redesign__btn {
    display: block;
    text-align: center;
    background: #CC282E;
    color: #fff;
    padding: 16px 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.analytics_redesign__btn:hover {
    background: #b12126;
}

.analytics_redesign__imgwrap:hover .analytics_redesign__img {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .analytics_redesign__grid {
      justify-content: center;
    }
    .analytics_redesign__item {
      max-width: 48%;
    }
  }
  
  @media (max-width: 768px) {
    .analytics_redesign__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin: 0 20px 40px;
    }
  
    .analytics_redesign__header h2 {
      font-size: 28px;
    }
  
    .analytics_redesign__item {
      max-width: 100%;
    }
  
    .analytics_redesign__btn {
      font-size: 20px;
      padding: 10px 0;
    }
  
    .analytics_redesign__views {
      font-size: 13px;
    }
  
    .analytics_redesign__author-name {
      font-size: 14px;
    }
  
    .analytics_redesign__date {
      font-size: 11px;
    }
  
    .analytics_redesign__title,
    .analytics_redesign__desc {
      font-size: 14px;
    }
  
    .analytics_redesign__grid {
      gap: 20px;
      padding: 0 10px;
    }
  
    .analytics_redesign {
      padding: 30px 0;
    }
  }
  </pre></body></html>