﻿.gd-channel-wrap {
    margin: 10px 20px;
}

.gd-channel-head {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    /* border: #fff dashed  1px; */
    margin: 20px 0px;

}

.gd-channel-head p {
    font-size: 1rem;
    color: #000;
    margin: 0px;
    padding: 0px 10px;
    font-weight: bold;
    
}

.gd-channel-head img {
    width: 20px;
    height: 20px;
    display: block;
}

.gd-tile-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
}

.gd-tile-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}


.gd-tile-meta p {
    color: #000;
    margin: 0px;
    font-size: 0.8rem;
}

.recommend {
    margin: 10px 1rem;
}

.recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 0.5rem;
    /* Gap between items */
}

.gd-suggest{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

