* { box-sizing: border-box; }


/* title cover */
.grid-item .cover {
	font-family: "Roboto Condensed", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 12px;
	transition: .3s ease;
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, .5);
	color: white;
	font-size: 16px;
	padding: 16px 32px;
}

.grid-item:hover .cover {
	opacity: 1;
}

.title-container {
	font-family: "Roboto Condensed", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	max-width: 1240px;
	margin: auto;
	padding: 16px 0px;
}

.title-container h1 {
	font-weight: 700;
	font-style: normal;
	font-size: 35px;
	margin: 0;
}

.title-container .serial {
	font-weight: 600;
	font-style: normal;
	font-size: 12px;
	color: rgba(0, 0, 0, .3);
}

.title-container .description {
	padding: 16px 0px;
}

/* photo */
.shrink {
	transition: 0.3s ease;
}

.shrink:hover{
	-webkit-transform: scale(0.98);
	-ms-transform: scale(0.98);
	transform: scale(0.98);
	transition: 0.3s ease;
}

.photo {
	display: block;
    max-width: 100%;
    max-height: 100%;
	width: 100%;
    height: 100%;
	object-fit: cover;
}


/* grid */
.grid {
	max-width: 1240px;
	margin: auto;
	counter-reset: grid-item;
}

/* clearfix */
.grid:after {
	content: '';
	display: block;
	clear: both;
}

.grid-item {
	overflow: hidden;
	float: left;
	margin: 0 0 10px;
	width: 300px;
	height: auto;
	break-inside: avoid;
	background: #e9e9e9;
	border-radius: 0px;
}

/* full size photo view */
.fancybox__caption {
	font-family: "Roboto Condensed", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
}


/* Verify view */

.center-container {
  text-align: center;
}

.verify-view {
  margin: 0 auto 20px auto;
  display: inline-block;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background-color: #eeeeee;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  font-family: "Roboto Condensed", serif;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.verify-view:hover {
  background-color: #e0e0e0;
}

.verify-view .icon {
  /* font-size: 18px; */
}

.verify-view .arrow {
  margin-left: auto;
  /* font-size: 18px; */
}
