.ymal-widget {
    margin-top: 40px;
}

.ymal-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.ymal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
}

.ymal-image {
    background: #f0f2f5;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ymal-item {
    text-decoration: none;
    color: #111;
    border: 1px solid #e3e8ee;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease-in-out;
}

.ymal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ymal-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.ymal-text {
    padding: 10px;
    text-align: center;
}

.ymal-item-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}