body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: grid;
    grid-template-rows: auto 1fr auto;  /* header | content | footer */
    height: 100vh;
}

.header,
.footer {
    font-family: "Jost", sans-serif;
    font-weight:   350;
    font-style: normal;
    font-size: x-large;
    background-color: #283840;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer
{
	display: grid;
	grid-template-columns: auto auto;
}

.header
{
    font-size: xx-large;
}

.header a:link, a:visited
{
    color:#ffffff;
    text-decoration: none;
    font-size: xx-large;
}

.header a:hover{
color: #ffff00;
  font-size: xx-large;
}

.content {
    display: grid;
    grid-template-columns: 1fr 2fr; /* left | right */
    gap: 4px;
    padding: 10px;
    background: #f0f0f0;
}

.left {
    background: #7E8D95;
    padding: 20px;
}

img{
    object-fit: cover;
    max-width: 100%;
    display: block;
    margin: auto;
    width: 100%;
}

.right {
    background: #7E8D95;
    padding: 20px;
}

a:link, a:visited
{
  color:#ffffff;
  text-decoration: none;
  font-size: x-large;
}

a:hover
{
  color: #ffff00;
  font-size: x-large;
}

.footer-left
{
	width: 100%;
	grid-column: 1;
}

.footer-right
{
	width: 100%;
	grid-column: 2;
}

/* ---------------------------------------------------------
   📱 Mobile (phones ≤ 600px)
   --------------------------------------------------------- */
@media (max-width: 600px) {
    .content {
        grid-template-columns: 1fr; /* stack */
    }
}

/* ---------------------------------------------------------
   📱📱 Tablets / iPad (601px–1024px)
   --------------------------------------------------------- */
@media (min-width: 601px) and (max-width: 1024px) {
    .content {
        grid-template-columns: 1fr 1fr; /* equal columns */
    }
}

/* ---------------------------------------------------------
   🖥️ Desktop (> 1024px)
   --------------------------------------------------------- */
@media (min-width: 1025px) {
    .content {
        grid-template-columns: 1fr 2fr; /* original layout */
    }
}