.home-prize-text {
	font-size: 1.3em;
	color: #ffffff;
}

.text-decoration-none {
	text-decoration: none !important;
}

.prize_winner_found {
	font-size: 1.2em;
	font-weight: bold;
	color: #6FBF54;
	margin-bottom: 0;
}

.prize_placement {
	font-family: 'Lato';
	font-weight: bold;
	font-size: 1.6em;
	text-transform: uppercase;
}

.prize_name {
	font-weight: bold;
	font-size: 1.8em;
	color: #1C4440;
}

.prize_value {
	font-weight: bold;
	font-size: 2em;
}

.prize_sponsor {
	font-size: 1.25em;
	font-weight: bold;
}

.prize_divider {
	border: 0;
	border-bottom: 1px solid #1C4440;
}

.custom-query-item {
	background: #ffffff;
	border-radius: 10px;
	padding: 15px 20px;
	text-align: center;
}

.custom-query-loop {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.custom-query-loop > .custom-query-item:first-child {
  grid-column: 1 / -1;
}

/* Mobile layout remains unchanged */
@media (min-width: 768px) {
  .custom-query-loop {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* For the featured item, add 10% margin on left and right */
  .custom-query-loop > .custom-query-item:first-child {
    margin-left: 10%;
    margin-right: 10%;
  }
  
  /* For the featured item, display image and info side by side */
  .featured-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  
  .featured-image,
  .featured-info {
    flex: 1;
  }
  
  .featured-info {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .custom-query-loop {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Container makes the table horizontally scrollable on small viewports */
.responsive-table-container {
    width: 100%;
    overflow-x: auto;
}

/* Table styles */
.prizes-other-table {
    width: 100%;
	border-collapse: collapse;
}

/* Table header and cell styling with no text wrapping */
.prizes-other-table th,
.prizes-other-table td {
    white-space: nowrap;
    padding: 8px;
    border: 1px solid #111111;
}

.prizes-other-table th {
	text-align: left;
	background: #1C4440;
	color: #ffffff;
}