.pr-d3febe95-wrapper {
    width: 100%;
}
.pr-d3febe95-tagline {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}
.pr-d3febe95-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}
.pr-d3febe95-row::-webkit-scrollbar {
    height: 6px;
}
.pr-d3febe95-row::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.pr-d3febe95-item {
    flex: 0 0 calc(100% / 6 - 15px);
    min-width: 150px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.pr-d3febe95-item:hover {
    transform: translateY(-5px);
}
.pr-d3febe95-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s;
}
.pr-d3febe95-item:hover .pr-d3febe95-overlay {
    background: rgba(0,0,0,0.6);
}
.pr-d3febe95-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}
@media (max-width: 1024px) {
    .pr-d3febe95-item {
        flex: 0 0 calc(100% / 3 - 15px);
    }
}
@media (max-width: 768px) {
    .pr-d3febe95-item {
        flex: 0 0 calc(100% / 2 - 15px);
    }
}