@font-face {
  font-family: "Circular";
  src: url("EuclidCircularB-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Circular";
  src: url("EuclidCircularB-Bold.woff2") format("woff2");
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Circular", sans-serif;
  background: #dddfe2;
  color: #111;
}

.wrapper {
  width: 40%;
  max-width: 1280px;
  margin: 90px auto;
}

.rule {
  border-top: 2px dotted #666;
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 516px;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.rule-bottom {
  border-top: 2px dotted #666;
  margin-top: 24px;
  min-width: 260px;
  max-width: 516px;
}

.content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 48px 0 44px;
}

.cover {
  width: 265px;
  transition: 0.25s;
}



/*.cover:hover {
  border: 1px dotted #cb1212; /* 1px thickness, solid line, red color */
  transform: translateY(-3px); /* Keeps your smooth lift-up animation */
}*/


.info {
  margin-top: 10px;
}

.info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blurb {
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  max-width: 516px;
  min-width: 516px
align-content: flex-end;
  width: 100%;
}

footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 26px;
  font-size: 16px;
  flex-wrap: nowrap;
  width: 100%;
}

footer div {
  white-space: nowrap;
}

footer div:last-child {
  display: flex;
  gap: 50px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #cb1212;
}

/* When the screen is 768px wide or smaller (Standard Tablet/Phone size) */
@media (max-width: 768px) {
  .content {
    flex-direction: column; /* Stacks the cover image and the blurb vertically */
    min-width: 350px;
  }

  .blurb {
    order: -1; /* OPTIONAL: A negative order forces the blurb to jump to the very TOP */
    width: 100%;
   padding-left: 10px;
  }
  
  .cover {
    order: 2; /* Forces the cover image to jump to the BOTTOM */
  }
}

