.psc-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.psc-card {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    background: #fff;
    color: inherit;
}

.psc-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.psc-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 4px;
}

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

.psc-title {
    color: #003366;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 767px) {
    .psc-grid {
        grid-template-columns: 1fr !important;
    }
}