html,body{
  font-family:Inter,sans-serif;
  margin: 10px;
  background-color: #EEE;
  color: #333333;
}
.grid{
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-gap: 10px;
}

.cell{
  background-color: rgb(255,255,255);
/*   height:100px; */
  padding: 0 16px 0 16px;
  height: 630px;
  position: relative;
  border: 1px #CCC solid;
  border-radius:20px;
}
h1{
  line-height:1em;
  margin: 15px 0 1em 0;
  letter-spacing: -0.02em;
}
div.grid::after{
  font-size:0.625rem;
  content: "Linked to parent template v1.2 | 2022.11.04";
  display:inline-block;
  font-variant-caps: all-small-caps;
  font-weight:500;
  letter-spacing: 0.05em;
  color:#DDD;
  position:absolute;
  top:5px;
  right:20px;
}
/* Uncomment this line â†“ to check if CSS is linked or local */
/* div.grid::after{content: " CSS IS LINKED";color: red;font-weight: 800;} */

h2{
  margin: 15px 0 0 0;
  line-height: 1em;
  font-weight:800;
}
.cell p{
  margin: 5px 0 1em 0;
  line-height: 1em;
}
.cell img{
  margin: auto auto;
  display:block;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.titleBlock{
  margin-bottom: 16px;
}
.titleBlock td {
  font-size:1em;
  line-height:1.2em;
  text-align:left;
  vertical-align:top;
  padding-bottom: 0.2em;
}
img.imgLg {
  width:100%;
  max-width:512px;
}
img.imgMd {
  width:100%;
  max-width:256px;
}
img.imgSm {
  width:100%;
  max-width:32px;
}
div .header {
  height: auto;
}
td strong {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.055em;
}
h2+p {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.055em;
}

/* DEFAULT: small devices  */
[class*="col"]{
  grid-column-end: span 12;
}

/* SMALL: below 600px wide */
@media only screen and (max-width: 600px) {
  .sm1{
    grid-column-end: span 12;
  }
  .sm2{
    grid-column-end: span 6;
  }
  .sm3{
    grid-column-end: span 4;
  }
  .sm4{
    grid-column-end: span 3;
  }
  .sm6{
    grid-column-end: span 2;
  }
  .sm12{
    grid-column-end: span 1;
  }
}

/* TABLET: above 601px wide */
@media only screen and (min-width: 601px) {
  .md1{
    grid-column-end: span 12;
  }
  .md2{
    grid-column-end: span 6;
  }
  .md3{
    grid-column-end: span 4;
  }
  .md4{
    grid-column-end: span 3;
  }
  .md6{
    grid-column-end: span 2;
  }
  .md12{
    grid-column-end: span 1;
  }
}

/* DESKTOP: above 1025px wide  */
@media only screen and (min-width: 1025px) {
  .col1{
    grid-column-end: span 12;
  }
  .col2{
    grid-column-end: span 6;
  }
  .col3{
    grid-column-end: span 4;
  }
  .col4{
    grid-column-end: span 3;
  }
  .col6{
    grid-column-end: span 2;
  }
  .col12{
    grid-column-end: span 1;
  }
}