.channel-grid{ display: grid; gap: 1em; grid-template-columns: repeat(auto-fill, minmax(150px, 1.5fr)); justify-content: space-evenly; padding: 1em; } .channel-card{ display: flex; max-width: 200px; background-color: lightgray; border-radius: 5px; } .channel-card:hover{ box-shadow: black 0 0 5px -1px; } .channel-link{ display: inline-block; padding: 0.5em; text-decoration: none; color: black; width: 100%; overflow: hidden; text-overflow: ellipsis; } .channel-icon-container{ position: relative; } .channel-icon{ border-radius: 50%; width: 100%; } .channel-title{ overflow: hidden; max-width: 200px; height: 3rem; font-size: 1.1rem; text-align: center; padding-bottom: 0.5em; display: block; }