/* Social Feed Frontend */
.nill-social-feed-wrapper {
    width: 100%;
    max-width: unset;
}

.nill-social-feed-wrapper .credits {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-bottom: 1em;
}

.nill-social-feed {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-gap: max(16px, 1.25vw);
    background: var(--nsf-feed-bg-color);
}

.nill-social-feed.col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nill-social-feed.col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nill-social-feed.col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nill-social-feed.col-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nill-social-feed.col-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.nill-social-feed.col-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.nill-social-feed.col-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.nill-social-feed.col-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.nill-social-feed .social-feed-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--nsf-post-bg-color);
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.nill-social-feed .social-feed-item.post-hidden {
    opacity: .5;
}

.nill-social-feed .social-feed-item .media-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.nill-social-feed .social-feed-item .media-album,
.nill-social-feed .social-feed-item .media-container .slick-slide {
    width: 100%;
}

.nill-social-feed .social-feed-item .post-content {
    white-space: break-spaces;
    margin-bottom: 1em;
    color: var(--nsf-text-color);
}

.nill-social-feed .social-feed-item .toggle-hidden {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #ccc;
    color: #000;
    cursor: pointer;
    border: 0 none;
}

.nill-social-feed .social-feed-item .post-date {
    display: block;
    color: var(--nsf-link-color);
    font-size: 0.9em;
    margin-top: auto;
}

.nill-social-feed .social-feed-item a.post-date {
    transition: .3s ease all;
}

.nill-social-feed .social-feed-item a.post-date:hover {
    color: var(--nsf-hover-color);
    transition: .3s ease all;
}

.nill-social-feed-wrapper .nsf-load-more {
    margin: 1em auto 0;
	/* display: block;
    font-size: 1em;
    font-weight: 500;
    margin: 1em auto 0;
    border: 2px solid #333;
    padding: .5em 1em;
    background: transparent;
    outline: none;
    cursor: pointer; */
}