.dsp-container {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.dsp-author-bio {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.dsp-products {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dsp-product {
    display: flex;
    background: #fff;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    gap: 20px;
    flex-wrap: wrap;
}

.dsp-product-left {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.dsp-product-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dsp-product-content {
    flex: 1;
    min-width: 0;
}

.dsp-product h3 {
    margin: 0 0 5px;
}

.dsp-product p {
    margin: 0 0 10px;
}

.dsp-product small {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

@media (max-width: 768px) {
    .dsp-product {
        flex-direction: column;
    }
    .dsp-product-left {
        width: 100%;
        align-items: center;
    }
    .dsp-product-content {
        width: 100%;
    }
}
