#promoted-game {
    display: flex;
    flex-direction: column;
    background: #384f7b;
    margin: 20px 0;
}
#promo-image {
    height: 100%;
    object-fit: cover;
    display: flex;
}
#promo-cta {
    display: flex;
    background: #fff2;
    padding: 16px;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.promo-btn {
    border-radius: 32px;
    justify-content: center;
    gap: 16px;
    align-items: center;
    display: flex;
    text-transform: uppercase;
    flex: 0 0 33%;
}
.platform-btn {
    background: #072b80;
    &:hover {
        background: #0b45ce;
    }
}
.promo-icon-container {
    border: none;
    padding: 0;
}
.promo-icon-container > svg {
    width: 24px;
    height: 24px;
}
@media (max-width: 767px) and (min-width: 0) {
    .promo-btn {
        flex: 100%;
    }
}
@media (max-width: 320px) and (min-width: 0) {
    .promo-btn {
        flex: 100%;
    }
}
.post-feed {
    margin: auto;
}
.post-feed-title {
    margin: 0px;
    border-bottom: 1px solid #fff;
    font-size: 18px;
}
.post-feed-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0;
}
.post-feed-item {
    position: relative;
}
.post-feed-item-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.post-feed-item-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}
.post-feed-item-text {
    margin: 8px 0px;
}
.post-feed-item-time {
    font-size: 12px;
    color: #ddd;
}
.post-feed-item-link {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
.post-feed-item-link:hover {
    background: #fff2;
}