*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
    /*display: block;*/
    max-inline-size: 100%;
}

body {
  background-color: #dfecf5;
  font-family: sans-serif;
}
.lower_title {
  text-align: center;
  color: #808080;
  padding: 6px;
}

@media (max-width: 600px) {
  .row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .row img {
    width: 100px;
    margin: 0 auto;
  }
}

.row {
  display: grid;
  grid-template-columns: 80px 1fr; /* small image column + flexible text column */
  gap: 10px;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.row img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.text {
  text-align: left;
}
/* @ media is placed under .grid. Both .grid and @ media have the same specificity. So in this case that does not matter. The cascade order does matter here When specificity is equal, the later rule wins if it applies
. */
.wrapper {
    max-inline-size: 1400px; 
    margin-inline: auto; 
    /*padding-bottom: 20px;*/

}
footer {
    background-color: #dbdbdb;
    padding: 16px;
    text-align: center;
    margin-top: 40px;
}
.footer-link {
  color: #070600;
  text-decoration: none;
}
.footer-link:hover {
  color: #6c8093; /* light blue on hover */
  /*text-decoration: underline;  optional */
}
