/*
 Theme Name:   WPU1
 Theme URI:    https://generatepress.co
 Description:  WPUltra child theme for GeneratePress
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.event-list {
    display: grid;
    gap: 20px;
}
.event-item {
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 8px;
}
.event-item h3 {
    margin-top: 0;
}
/* Carousel Grid Layout */
.standardCarousel {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center; /* Center cards inside each grid column */
}

/* Individual Event Card */
.standardCarousel li {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}



/* Event Image */
.standardCarousel img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid #eee;
}

.dateChicklet {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 67px;
  height: 57px;
  min-width: 65px;
  min-height: 56px;
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  border-radius: 10px;
  padding: 6px 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  word-break: break-word;
	  border: 1px solid #fff; 
}


/* Card Content */
.description {
  padding: 15px;
}

/* Date Line */
.description time {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  color: #333;
}

/* Title */
.description h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #000;
  line-height: 1.3;
}

/* Location */
.description .location {
  font-size: 14px;
  color: #777;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .standardCarousel {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .standardCarousel li {
    max-width: 100%;
  }
}



.event-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: end;
}

.event-search-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.event-search-form input,
.event-search-form select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  min-width: 180px;
}

.event-search-form button {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
}

.event-search-form button:hover {
  background-color: #c61b24;
}

@media (max-width: 768px) {
  .event-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .event-search-form input,
  .event-search-form select,
  .event-search-form button {
    width: 100%;
  }
}


.dateChicklet {
  font-size: 12px;
  line-height: 1.2;
  padding: 6px 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .standardCarousel {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .standardCarousel li {
    max-width: 100%;
  }
}


figcaption{
	 font-size: 15px;
    color: grey;
    text-align: right;
}



/* Mega Menu Styles */
.mega-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
  position: relative;
  z-index: 9999;
  font-family: "Albert Sans", sans-serif;
}

.mega-menu-root {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.mega-menu-root > li {
  position: relative;
  padding: 1em 1.5em;
}

.mega-menu-root > li > a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.mega-menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: #f9f9f9;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5em 3em;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
}

.mega-menu-root > li:hover .mega-menu-dropdown {
  display: grid;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
}

.mega-menu-column a {
  color: #444;
  text-decoration: none;
  padding: 0.3em 0;
  transition: color 0.2s;
}

.mega-menu-column a:hover {
  color: #0073aa;
}
.mega-menu-wrapper {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  z-index: 9999;
}

.mega-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 1rem 0;
  position: relative;
}

.mega-menu > li {
  position: relative;
}

.mega-menu > li > a {
    font-weight: bold;
    text-decoration: none;
    color: #333;
    padding: 0px;
    display: block;
    cursor: pointer;
    font-size: 17px;
}

.mega-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 100vw;
  background-color: #f9f9f9;
  padding: 2rem 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mega-dropdown.open {
  display: block;
}

/* NEW: Inner content container */
.mega-dropdown-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 50px 0;
}

.mega-dropdown-inner a {
  color: #333;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s;
}

.mega-dropdown-inner a:hover {
  color: #0073aa;
}



.mega-dropdown a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.mega-dropdown a:hover {
  color: #0073aa;
}

/* Two-column layout for mega menu */
.mega-dropdown-inner.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.mega-dropdown-inner .column-left,
.mega-dropdown-inner .column-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mega-dropdown-inner .column-left a,
.mega-dropdown-inner .column-right a {
  padding: 0.25rem 0;
}

.mega-post-item {
  padding: 0.25rem 0;
}

.mega-post-item a {
  font-weight: normal;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.mega-post-item a:hover {
  color: #0073aa;
}

/* Container for latest posts inside the mega menu */
.latest-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.latest-post {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.latest-post img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 0px;
}

.latest-post h4 {
  font-size: 20px;
  color: #222;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.latest-post h4:hover {
  cursor: pointer;
}

.subcategory-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.subcategory-item {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  transition: border 0.3s;
  border: 4px solid transparent;
}

.icon-circle:hover {
  border: 4px solid var(--accent); /* Red on hover */
	cursor:pointer;
}

.icon-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 10px 5px;
}

.icon-item {
  text-align: center;
  font-size: 14px;
  color: #333;
}

.mega-dropdown-header {
  width: 100%;
  background-color: #f1f1f1;
  border-bottom: 1px solid #ddd;
}

.mega-dropdown-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 90px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.mega-dropdown-header img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mega-dropdown-header h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  color: #333;
  line-height: 1;
}

.mega-dropdown-inner{
	padding-top:50px;
	padding-bottom:50px;
	padding-left:30px;
	padding-right:30px;
}

.mega-dropdown-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-dropdown-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333;
  line-height: 1;
  margin-right: 60px; /* 👈 spacing to the link */
}

.header-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-title img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.header-title h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  color: #333;
  line-height: 1;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-left img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.header-left h3 {
  font-size: 35px;
  font-weight: 600;
  margin: 0;
  color: #333;
  line-height: 1;
}
/* Add spacing between heading and View All */
.mega-view-all {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: var(--accent) !important;
  transition: color 0.3s;
}


.mega-view-all svg {
    transition: transform 0.2s, fill 0.3s;  /* Ensure smooth transition */
    fill: currentColor;  /* Inherit the color from the parent element */
}

.mega-view-all:hover svg {
    fill: var(--accent);  /* Change color on hover */
}

.latest-post .post-category {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0px;
  margin-bottom: 0px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.latest-post .post-category:hover {
  color: #0073aa; /* Matches hover color of your post titles */
}


.explore-title h3 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom:0px;
	margin-left:5px;
}


@media (max-width: 1024px) {
  .mega-menu-wrapper {
    display: none;
  }
}


.entry-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0.5rem;
}

.entry-categories {
    text-transform: uppercase;
  color: var(--accent);
    font-size: 14px;
    font-weight: 500;
}

.entry-date {
    font-size: 12px;
    color: #777;
}

.entry-header {
    text-align: left;
    margin-bottom: 2rem;
}

.entry-title {
    margin: 0;
}


/* Post Meta Section */
.entry-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0.5rem;
}

/* Categories */
.entry-categories {
    text-transform: uppercase;
    color: var(--accent); /* Use your red accent */
    font-size: 14px;
    font-weight: bold;
}

/* Date */
.entry-date {
    font-size: 12px;
    color: #777;
}

/* Header and Title */
.entry-header {
    text-align: left;
    margin-bottom: 10px;
}

.entry-title {
    margin: 0;
}

/* Author under Title */
.entry-author {	
	text-align:center;
    font-size: 14px;
    color: #777;
    margin-top: 8px;
    margin-bottom: 20px;
}

/* Post Thumbnail */
.post-thumbnail {
    text-align: center;
    margin-bottom: 2rem;
}

/* Post Content */
.entry-content {
    max-width: 720px;
    margin: 0 auto;
}


.share-btn {
  fill: black;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid black;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.share-btn:hover {
  fill: var(--accent);
  border-color: var(--accent);
}

.copy-tooltip {
  display: none;
}

.copyLinkBtn:hover .copy-tooltip {
  display: block;
}

.image-credit {
  font-size: 12px;
  color: grey;
  text-align: right;
  font-style: italic;
}
.post-share-section {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.share-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* Key for side-by-side */
    gap: 1rem;
    flex-wrap: wrap;
}

/* Wrapper around buttons and caption */
.post-share-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Share buttons container */
.share-buttons {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

/* Each button */
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid black;
    fill: black;
    transition: all 0.3s ease;
}

.share-btn:hover {
    fill: var(--accent);
    border-color: var(--accent);
}

/* Caption */
.image-credit {
    font-size: 12px;
    color: grey;
    font-style: italic;
    text-align: right;
    flex: 1;
}

/* MOBILE: Stack vertically */
@media (max-width: 768px) {
    .post-share-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .image-credit {
        text-align: left;
        width: 100%;
    }
}

.copyLinkBtn {
    position: relative; /* <-- Add this */
}

.copy-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px); /* 8px above the button */
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    background: var(--accent);
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.copy-tooltip.show {
    display: block;
    opacity: 1;
}

.single-post .entry-content {
    max-width: 100%;
    margin: 0;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .post-share-meta {
        margin-top: 1rem;
    }
}

.entry-categories a {
    color: var(--accent); /* or your theme color */
}

.single-post .entry-content p, 
.single-post .entry-content li, 
.single-post .entry-content blockquote {
    font-family: Georgia, serif !important;
    font-weight: 300 !important;
    font-size: 20px !important;
    line-height: 32px !important;
}

.main-post-excerpt,
.sidebar-post-excerpt,
.grid-post-excerpt,
.entry-summary {
  font-family: Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 20px !important;
  line-height: 32px !important;
	COLOR
}

@media (max-width: 768px) {
  .main-post-excerpt,
  .sidebar-post-excerpt,
  .grid-post-excerpt,
  .entry-summary {
    font-family: Georgia, serif !important;
    font-weight: 300 !important;
    font-size: 17px !important;
    line-height: 22px !important;
  }
}

img.lazyload {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.lazyload.lazyloaded {
    opacity: 1;
}


#loading-spinner {
    animation: rotate 1s linear infinite;
    margin: 0 auto;
}



@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.latest-post h4 a {
  color: #222;
  text-decoration: none;
}

.latest-post h4 a:hover {
  color: #222; /* Prevent color change on hover */
  text-decoration: none;
}

img.lazyload-image {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.rightArrow{
    margin-top: 12px;
    MAX-WIDTH: 18PX;
    MARGIN-LEFT: -10PX;
}

.circleLinkText {
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
	    font-size: 16px;
}

.icon-circle-link:hover .circleLinkText {
    color: inherit; /* 👈 keeps the same color on hover */
}


.whats-on-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
    background: url('https://londonbulletin.ca/wp-content/uploads/2025/04/HeaderLondon.jpg') center center / cover no-repeat;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

.whats-on-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.whats-on-hero-inner {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.whats-on-hero-inner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.whats-on-hero-inner .search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.whats-on-hero-inner input[type="text"] {
    padding: 10px;
    width: 250px;
    border-radius: 0px;
    border: none;
}

.whats-on-hero-inner input[type="submit"] {
    padding: 10px 20px;
    background: var(--accent, #0073aa);
    border: none;
    color: white;
    border-radius: 0px;
    cursor: pointer;
}

/* Main content container */
.whats-on-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whats-on-hero {
        height: 200px;
    }

    .whats-on-hero-inner h1 {
        font-size: 32px;
    }

    .whats-on-hero-inner .search-box {
        flex-direction: column;
        align-items: center;
    }

    .whats-on-hero-inner input[type="text"] {
        width: 100%;
    }
}


.whats-on-wrapper{
	width:100%
}

.standardCarousel li a,
.standardCarousel li a:hover {
  text-decoration: none;
}

/* Date inside card */
.event-date time {
  font-size: 14px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

/* Title inside card */
.event-title h3 {
  font-size: 21px;
  color: #000;
  margin: 0 0 8px;
}

/* Location inside card */
.event-location p {
  font-size: 14px;
  color: #777;
	  align-items: center; /* Vertically center icon and text */

  margin: 0;
}

.locationText {
  margin: 0;
  font-size: 14px;
  color: #777;
  display: block; /* Flex handles layout now */
}

.location-icon {
  height: 40px !important;
  width: auto !important;
  object-fit: contain;
  fill: var(--accent) !important; /* make it accent colored if inline SVG */
  color: var(--accent) !important; /* fallback if needed */
	border-bottom:none !important;
	display:inline !important;
	margin-left:-10px;
	margin-right:-5px;
		
}

.event-location {
  display: flex; /* Important: Flexbox to align items side by side */
  align-items: center; /* Center them vertically */
  font-size: 14px;
  color: #777;
  margin-top: 8px; /* optional: spacing from title */
}
/* Primary Button (Accent Background) */
.button.primary {
  background-color: var(--accent) !important;
  color: #fff !important;
  border: none;
}

/* Outline Button (Accent Border and Text) */
.button.outline {
  background-color: #fff !important;
  color: var(--accent) !important;
  border: 2px solid var(--accent) !important;
}

/* Hover for Primary Button */
.button.primary:hover {
  background-color: #c61b24 !important; /* Darker accent */
  color: #fff !important;
  opacity: 0.9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Hover for Outline Button */
.button.outline:hover {
  background-color: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.facebookShareIcon {
  height: 26px;
  width: auto;
  fill: currentColor;
  color: #3b5998; /* Facebook blue */
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.whatsappShareIcon {
  height: 20px;
  width: auto;
  fill: currentColor;
  color: black; /* 👈 this controls the color */
}

.twitterShareIcon {
  height: 20px;
  width: auto;
  fill: currentColor;
  color: #1da1f2; /* Twitter/X blue */
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.linkShareIcon {
  height: 24px;
  width: auto;
  fill: currentColor;
  color: black; /* or gray: #777 */
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.facebookShareIcon:hover,
.whatsappShareIcon:hover,
.twitterShareIcon:hover,
.linkShareIcon:hover {
  opacity: 0.8;
}

.emailShareIcon {
  height: 24px;
  width: auto;
  fill: currentColor;
  color: black; /* Gmail red or use var(--accent) */
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.site-footer {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}





.related-posts-widget {
    margin: 20px 0;
}
.related-posts-widget h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  text-decoration: underline;
  text-decoration-color: black;
  text-underline-offset: 0.25em; /* adjust as needed */
  text-decoration-thickness: 3px; /* adjust weight */
}
.related-posts-widget ul {
    list-style: none;
    padding: 0;
}
.related-posts-widget li {
    margin-bottom: 5px;
}
.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-post-item {
    margin-bottom: 20px;
}

.related-post-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* MOBILE/TABLET layout: image + title side-by-side */
.related-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
    border-radius: 4px;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-post-text {
    flex: 1;
}

.related-meta {
    display: none;
}

.related-title {
    font-size: 1em;
    font-weight: 600;
    color: black;
    margin: 0;
}

/* DESKTOP layout */
@media (min-width: 1024px) {
	.related-post-item{
		margin-bottom:30px !important;
	}
    .related-post-link {
        display: block;
		margin-top:-5px;
    }

    .related-thumbnail {
        width: 100%;
        height: auto;
        margin: 0 0 10px 0;
        border-radius: 0;
    }

    .related-thumbnail img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .related-post-text {
        padding: 0;
    }

    .related-meta {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        margin-top: 6px;
    }

    .related-category {
        text-transform: uppercase;
        font-weight: 600;
        color: var(--accent); /* Replace with your theme accent if needed */
    }

    .related-date {
        color: #888;
    }

    .related-title {
font-size: 24px;
        line-height: 27px;        margin: 0;
        color: black;
		margin-top: -5px;
    }
}

@media (max-width: 1024px) {
  /* 1) Force links to be block-level so floats work */
  .single-post .related-posts-list .related-post-link {
    display: block !important;
  }

  /* 2) Float the thumbnail to the left */
  .single-post .related-posts-list .related-post-link .related-thumbnail {
    float: left !important;
    width: 95px !important;
    height:95px !important;
    margin-right: 0.75rem !important;
  }

  /* 3) Make the text container clear the float */
  .single-post .related-posts-list .related-post-link .related-post-text {
    overflow: hidden !important;
  }
	
    .related-title {
        font-size: 20px !important;
        font-weight: 600;
        color: black;
        margin: 0;
        line-height: 25px;
    }
}

/*──────────────────────────────────────────────────────
  Title: always black, no underline, no hover effect
──────────────────────────────────────────────────────*/
.single-post .related-post-item .related-post-link,
.single-post .related-post-item .related-post-link:hover {
  color: inherit !important;
  text-decoration: none !important;
}

.single-post .related-post-item .related-title a,
.single-post .related-post-item .related-title a:hover {
  color: #000 !important;
  text-decoration: none !important;
}

/*──────────────────────────────────────────────────────
  Category + Date: inline, spaced like a sentence
──────────────────────────────────────────────────────*/
/* Re-enable the meta line (it was display:none by default) */
.single-post .related-post-item .related-meta {
  display: inline-block !important;
  margin: 0 0 0.5rem !important;
  font-size: 0.85rem !important;
}

/* Force category & date to sit inline, with spacing */
.single-post .related-post-item .related-category,
.single-post .related-post-item .related-date {
  display: inline !important;
  margin-right: 1rem !important;
}

/* Remove any trailing margin on the date */
.single-post .related-post-item .related-date {
  margin-right: 0 !important;
}

/*──────────────────────────────────────────────────────
  1) Keep category link the same color on hover
──────────────────────────────────────────────────────*/
.single-post .related-post-item .related-category,
.single-post .related-post-item .related-category:hover {
  color: var(--accent) !important;     /* or #000 if you want black */
  text-decoration: none underline;     
}

/*──────────────────────────────────────────────────────
  2) Force the date into uppercase
──────────────────────────────────────────────────────*/
.single-post .related-post-item .related-date {
  text-transform: uppercase !important;
  color: #888 !important;               /* adjust if you’d like a different shade */
}

@media (max-width: 1024px) {
  /* hide the category + date line on phones/tablets */
  .single-post .related-post-item .related-meta {
    display: none !important;
  }

	.related-post-item{
        margin-bottom: 20px !important;
	
	}
	
	/* make each card a full-width block and force it below any floats */
.single-post .related-post-item {
  display: block !important;
  width: 100% !important;
  clear: both !important;
}

/* clearfix in case you have other floats inside */
.single-post .related-post-item::after {
  content: "" !important;
  display: table !important;
  clear: both !important;
}

}


/* Sidebar 3×3 Icon Grid */
.sidebar-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
}
.sidebar-icon-item {
  text-align: center;
}
.sidebar-icon-circle-link {
  display: inline-block;
  text-decoration: none;
}
.sidebar-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: border 0.3s ease;
  border: 4px solid transparent;
}
.sidebar-icon-circle:hover {
  border-color: var(--accent);
}
.sidebar-circleLinkText {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
/* Wrapper for the Local Lowdown block */
.sidebar-lowdown {
}

.sidebar-lowdown-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  text-decoration: underline;
  text-decoration-color: black;
  text-underline-offset: 0.25em; /* adjust as needed */
  text-decoration-thickness: 3px; /* adjust weight */
	
}

.related-category {
  text-transform: uppercase;
}

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


.entry-title{text-align:center;}

.social-icons-footer {
  display: flex;
  justify-content: center;  /* Center children horizontally */
  gap: 16px;
  align-items: center;
  margin: 20px auto;  
}

.social-icons-footer-facebook{
width:34px !important;
height:34px !important;
}

.social-icons-footer a img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
}



.menu-view-all {
    font-weight: bold;
    padding: 10px;
    display: block;
    text-align: center;
    margin-top: 5px;
}

.menu-view-all a {
    color: var(--accent-color, #0073aa);
    text-decoration: none;
}

.menu-view-all a:hover {
    text-decoration: underline;
}

#mobile-header{
	padding:10px;	
}

.mc-subscribe-box {
  border: 1px solid #eee;
  padding: 20px;
  font-family: sans-serif;	
	margin-bottom:25px;
	margin-top:25px;
	background:#f1f1f1;
}

.mc-title {
  color: var(--accent);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0.5em;
	text-align:center;
}

.mc-description {
  margin-bottom: 1.5em;
  color: #444;
  text-align:center;
    font-size: 17px;
    line-height: 25px;
}

#mc-subscribe-form input[type="email"] {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1.25em;
  border: 1px solid #ccc;
  font-size: 1em;
  background:white;
}

.mc-label {
  margin-bottom: 30px;
	  font-weight: 600;
	    text-align: center;
    line-height: 25px;
    font-size: 22px;

}

#mc-subscribe-form label {
  display: block;
  margin-bottom: 0.5em;
  font-size: 20px;
	  font-weight: normal;
    line-height: 10px;
}

.mc-submit-btn {
  margin-top: 30px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75em 1.5em;
  font-size: 1em;
  cursor: pointer;
  width: 100%;
}

.mc-submit-btn:hover {
  background: #c00000;
}

.mc-submit-button{
	margin-top:15px;
	    max-width: 450px;
    width: 100%;
}

.mc-submit-button {
  display: block;
  margin: 30px auto 0 auto; /* top auto bottom auto */
}
.mc-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Two-column layout on large screens */
@media (min-width: 768px) {
  .mc-checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    align-items: start; /* Ensure alignment to the top of each column */
  }

  .mc-checkbox-group label {
    display: flex;
    align-items: center; /* Vertically center the checkbox and text */
    text-align: left;
    justify-content: flex-start; /* Ensure content doesn't center within the column */
  }
}


@media (max-width: 1024px) {
  .sidebar-emailForm {
    display: none !important;
  }

#mc-subscribe-form label {
    line-height: 20px;
}

}
.mc-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


.subscribeResponse{
	color:var(--accent);
	text-align:center;
}


.post-date {
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    /* Make Post Category + Post Date smaller on mobile */
    .post-category,
    .post-date {
        font-size: 13px;
    }
	  .post-category,
    .post-date {
        font-size: 13px;
    }
	}
	
	
.post-location-category{
    font-size:13px;
	color:var(--accent) !important;
	text-transform:uppercase;
}

.post-location-category a:hover,
.post-location-category a:focus{
	color:var(--accent) !important;

}


@media (max-width:768px){
    .post-location-category{
        display:none;     /* 👈 hide on mobile */
    }
}
	.post-location-link{
	display:inline-flex;
	align-items:center;
	gap:1px;
	color:var(--accent);
	text-decoration:none;
}
.post-location-link:hover,
.post-location-link:focus{
	color:var(--accent);          /* stay same on hover */
}
.loc-pin{
	width:12px;
	height:12px;
	fill:currentColor;            /* inherits accent colour */
}

/* hide entire location line on mobile, if desired */
@media (max-width:768px){
	.post-location-category{ display:none; }
}


.post-updates-wrapper {
  margin-top: 2em;
}
.post-updates {
  list-style: disc inside;
}
.post-updates li {
  margin-bottom: .5em;
}
.post-updates time {
  font-weight: bold;
  margin-right: .5em;
}


.homepage-subheading {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-decoration: underline;
    text-decoration-color: black;
    text-underline-offset: 0.25em;
    text-decoration-thickness: 3px;
	text-align:center;
}

.homepageh1{
	text-align:center;
    text-decoration-color: black;
    text-underline-offset: 0.25em;
    text-decoration-thickness: 3px;
	font-weight: 600;
	    text-align: center;
    font-size: 40px;
}


.image-credit{
	display:none;
}



/* =========================
   CARD CONTAINER + TOP DOUBLE LINE
   ========================= */

.place-card {
    position: relative;
    padding-top: 32px;   /* space below the top lines */
    margin-top: 32px;
    border-top: none;
    padding-bottom: 24px;
}

/* Full-width double line at top */
.place-card::before,
.place-card::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background: var(--accent) !important;
}

.place-card::before {
    top: 0;
    height: 2px;
}

.place-card::after {
    top: 5px;
    height: 1px;
    opacity: 0.7;
}

/* =========================
   TYPOGRAPHY / CONTENT
   ========================= */

.place-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.place-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
}

.place-byline {
    margin: 4px 0 4px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--accent) !important;
	font-style:italic;
}

.place-meta {
    margin: 2px 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #555;
}

.place-meta strong {
    font-weight: 600;
}

.place-written-content {
	margin-top: 20px;
    margin-bottom: 20px;
}

.place-written-content p {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #222;
}

/* =========================
   CONTACT LIST – 3/4 WIDTH DESKTOP, 100% MOBILE
   ========================= */

.place-contact-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: block;
    width: 75%;                  /* 3/4 width on desktop/tablet */
    border-top: 1px solid #e2e2e2;
}

.place-contact-item {
    border-bottom: 1px solid #e2e2e2;  /* 1px border between rows */
}

.place-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    line-height: 1.4;
    text-decoration: none;
    color: #000;                 /* text and icon color (via currentColor) */
    padding: 8px 0;
	    font-family: helvetica;

}

.place-contact-link:hover,
.place-contact-link:focus {
    text-decoration: underline;
}

/* SVG icons inherit link color via currentColor */
.place-contact-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    display: block;
	color: var(--accent) !important;
}

/* Hooks for per-type styling if you want */
.place-contact-link--address { /* color overrides if desired */ }
.place-contact-link--telephone { }
.place-contact-link--website { }

/* Example: make website icon/link slightly different color */
/* .place-contact-link--website { color: #0055aa; } */

@media (max-width: 768px) {
    .place-card {
        padding-top: 28px;
        padding-bottom: 20px;
        margin-top: 24px;
    }

    .place-title {
        font-size: 30px;
    }

    .place-contact-list {
        width: 100%;   /* full width on mobile */
    }
}


.place-emphasis{
	font-weight:bold;
	color:black;
	font-family: helvetica;

}