.responsive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
		padding: 1rem;
		place-items: center;
}

@media (min-width: 600px) {
  .responsive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .responsive-grid {
    grid-template-columns: repeat(3, 1fr);
			place-items: stretch;
	}
}

.responsive-columns {
	display: grid;
		grid-template-columns: 1fr;
		gap: 0.15rem;
		padding: 1rem;		
}
@media (min-width: 600px) {		
	.responsive-columns {
				grid-template-columns: 1fr 1fr;
	}
}

.threecolumns {
		display: grid;
		grid-template-columns: 1fr;
				gap:0.15rem;
				padding: 1rem;
				box-sizing: border-box;
}
@media screen and (min-width: 600px) {
		.threecolumns {
				grid-template-columns: 1fr 1fr;
}
}
@media screen and (min-width: 900px) {
		.threecolumns {
				grid-template-columns: repeat(3, 1fr);
				place-items: stretch;
				gap: 0.15rem;
}
}

.image {
		width: 100%;
}

.wireframes {
		max-width: 100%;
		height: auto;
		display: block;
		margin: 0 auto;
		cursor: pointer;
}

@media (min-width: 600px) {
		.wireframes {
				width: 90%;
		}
}
@media (min-width: 1024px) {
		.wireframes {
				width: 80%;
		}
}		
	
.wireframes:active {
	position: fixed;
		top: 0; 
		left: 0;
		width: 100vw;
		height: 100vh;
		object-fit: contain;
		object-position: center center;
		z-index: 9999;
		background-color: rgba(0, 0, 0, 0.9);
		transform: rotate(90deg);
		transform-origin: center;
		}

.wireframes,
.wireframes:active {
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.wireframes:active::after {
  content: 'Tap image to exit';
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: white;
  pointer-events: none;
}

calltoaction {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 2rem 1rem;
}
.calltoaction img {
		width: 100%;
		height: auto;
		object-fit: cover;
		margin-bottom: 2rem;
}
.calltoaction h1 {
		font-size: 2rem;
		margin-bottom: 1rem;
}
.calltoaction p {
		font-size: 1rem;
		margin-bottom: 1.5rem;
}
.calltoaction .btn-group {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		justify-content: center;
		align-items: center;
}
.calltoaction .btn-group button {
		padding: 0.75rem;
		font-size: 1rem;
		width: 100%;
}

@media (min-width: 600px) {
		.calltoaction h1 {
				font-size: 2.5rem;
		}
		.calltoaction p {
				font-size: 1.125rem;
		}
		.calltoaction .btn-group {
				flex-direction: row;
		}
		.calltoaction .btn-group button {
				width: auto;
		}
}
		
@media (min-width: 1024px) {
		.calltoaction h1 {
				font-size: 3.375rem;
		}
		.calltoaction p {
				font-size: 1rem;
		}
}

.post-author {
  display: none;
}