.ytpd-playlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ytpd-video {
    background-color: #fff;
    color: #333;
    width: 48%; /* Ajuste para mostrar dos columnas */
    margin-bottom: 20px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ytpd-video:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.ytpd-title {
    font-size: 22px;
    color: #d64532;
    margin-top: 0;
}

.ytpd-date {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.ytpd-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d99e6d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.ytpd-button:hover {
    background-color: #b5784f;
}

.ytpd-view-more {
    text-align: center;
    margin-top: 20px;
}

.ytpd-view-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E02B20;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.ytpd-view-more-button:hover {
    background-color: #b5241a;
}

@media (max-width: 768px) {
    .ytpd-video {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ytpd-video {
        width: 100%;
    }
}
