.watch-cards-grid-d3581514 {
    display: grid;
    gap: 20px;
}
.watch-card-d3581514 {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.watch-card-img-d3581514 {
    width: 100%;
    margin-bottom: 15px;
}
.watch-card-img-d3581514 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.watch-card-content-d3581514 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
}
.watch-card-title-d3581514 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #000;
}
.watch-card-btn-d3581514 {
    display: block;
    text-align: center;
    border: 1px solid #000;
    padding: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.watch-card-btn-d3581514:hover {
    background: #000;
    color: #fff;
}
@media (max-width: 768px) {
    .watch-cards-grid-d3581514 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .watch-cards-grid-d3581514 {
        grid-template-columns: 1fr !important;
    }
}