
.gmov-section {
    background: #f9fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}
.gmov-header {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
}
.gmov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gmov-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gmov-title {
    color: #1a73e8;
    font-size: 18px;
    margin-bottom: 10px;
}
.gmov-thumb {
    margin-bottom: 10px;
}
.gmov-thumb iframe {
    width: 100%;
    height: 160px;
    border-radius: 8px;
}
.gmov-thumb img {
    max-width: 100%;
    border-radius: 8px;
}
.gmov-placeholder {
    font-size: 40px;
    padding: 40px 0;
    color: #888;
}
.gmov-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}
.gmov-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #1a73e8;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}
.gmov-btn:hover {
    background: #0c5cc0;
}
