#instafeed {
	width: 100%;
	display: grid;

	.post {
		overflow: hidden;

		a {
			display: flex;
			height: 100%;
			position: relative;

			img {
				width: 100%;
				height: unset;
				object-fit: cover;
			}

			/* Pelicula */
			&::before {
				content: '';
				display: block;
				width: 100%;
				height: 100%;
				position: absolute;
				top: 0;
				left: 0;
				opacity: 0;
				transition: all 0.2s ease;
				background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)) repeat;
			}
			/* Icone */
			&::after {
				content: '';
				display: block;
				width: 40px;
				height: 40px;
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				opacity: 0;
				transition: all 0.2s ease;
				background: url(ico-instafeed.webp) no-repeat center center;
				background-size: 40px 40px;
			}

			&:hover {
				/* Pelicula */
				&::before {
					opacity: 1;
				}
				/* Icone */
				&::after {
					opacity: 1;
					width: 47px;
					height: 47px;
					background-size: 47px 47px;
				}
			}
		}
	}
}
