////
/// Entry component.
///
/// @group  Components
/// @author Lee Anthony <seothemeswp@gmail.com>
/// @link   https://CustomizePro.com/
////

.entry {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	align-content: flex-start;

	.archive & {

		> * {

			&:last-child {
				margin-bottom: 0;
			}
		}
	}

	// Entry header.
	&-header {
		width: 100%;
	}

	// Entry title.
	&-title {
		width: 100%;
	}

	// Entry title link.
	&-title-link {
	}

	// Entry time.
	&-time {
	}

	// Entry author.
	&-author {
	}

	// Entry author link.
	&-author-link {
	}

	// Entry author name.
	&-author-name {
	}

	// Entry comments link
	&-comments-link {
	}

	// Entry meta.
	&-meta {
		width: 100%;
	}

	// Entry image link.
	&-image-link {
		display: block;

		img {
			width: 100%;
		}
	}

	// Entry content.
	&-content {
		width: 100%;

		form {

			ul {
				margin-bottom: 0;
			}

			li {
				list-style-type: none;
			}
		}
	}

	// Entry footer.
	&-footer {
	}

	// Entry categories.
	&-categories {
	}

	// Entry tags.
	&-tags {
	}

	// Comments.
	&-comments {
		width: 100%;
	}
}
