.kc91-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.kc91-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.kc91-card:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.13);
    transform: translateY(-3px);
}

.kc91-image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.kc91-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.92);
    color: #2d3748;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.kc91-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.kc91-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.3;
}

.kc91-desc {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.kc91-meta {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kc91-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a5568;
}

.kc91-meta-icon {
    color: #6B9A76;
    font-size: 15px;
    line-height: 1;
}

.kc91-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.kc91-tag {
    background: #f7f7f7;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

.kc91-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.kc91-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kc91-price-label {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 500;
}

.kc91-price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #3B828C;
    line-height: 1.2;
}

.kc91-btn {
    display: inline-block;
    background-color: #6B9A76;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.kc91-btn:hover {
    opacity: 0.88;
    color: #ffffff;
    text-decoration: none;
}

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

@media (max-width: 640px) {
    .kc91-grid {
        grid-template-columns: 1fr;
    }
}
