[html]
<style>
.hotd-cast {
  --hotd-wrap: #c9cac8;
  --hotd-body: #e2e2df;
  --hotd-card: #eeeeeb;
  --hotd-card-2: #d7d7d3;
  --hotd-line: rgba(0,0,0,.14);
  --hotd-text: #2a2a28;
  --hotd-muted: #70706c;
  --hotd-red: #8c3b34;
  --hotd-green: #626d61;

  width: 720px;
  margin: 22px auto;
  padding: 14px;
  box-sizing: border-box;
  background: #c9cac8;
  border: 1px solid rgba(0,0,0,.15);
  font-family: Georgia, "Times New Roman", serif;
  color: var(--hotd-text);
}

.hotd-cast * {
  box-sizing: border-box;
}

/* ШАПКА — картинка полностью видна */

.hotd-head {
  width: 100%;
  background: #d9d9d6;
  border: 1px solid rgba(0,0,0,.10);
  overflow: hidden;
}

.hotd-head img {
  width: 100%;
  height: auto;
  display: block;
}

/* ОСНОВНОЙ БЛОК */

.hotd-body {
  padding: 14px 12px 12px;
  background: #e2e2df;
  border-left: 1px solid rgba(255,255,255,.45);
  border-right: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

/* ИНФО-БЛОК */

.hotd-info {
  margin-bottom: 14px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.34), rgba(0,0,0,.035)),
    #d7d7d3;
  border: 1px solid rgba(0,0,0,.13);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.32),
    2px 3px 0 rgba(0,0,0,.045);
}

.hotd-info-title {
  margin-bottom: 8px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  font-style: italic;
  color: #2a2a28;
}

.hotd-info-text {
  width: 92%;
  margin: 0 auto 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: var(--hotd-muted);
}

.hotd-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.hotd-info-item {
  min-height: 58px;
  padding: 9px 8px;
  background: #eeeeeb;
  border: 1px solid rgba(0,0,0,.12);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.38);
}

.hotd-info-name {
  margin-bottom: 5px;
  font: 9px Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.15px;
  color: var(--hotd-red);
}

.hotd-info-desc {
  font-size: 12px;
  line-height: 1.25;
  color: #2a2a28;
}

/* СЕТКА */

.hotd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* КАРТОЧКИ */

.hotd-card {
  height: 205px;
  padding: 8px;
  background: #eeeeeb;
  border: 1px solid var(--hotd-line);
  box-shadow:
    2px 3px 0 rgba(0,0,0,.055),
    inset 0 0 0 1px rgba(255,255,255,.42);
  position: relative;
  overflow: hidden;
}

.hotd-card:before {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 68px;
  height: 68px;
  background: var(--hotd-red);
  transform: rotate(45deg);
  opacity: .80;
  z-index: 1;
}

.hotd-photo {
  height: 112px;
  padding: 5px;
  background: #d7d7d3;
  border: 1px solid rgba(0,0,0,.12);
  position: relative;
  z-index: 2;
}

.hotd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%) contrast(1.08);
}

.hotd-name {
  height: 34px;
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  line-height: .95;
  font-style: italic;
  color: #2a2a28;
  position: relative;
  z-index: 2;
}

.hotd-status {
  width: fit-content;
  min-width: 76px;
  margin: 6px auto 0;
  padding: 4px 9px;
  color: #eeeeeb;
  text-align: center;
  font: 9px Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  position: relative;
  z-index: 2;
}

.hotd-status.busy {
  background: var(--hotd-red);
}

.hotd-status.free {
  background: var(--hotd-green);
}

.hotd-footer {
  margin-top: 10px;
  text-align: right;
  font: 9px Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(0,0,0,.38);
}
</style>

<div class="hotd-cast">

  <div class="hotd-head">
    <img src="https://forumstatic.ru/files/001c/ad/71/73781.png">
  </div>

  <div class="hotd-body">

    <div class="hotd-info">
       
      <div class="hotd-info-row">
        <div class="hotd-info-item">
          <div class="hotd-info-name">анкета мемом</div>
          <div class="hotd-info-desc">можно подать анкету в формате мема</div>
        </div>

        <div class="hotd-info-item">
          <div class="hotd-info-name">300 люмусов</div>
          <div class="hotd-info-desc">выдаются на старте после принятия</div>
        </div>

        <div class="hotd-info-item">
          <div class="hotd-info-name">оформление</div>
          <div class="hotd-info-desc">уникальное оформление в подарок</div>
        </div>
      </div>
    </div>

    <div class="hotd-grid">

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/e82ceffa7fe28a8ca067723bdce14531/e29abfc7621d0f46-61/s400x600/55312cd1dc6244660c460fd124c3ba44f9daf2bc.gifv"></div>
        <div class="hotd-name">Emma D’Arcy</div>
        <div class="hotd-status busy">занята</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/2637077dbd6214f3fc99d94c31accfb3/47d1329771f510ba-2c/s540x810/3731850c12f63790663b3b70d9a3c582dedf5b26.gif"></div>
        <div class="hotd-name">Milly Alcock</div>
        <div class="hotd-status free">свободна</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/c6480222c97a02c8204d53b503fd24b9/4f64fcd13d7a8bfb-f1/s400x600/e42863897597087f173a02f15355df71d7d95f9b.gif"></div>
        <div class="hotd-name">Olivia Cooke</div>
        <div class="hotd-status free">свободна</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/9383f79b8c36f252e996aeadde659850/cd47345769498e45-59/s540x810/ac6aeba087c0d9a88a157092e579b0469c6e4132.gif"></div>
        <div class="hotd-name">Emily Carey</div>
        <div class="hotd-status free">свободна</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/c151d1733f72343fa0a7fa563e805f6e/23711741dce27c17-0c/s400x600/36b9c4da1ce6055c8029479a0274bc51ffa51c06.gifv"></div>
        <div class="hotd-name">Matt Smith</div>
        <div class="hotd-status free">свободен</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/b68753da439032c8b9b2c07a05ae48bc/0970eaf3dd5b1ff9-af/s400x600/e6cd1490b77897c8ef2611014ab284fe3a35f4d3.gif"></div>
        <div class="hotd-name">Ewan Mitchell</div>
        <div class="hotd-status free">свободен</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/7a65444e9a80e4cf5fb8b30e82ae8682/8e73440be1821479-55/s400x600/5b6d6ef9250ecaeaec96606a1c8b1769d7921f01.gifv"></div>
        <div class="hotd-name">Tom Glynn-Carney</div>
        <div class="hotd-status free">свободен</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://media.tenor.com/2QLrVMXC1xMAAAAd/helaena-targaryen-phia-saban.gif"></div>
        <div class="hotd-name">Phia Saban</div>
        <div class="hotd-status free">свободна</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/85d4087dd2d54e5a9d2cd8f7fbd9d8a7/7b5d68e897a5a08e-10/s540x810/9efff839fb0d405fcf6ce76fb528faf6fed7b84e.gif"></div>
        <div class="hotd-name">Fabien Frankel</div>
        <div class="hotd-status free">свободен</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/4598e6f6ad8d07144e8f5c8482843c5f/a0a8985dee84ce58-2a/s540x810/de04193ff07a90f741e9c7b98936e1342c9b04a5.gif"></div>
        <div class="hotd-name">Harry Collett</div>
        <div class="hotd-status free">свободен</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/26d5fea86399064b74a462f87715a010/39cb5e3260c1979a-aa/s540x810/94f21a9f119c3ff42f85de300847b0b2c55ff498.gif"></div>
        <div class="hotd-name">Freddie Fox</div>
        <div class="hotd-status free">свободен</div>
      </div>

      <div class="hotd-card">
        <div class="hotd-photo"><img src="https://64.media.tumblr.com/e68086c7f733f5bcb13cc47e5000ea2d/44f1588e6a22bbf2-c5/s500x750/d63e4e84a323d1ad82daa6811fb1c88f43953832.gifv"></div>
        <div class="hotd-name">James Norton</div>
        <div class="hotd-status busy">занят</div>
      </div>

    </div>

  </div>

</div>
[/html] [hideprofile]