:root {
  --red: #c91245;
}
* { box-sizing: border-box;}

body {
  font-family: "Work Sans";
  padding: 0;
  margin: 0;
}

a {color: inherit;}

h1,
h2,
h3,
h4,
h5,
h6 {
}

h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 106.667% */
  letter-spacing: -0.3px;
  color: var(--red);
}

header {
  background: var(--red);
  /* padding: 8px 0; */
}

.header-image {
  width: 100%;
  display: block;
  background-size: cover;
  aspect-ratio: 3024/582;
  /* background-image: url('images/header.jpg'); */
  background-image: url('images/header-desktop.jpg')
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 16px;
}

@media only screen and (max-width: 726px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  } 
  #form { margin: 0 auto 0 0; text-align: left;}
  /* h4 { font-size: 10px; font-weight: normal; } */
  /* h4 + p { display: none} */


}

@media only screen and (min-width: 727px) {
  .flex{ display: flex; flex-direction: row; align-items: center; justify-content: center; }
  .flex > p { margin-right: 16px;}
  /* .header-image {;} */
}


.grid > a {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: var(--White, #fff);
  display: block;
  font-size: 10px;
  text-align: center;
  color: inherit;
  text-decoration:  none;
  display: flex;
  flex-direction: column;
}

.grid > a > p { flex-grow: 1; margin-top: 0; font-size: 11.5px;}

h4 { font-size: 14px; text-decoration: none; text-transform: uppercase; margin: 8px auto }

#form{ width: 100%; max-width: 800; display: block; position: relative;
  max-width: 340px
}

#form button{
    border-radius: 50%;
    padding: 4px;
    justify-content: center;
    align-items: center;
    background: var(--red);
    border: 0;
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    /* width: 28px; */
    aspect-ratio: 1;
    cursor: pointer;
    /* height: 28px; */

}

input[type="email"] {
  border-radius: 24px;
  border: 1px solid var(--Gray, #999);
  background: #e5e5e5;
  padding: 8px 8px 8px 16px;
  width: 100%;
}

.item-image {
  background: #E5E5E5; border-radius: 4px;
  /* margin-bottom: 8px; */
}

.item-image img {
  width: 100%; height: 170px; object-fit: contain; 
}

.grid button {
  border-radius: 32px;
  background: var(--red);
  padding: 12px 12px 12px 6px;
  justify-content: center;
  align-items: center;
  display: flex;
  background: var(--red);
  border: 0;
  color: white;
  font-family: "Work Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
  text-transform: uppercase;
  width: 100%;
  margin-top: auto;
  cursor: pointer;
}

.grid button img { margin-right: 8px;}

.date {
  font-family: "Work Sans";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 11px */
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.container {
  padding: 8px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.center{
  text-align: center;
}

.copyright{ font-size: 10px; }