.viewer-title {
    font-size: 42px;
    text-align: center;
    margin-top: 120px;
    color: white;
}

.viewer-grid {
    width: 90%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 40px;
}

.viewer-card {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 22px rgba(0,0,0,0.35);
    transition: 0.25s ease;
    position: relative;
}

.viewer-card:hover {
    transform: scale(1.03);
}

.viewer-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.viewer-info {
    padding: 20px;
    color: white;
}

.viewer-title-text {
    font-size: 22px;
    font-weight: 600;
}

.viewer-author {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 6px;
}

.viewer-footer {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.viewer-price {
    padding: 7px 16px;
    border-radius: 10px;
    background: #2361d4;
    font-weight: 600;
}
