.necto-grid-container-b26fea3a {
    display: grid;
    /* Grid columns are handled by Elementor responsive controls */
    gap: 30px;
    margin: 0 auto;
}

.necto-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.necto-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.necto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.necto-card-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.necto-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.necto-card:hover .necto-card-image {
    transform: scale(1.05);
}

.necto-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #6B46C1;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.necto-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Scrollbar styles for scrollable content */
.necto-card-content.scrollable::-webkit-scrollbar {
    width: 6px;
}

.necto-card-content.scrollable::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.necto-card-content.scrollable::-webkit-scrollbar-thumb {
    background: rgba(107, 70, 193, 0.3);
    border-radius: 10px;
}

.necto-card-content.scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 70, 193, 0.6);
}

.necto-card-date {
    font-size: 13px;
    color: #8892a0;
    margin-bottom: 10px;
    font-weight: 500;
}

.necto-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
    color: #1A2b4C;
}

.necto-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.necto-read-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: #6B46C1;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
    padding-top: 15px;
}

.necto-card:hover .necto-read-more {
    gap: 10px;
}
