.insights-section__filters-wrapper {
  display: flex;
    flex-wrap: wrap;
align-items: center;
        background: #F3F3F3;
    gap: 16px;
    padding: 6px 6px 6px 16px;
    margin-bottom: 32px;
        width: fit-content;
}
@media(max-width:1024px){
    .insights-section__filters-wrapper {
        padding: 6px 6px 6px 6px;   
    }
}
.insights-section__filters-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    gap:8px;
    margin-right: 10px;
}
.insights-section__filters-icon p {
    margin-bottom: 0px;
    font-family: 'Inter Tight' !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;

}
.insights-section__filters-icon img {
    width: 16px;
    height: 16px;
}

.insights-section__filters {
      display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.insights-filter {
  padding: 12px 20px 12px 20px;
    background: #FFFFFFCC;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all .2s ease;
    color: #131313;
}
@media(max-width:1024px){
    .insights-filter {
       padding: 10px 16px;
    }
}
.insights-filter:hover {
      background-color: #4A35C0;
    color: #FFFFFF;
    border-color: #4A35C0;
        border-radius: 0px;
}

.insights-filter.is-active {
    background-color: #4A35C0;
    color: #FFFFFF;
    border-color: #4A35C0;
        border-radius: 0px;
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}
.insights-card {
    display: flex;
    flex-direction: column;
    background: #f4f6ff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}

.insights-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.insights-card__image {
    position: relative;
    overflow: hidden;
}

.insights-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.insights-card:hover .insights-card__image img {
    transform: scale(1.03);
    transition: transform .4s ease;
}
.insights-card__content {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insights-card__title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
}
.insights-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: 13px;
    color: #666;
}

.insights-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.insights-card__tag {
    padding: 4px 8px;
    background: #fff;
    border-radius: 6px;
    font-weight: 500;
    color: #333;
}

.insights-card__date {
    white-space: nowrap;
}
.insights-load-button {
    display: flex;
    padding-top: 40px;
    justify-content: center;
}
.insights-load-more {
background-color: #241C63;
    font-family: "Inter", Inter, Sans-serif;
    font-size: 16px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    border-radius: 50px 50px 50px 50px;
    padding: 14px 32px 14px 32px;
    transition: background .2s ease, transform .2s ease;
}

.insights-load-more:hover {
background-color: #FFFFFF00;
    color: #241C63;
    border-color: #241C63;
}
