.nosotros-section {
	.member-list {
		display: grid;
    grid-template-columns: repeat(1, 1fr);
		gap: 1.25rem;

    @media (width >= 768px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media (width >= 992px) {
      grid-template-columns: repeat(4, 1fr);
    }

		.member-item {
      position: relative;
			border-radius: 1.5rem;
			height: 100%;
			min-height: 22.5rem;
			background-size: cover;
			background-position: center;
      overflow: hidden;

			.content {
				position: absolute;
				bottom: 0;
				padding: 2.5rem;
				h3 {
					font-size: 20px;
					font-weight: 600;
				}
			}

			.overlay {
				background: #00000059;
				width: 100%;
				position: absolute;
				height: 100%;
				background: rgba(255, 255, 255, 0);
				background: linear-gradient(
					180deg,
					rgba(255, 255, 255, 0) 0%,
					rgba(255, 255, 255, 0) 41%,
					rgba(0, 0, 0, 0.55) 69%
				);
			}
		}
	}
}
