div.articles {
	display: grid;
	grid-row-gap: var(--article-grid-view-gap);
	max-width: 1440px;
	margin: auto;
}

.article {
    cursor: pointer;
}

.article-sea img {
	width: 100%;
	max-height: 60.5vw;
	object-fit: cover;
	object-position: bottom;
}

img.grid-icon {
	width: calc(var(--global-nav-hamburger-width) - var(--global-nav-hamburger-width) * 0.1875 * 2);
	filter: invert(100%);
	opacity: 0;
}

.visible {
	transition: opacity var(--global-nav-hamburger-delay);
	opacity: 1 !important;
}

div.photo-list:not(.full-view) {
	display: grid;
	grid-gap: var(--article-grid-view-gap);
	padding: calc(var(--article-grid-view-gap) / 2);
}

div.photo-list > * {
	width: 100%;
}

div.photo-list img {
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
}

div.photo-list table {
	display: none;
	margin: 10px 0px;
	border-spacing: var(--article-grid-view-gap);
	font-size: 14px;
}

div.photo-list.full-view img {
	border-radius: 0px !important;
	aspect-ratio: revert !important;
	grid-column: unset;
	grid-row: unset;
}

div.photo-list.full-view table {
	display: table;
}

div.photo-list:not(.full-view) img + video {
	display: none;
}

div.photo-list.full-view img.video-preview {
	height: 0px;
}

td.pl-info-name,
td.pl-info-location,
td.pl-info-date {
	width: 30px;
	background-position: center;
	background-repeat: no-repeat;
}

td.pl-info-name {
	background-image: url(../img/name.png);
	background-size: 15px;
}

td.pl-info-location {
	background-image: url(../img/location.png);
	background-size: 12px;
}

td.pl-info-date {
	background-image: url(../img/date.png);
	background-size: 15px;
}