.wgm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.wgm-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    text-align: center;

}

.wgm-card img {
    max-width: 100%;
    border-radius: 10px;
}


.wgm-card strong {
    display: block;
    margin-bottom: 15px;
    min-height: 30px;
}

.wgm-card h3,
.wgm-card h3 a {
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 20px !important;
    line-height: 1.3;
    min-height: 50px !important;
}

.wgm-btn {
    display: block !important;
    margin-top: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    width: 100% !important;
    max-width: 220px;

    padding: 12px 15px !important;

    background: #d4a373 !important;
    color: white !important;

    border: none !important;
    border-radius: 5px !important;

    cursor: pointer;
}

.wgm-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 360px;
    background: #ffffff;
    color: #222;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    z-index: 999999;
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s ease;
    line-height: 1.5;
}

.wgm-toast.show {
    opacity: 1;
    transform: translateY(0);
}