* {
    box-sizing: border-box;
}

body {
    margin: 20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: white;
    color: black;
    letter-spacing: 1.1px;
    line-height: 1.3;
    font-size: .92em;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents inline spacing issues */
    object-fit: contain; /* Ensures the image fits inside */
}

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

a:hover .single, .single:hover {
    background-color: #f5f5f5;  /* Lighter grey */
    transition: background-color 0s;  /* No easing */
}

.single {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
  text-align: left;
  width: 100%;
  height: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 0.5px solid transparent; /* Set the border as transparent initially */
}

.column {
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 0.5px solid black;
  padding: 10px;
  min-width: 200px; /* Ensures they don’t get too small */
}

.column:hover {
  background-color: #f5f5f5; /* Makes the entire column change color when hovered */
}

.column:last-child {
  border-right: none;
}

.text-content {
    padding-left: 9px;
}

.some-page-wrapper {
    margin: 15px;
    background-color: transparent;
    border: 0.5px solid black;
}

.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Responsive: Stack columns on smaller screens */
@media (max-width: 900px) {
    body {
        font-size: 0.9em;
    }

    .row {
        flex-direction: column;
    }

    .column {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid black;
    }

    .column:last-child {
        border-bottom: none;
    }
}
