.novel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.novel-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee8f8;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(62, 35, 92, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.novel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(62, 35, 92, 0.14);
}

.novel-card-image {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0eafa;
}

.novel-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.novel-card-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #6d3ea5, #b979d8);
}

.novel-card-body {
    padding: 18px;
}

.novel-card-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.7;
}

.novel-card-title a {
    color: #30203e;
    text-decoration: none;
}

.novel-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #8b7b98;
    font-size: 13px;
}

.novel-card-excerpt {
    color: #675a71;
    font-size: 14px;
    line-height: 1.9;
}

.novel-card-more {
    display: inline-block;
    margin-top: 8px;
    color: #7545a7;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 992px) {
    .novel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .novel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .novel-card-body {
        padding: 13px;
    }

    .novel-card-title {
        font-size: 15px;
    }

    .novel-card-meta {
        display: block;
        line-height: 2;
    }
}
