*{
	margin:0;
	padding:0;
	border:none;
	box-sizing: border-box;
}
:root {
  interpolate-size: allow-keywords; 
}
body{
	background: #e4ede4 url(../images/background.svg) bottom no-repeat;
	background-size: auto;
	overflow-x: hidden;
	font-family: 'Merriweather', serif;	
	--primaryColor: #000000;
	--borderColor: rgba(0,0,0,.5);
	--advertBorderColor: rgba(0,0,0,.1);
	--gap: 1em;
}
body, html {
  height: 100%;
  width: 100vw;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1rem;
  font-family: 'Merriweather', serif;
}
body{
  max-width: 1920px;
  --contrastColor: #000;
}
body.blacktheme{
	--primaryColor: #000000;
	--borderColor: rgba(0,0,0,.5);
	--advertBorderColor: rgba(0,0,0,.1);
}
body.bluetheme{
	--primaryColor: #05386b;
	--borderColor: rgba(5,56,107,.5);
	--advertBorderColor: rgba(5,56,107,.1);
}
body.greentheme{
	--primaryColor: #1f8371;
	--borderColor: rgba(31, 131, 113,.5);
	--advertBorderColor: rgba(31, 131, 113,.1);
}
body.browntheme{
	--primaryColor: #A0522D;
	--borderColor: rgba(160, 82, 45, .5);
	--advertBorderColor: rgba(160, 82, 45,.1);
}
body.graytheme{
	--primaryColor: #677787;
	--borderColor: rgba(103, 119, 135, .5);
	--advertBorderColor: rgba(103, 119, 135,.1);
}
body.redtheme{
	--primaryColor: oklch(59.3% 0.227 32);
	--borderColor: rgba(230, 38, 0, .5);
	--advertBorderColor: rgba(230, 38, 0,.1);
}
h1, h2, h3, h4, h5{
	font-family: 'Fira Sans', sans-serif;
	color: var(--primaryColor);
	/*padding: .5em;*/
}
h1 {
	font-size: 2em;
	background-color: rgb(255,255,255,.5);
	border: 1px solid var(--borderColor);
}
h2 {
	font-size: 1.8em; 
}
h3 {
	font-size: 1.5em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.25em;
	line-height: 1.4;
  	margin-bottom: 0.5rem;
}
h6{
	font-size: .8em;
	font-style: italic;
	padding-left: 1em;
	color: #0c0c0c;
}
p, li:not([role="menuitem"]):not(.accordion-item){
	padding: 0 1em;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
/*
figure{
	width: min-content;
}
figure img{
	max-width: none;
}
*/
/*layout*/
section, .section {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
section.centred, .section.centred{
  justify-content: center;
}
.flexrow{
	flex-direction: row;
}
.cards{
	display: flex;
	flex-direction: column;
}
form .input-group:not(:has(input[type='radio'])){
  display: flex;
  flex-direction: column;
  width: 100%;
}
/*site specific*/
body {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	grid-template-areas: "header"
						"main"
						"aside"
						"footer";
  gap: 1em;
}
h1{
  padding-left: .5em;
}
header{
	grid-area: header;
}
main{
	grid-area: main;
}
aside{
	grid-area: aside;
}
footer{
	grid-area: footer;
}
/*menu*/
.menu.is-open, 
.submenu.is-open {
  display: flex;
}
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* Vertical stack for mobile */
}
.menu > li {
  display: flex;
  flex-wrap: wrap; /* Allows the submenu to wrap to the next line */
  align-items: center;
  border-bottom: 1px solid #eee;
  letter-spacing: .5ch;
}
.menu > li a{
  color: var(--primaryColor);
}
.menu-link {
  flex-grow: 1; /* Link takes up most of the space */
  padding: 15px;
  text-decoration: none;
  color: #333;
}
.menu-toggle {
  padding: 15px; /* Large touch target for mobile (WCAG 2.5.5) */
  background: none;
  border: none;
  cursor: pointer;
  color: inherit; /* Inherits text color from the menu */
  font: inherit;  /* Inherits font size/family */
}
/* Ensure the arrow rotates when open */
.menu-toggle[aria-expanded="true"] .icon-arrow {
  transform: rotate(180deg);
}
/* --- Submenu Behavior --- */
.submenu {
  flex-basis: 100%; /* Forces the submenu to a new line below the link/toggle */
  list-style: none;
  padding: 0 0 0 20px; /* Indent sub-items for visual hierarchy */
  margin: 0;
  background-color: #f9f9f9;
  min-width: 100%; /* At least as wide as the 'Services' button */
  width: fit-content; /* Grow if the sub-links are longer */
  white-space: nowrap; /* Keep links on one line */
}
.submenu[hidden] {
  display: none;
}
.submenu.is-open {
  display: block !important;
}
@media (max-width: 767px) {
  .menu, .submenu { 
    display: none; 
  }
}
/* --- Desktop Layout (e.g., 768px and up) --- */
@media (min-width: 768px) {
  .main-nav-toggle {
    display: none;
  }
  .menu {
    flex-direction: row; /* Horizontal for desktop */
    align-items: center;
  }
  .menu > li {
    position: relative; /* Context for absolute submenu positioning */
    border-bottom: none;
  }
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
  }
  /*
  header section .section-content.image:nth-child(2) img{
    max-width: 275px;
  }
  */
}
#fpsearch .input-group{
  flex-direction: row;
}
main .section-content.heading, header .section-content.heading{
  margin-top: 1em;
}
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1f2937;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    font-family: system-ui, sans-serif;
}
#cookie-banner h2, #cookie-preferences h2 { font-size: 18px; margin: 0 0 10px; }
#cookie-banner p, #cookie-preferences p { font-size: 14px; margin-bottom: 10px; }
.cookie-options label { display: block; margin-bottom: 6px; }
.cookie-actions button {
    margin-right: 10px;
    padding: 8px 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
#cookie-banner h2{
  color: #fff;
}
.accept { background: var(--secondary-color); }
.reject { background: #ef4444; }
.save { background: var(--light-text); }
[type="text"], [type="password"], [type="date"], [type="datetime"], [type="datetime-local"], [type="month"], [type="week"], [type="email"], [type="number"], [type="search"], [type="tel"], [type="time"], [type="url"], [type="color"], textarea {
    display: block;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #cacaca;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #0a0a0a;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
button, .button {
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    margin: 0;
    padding: 0.5em 1em;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    border: 1px solid #cacaca;
    background-color: #ecf87f;;
    color: #000;
}
select {
    width: 100%;
    height: 2.4375rem;
    padding: 0.5rem;
    appearance: none;
    border: 1px solid #cacaca;
    border-radius: 3px;
    background-color: #fefefe;
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #0a0a0a;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
    background-origin: content-box;
    background-position: right -1rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    padding-right: 1.5rem;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.form-row:has(button){
  text-align: right;
}
#cookie-banner h2, #cookie-preferences h2 { font-size: 18px; margin: 0 0 10px; }
#cookie-banner p, #cookie-preferences p { font-size: 14px; margin-bottom: 10px; }
.cookie-options label { display: block; margin-bottom: 6px; }
.cookie-actions button {
    margin-right: 10px;
    padding: 8px 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.accept { background: #4fcd94; }
.reject { background: #fe978f; color: #000;}
.save { background: #ccc; }
dialog {
  /* Ensure it doesn't touch screen edges on mobile */
  width: 90%;
  max-width: 500px;
  
  /* Modern standard for centering */
  margin: auto; 
  
  /* Reset default border/padding for a cleaner look */
  border: none;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
#cookie-banner.hidden {
  display: none;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none; /* Prevents users from clicking hidden buttons */
}
/*utility classes*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  color: var(--contrastColor);
}
summary {
  list-style: none; /* Hide default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
summary::-webkit-details-marker { 
  display: none; 
}
summary::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  /* SVG Data URI styled to match text color */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='currentColor' stroke-width='4' fill='none'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='currentColor' stroke-width='4' fill='none'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-color: currentColor;
  transition: transform 0.2s ease;
}
/* 3. Rotate on open */
details[open] summary::after { 
  transform: rotate(180deg); 
}
.section-content.list details {
  /* 2. Target the content container directly */
  &::details-content {
    opacity: 0;
    block-size: 0;
    overflow: hidden;
    /* Transition opacity and size simultaneously */
    transition: 
      block-size 0.3s ease-in-out, 
      opacity 0.3s ease-in-out,
      content-visibility 0.3s allow-discrete; 
  }

  /* 3. Define the 'open' state values */
  &[open]::details-content {
    opacity: 1;
    block-size: auto; /* Animates smoothly from 0 thanks to interpolate-size */
  }
}
.section-content.cpc, article{
  background: #fff;
  background-image: url('../images/cpc_logo_watermark.png');
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: center;
  padding: 1em;
  & p, ul, ol{
    margin-bottom: 1em;
  }
  & ul{
    list-style-type: disc;
    margin-left: 2em;
  }
  & ol{
    list-style: none;
    counter-reset: cpc-counter;
  }
  & ol li{
    counter-increment: cpc-counter;
    margin-bottom: 0.5rem;
  }
  & ol li::before {
  content: counter(cpc-counter);
  font-weight: bold;
  font-size: 3rem;
  margin-right: 0.5rem;
  margin-bottom: 1em;
  line-height: 1;
}
}
.section-content.whitebg{
  background: #fff;
  padding: 1em;
}
/*site styles*/
ul.menu{
	flex-wrap: wrap;
}
section:has(.top-bar-left){
  background-color: #fff;
}
.top-bar-left{
	background-color: #fff;
	font-family: 'Fira Sans', sans-serif;
  text-transform: uppercase;
  font-size: 1.1em;
  letter-spacing: .5ch;
  place-self: center;
}
.top-bar-left a{
	text-decoration: none;
}
.breadcrumbs {
  display: flex;
  background-color: var(--primaryColor);
  color: #ffffff;
  padding: .5em;
  border-bottom: 4px solid var(--primaryColor);
  text-transform: uppercase;
  --contrastColor: #fff;
}
.breadcrumbs li{
	color: #ffffff;
	font-family: 'Fira Sans',sans-serif;
	font-size: 1em;
}
.breadcrumbs a:not([href='#']){
	color: #ffffff;
	text-decoration: underline;
}
.breadcrumbs a[href='#']{
	color: #ffffff;
}
.breadcrumbs li:not(:last-child)::after{
	color: #ffffff;
	content: url("../images/breadcrumb-arrow.svg");
    display: inline-block;
	position: relative;
	bottom: -.25ex;
	width: 16px;
	margin: 0 0.75rem;
}
.callout {
  position: relative;
  width: calc(100% - 1px);
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 3px;
  background-color: white;
  color: #0a0a0a;
  box-shadow: #CCCCCC 5px 5px 5px;
}
.callout.secondary {
  position: relative;
  border-left: 10px solid var(--borderColor);
  list-style-type: none;
  margin-left: 0;
  background-color: #fcfcfc;
  color: #0a0a0a;
  padding: 0 1em;
  line-height: 2em;
}
details{
	background-color: #fff;
}
summary{
	background-color: #ecf87f;
  	color: black;
	font-size: 2em;
	padding: 0 1em;
	border-bottom: 1px solid #0b893e;
}
.seealso{
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.seealso a{
  color: #000;
}
.seealso figcaption{
  text-align: center;
  background-color: #fff;
}
.see-also{
	display: flex;
	flex-direction: column;
}
.see-also li{
	display: block;
	width: 100%;
	text-align: left;
text-transform: uppercase;
font-size: 1.3rem;
  line-height: 1em;
  color: #000;
  margin-bottom: 0;
  border-top: 1px solid #0b893e;
  padding: 0.7em 1em;
}
.see-also li:hover{
	 background-color: #FFEBCD;
}
.see-also li a{
	text-decoration: none;
	color: #000;
}
footer{
	background: linear-gradient(90deg, #5cdb95, #58d795, #4fcd94, #45c092, #3db18e, #39a489, #379a85, #379683);
  color: #000;
  margin-top: 1em;
  border-top: 5px solid rgba(170, 119, 83, .5);
}
footer a {
  color: #fff;
}
.contact-card {
  width: 75%;
  margin: 20px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.card-image{
	width: auto;
}
.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 30px;
}
.file-icon {
  width: 32px;
  height: 32px;
  color: #e74c3c; /* Color code by file type if you want */
  flex-shrink: 0;
}
form.contact{
	background-color: rgb(255,255,255,.5);
	border: 10px solid var(--borderColor);
	box-shadow: #CCCCCC 5px 5px 5px;
  padding: 1em;
}
form label{
	letter-spacing:1px;
	/*vertical-align:top;*/
	color: var(--primaryColor);
	font-style: normal;
	display: block;
	margin-top: 10px;
}
form fieldset{
	border:none;
}
form li{
	list-style-type:none;
	padding-bottom:10px;
width: 300px;
}
form input{
	/*width:301px;*/
	/*height:20px;*/
border: 1px solid #6E7F5B;
}
form li #email{
	margin-left:23px;
}
form textarea{
	/*width:301px;*/
	height:5em;
border: 1px solid #6E7F5B;
}
form select{
	/*width:301px;*/
border: 1px solid #6E7F5B;
}
#function_type{
  width: 100%;
}
form input.submit{
	background:#6E7F5B;
	border:1px solid #FFFFFF;
	width:68px;
	height:25px;
	padding:2px 0px 2px 0px;
	margin:0 0 0 230px;
	color:#FFFFFF;
	font-family:Arial, Helvetica, sans-serif;
	font-style:italic;
}
/* Desktop Styles (Horizontal Layout) */
@media (min-width: 768px) {
  body {
    display: grid;
    grid-template-columns: 1fr 25%;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "header header"
              "main aside"
              "footer footer";
    gap: 1em;
  }
  section.breadcrumb{
    flex-direction: row;
    gap: 0;
    background: var(--primaryColor);
    align-items: center;
  }
  section.breadcrumb .section-content:first-of-type{
    flex: auto;
  }
  section.breadcrumb .section-content:nth-child(2){
    width: 25%;
  }
  section:has(.section-content.list:nth-child(2)){
    flex-direction: row;
  }
  section:has(.section-content.list:nth-child(2)) .list{
    width: 50%;
  }
  section:has(.section-content.image:nth-child(3)){
    flex-direction: row;
    gap: 0;
  }
  section:has(.section-content.image:nth-child(3)) .section-content.image {
    flex: 1; 
    min-width: 0; /* Prevents images from pushing the container wider than 1/3 */
  }
  section:has(.section-content.image:nth-child(3)) .section-content img {
    width: 100%;
    height: 25vw; /* Height scales as 25% of the screen width */
    object-fit: cover;
    display: block;
  }
  .section-content.centred figure {
    display: table;
    width: auto;
    margin: 0 auto;
  }
  main .section-content.heading{
    margin-top: 0;
  }
  .callout.secondary[data-record]{
    padding: 1em;
  }
  .callout.secondary[data-record] p:last-of-type{
    display: flex;
    flex-direction: row;
  }
  .callout.secondary[data-record] p:last-of-type span{
    margin-right: auto;
  }
  /*
  .cards{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  }
  .contact-card {
    display: grid;
    grid-template-rows: 1fr;
    align-items: stretch;
	  width: calc(33% - 15vw);
  }

  .card-image img {
    height: 100%; 
    width: 100%;
  }
  */
  .cards {
  display: grid;
  /* Automatically fits 4 cards at 1920px, while keeping min-width 300px */
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 20px;
  width: 100%;
  max-width: 75vw;
  margin: 0 auto;    /* Centers the grid on larger screens */
  justify-content: center;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  min-width: 300px;
}

.contact-card img {
  /* Overrides your max-width: none and maintains aspect ratio */
  width: 100%;
  max-width: 100% !important;
  height: auto;
  aspect-ratio: 1 / 1; /* Optional: forces images to stay square */
  object-fit: cover;   /* Ensures images don't distort if sizes differ */
  display: block;
}
.contact-card h2{
  font-size: 1.5em;
}
/*
  .homenews {
      width: calc(100% - 2em);
      margin: 1em;
      display: grid;
      grid-auto-columns: 1fr;
      gap: 1em;
      grid-template-areas:
          "box1 box1 box2 box2"
          "box3 box3 box4 box4";
    }
    .homenews .card[data-position='1']{
      grid-area: box1;
    }
    .homenews .card[data-position='2']{
      grid-area: box2;
    }
    .homenews .card[data-position='3']{
      grid-area: box3;
    }
    .homenews .card[data-position='4']{
      grid-area: box4;
    }
    .homenews .card[data-position='5']{
      grid-area: box5;
    }
    .homenews .card{
      position: relative;
    }
    .homenews .card img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left;
    }
    .homenews .card h3 {
    position: absolute; 
    bottom: 0;          
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6); 
    color: white;
    }
    */
    .council-content{
      display: grid;
      grid-template-columns: 1fr;
      gap: 1em;
    }
    /*
    .council-content .callout.secondary:first-of-type{
      grid-area: roadworks;
    }
    .council-content .callout.secondary:nth-child(2){
      grid-area: roadworks;
    }
    */
    header section:has(.section-content.image:nth-child(2)){
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background-color: #fff;
  }
  header section:has(.section-content.image:nth-child(2)) figure{
    width: auto;
  }
  header section:has(.section-content.image:nth-child(2)) img{
    max-width: 100%;
  }
  header section:has(.section-content.image:nth-child(2)) .section-content{
    flex: 1 1 auto;    
  }
  header section:has(.section-content.image:nth-child(2)) .section-content:first-child{
    flex: 1 1 300px;
    place-self: center;   
  }
  input::placeholder {
    color: #555; /* Adjust this value for higher contrast */
    opacity: 1; /* Ensure opacity is not reducing contrast */
  }
}
/* Modern Details Styling */
.badge {
  background: #e0f2f1;
  color: #00796b;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.role { color: #6e8efb; font-weight: 600; margin-top: 4px; }

.details { margin: 20px 0; border-top: 1px solid #eee; padding-top: 20px; }
.details p { font-size: 0.9rem; color: #555; margin: 8px 0; }

.actions { display: flex; gap: 10px; }
.primary-btn { 
  background: #1a1a1b; color: white; border: none; 
  padding: 10px 20px; border-radius: 8px; cursor: pointer;
}
.secondary-btn { 
  background: transparent; border: 1px solid #ddd; 
  padding: 10px 20px; border-radius: 8px; cursor: pointer;
}
#map {
	height: 20rem;
	margin-bottom: 0.5rem;
	z-index: 1;
}
.navbuttons{
  display: flex;
  flex-direction: row;
  justify-content: space-between;;
}
.navbuttons .button{
  background-color: var(--primaryColor);
  color: #fff;
}
.homenews {
  display: grid;
  gap: 20px;
  /* Default: 1 column for mobile */
  grid-template-columns: 1fr;
  padding: 20px;
}
.card {
  border: 1px solid #ddd;
  border-radius: 12px; /* Adjust this for more or less curve */
  overflow: hidden;    /* Essential: clips the image to the rounded corners */
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
}
.card a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
}

.card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover; /* Crops the image to fit without stretching */
  object-position: var(--x, 50%) var(--y, 50%);
  display: block;
  transition: transform 0.4s ease-in-out;
}

.card h3 {
  padding: 10px;
  margin: 0;
  flex-grow: 1; /* Ensures the text area fills remaining space */
  border-top: 3px solid rgba(0, 0, 0, 0.6); 
}
.card:hover img {
  transform: scale(1.1); /* Zooms in by 10% */
}
/* Tablet / Medium Screens: 2 per row */
@media (min-width: 600px) {
  .homenews {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Wide Screens: 4 per row OR Featured first card */
@media (min-width: 1000px) {
  .homenews {
    /* OPTION A: Standard 4 in a row */
    grid-template-columns: repeat(4, 1fr);
    
    /* OPTION B: First one double width (Uncomment below to use) */
    /* grid-template-columns: 2fr 1fr 1fr; */
  }
  
  /* Use this only for Option B */
  /* .card:first-child { grid-column: span 2; } */
  
  .card img {
    height: 250px; /* Slightly taller on desktop */
  }
}
