.page-type-blog h2 {
    text-align: left;
    font-size: 1.8em;
    font-weight:500;
    margin-top: 1em;
    margin-bottom: .6em;
}
.page-type-blog h3 {
    font-size: 1.3em;
    font-weight:200;
    /* border: 1px solid red; */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-type-blog h4 {
    text-align: left;
    font-size: 1.3em;
    font-weight: 100!important;;
}

div.photo-stack {
    margin-bottom: 2rem;
}



/* xl Extra large screens (≥1200px and up to <1400px) */
@media (max-width: 1399.98px) {
    
}

/* lg Large screens (≥992px and up to <1200px) */
@media (max-width: 1199.98px) {
}

/* md Medium screens (tablets, ≥768px and up to <992px) */
@media (max-width: 991.98px) {
}

/* sm Small screens (landscape phones, ≥576px and up to <768px) */
@media (max-width: 767.98px) {
    .page-type-landing h3, .page-type-landing h4 {
        font-weight: 400!important;
    }
}

/* xs Extra small screens (portrait phones, <576px) */
@media (max-width: 575.98px) {
}

.circle-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: center 0%;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ccc;
}
.circle-img-2 {
    border-radius: 50%;
    margin-bottom: 1rem;
}
.checklist-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* evenly spread items */
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}

/* Each block always has half width on desktop */
.checklist-block {
  flex: 0 1 calc(50% - 2rem); /* two per row with gap */
  box-sizing: border-box;
  min-width: 300px; /* don’t shrink too much */
}


/* Checklist styling */
.checklist.highlight-list {
  list-style: none;
  padding: 1rem;
  border: 2px solid var(--bs-primary-light, #ccc);
  border-radius: 8px;
  background: rgba(189, 208, 159, 0.08);
}

.checklist.highlight-list li {
  break-inside: avoid;
  margin: 0.4rem 0;
}

/* Mobile: stack full width */
@media (max-width: 767px) {
  .checklist-block {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* Blog Post Lists */
.blog-main-content ul {
  list-style: none !important;              /* remove default bullets */
  padding-left: 0 !important;
  margin: 1.25em 0 !important;
}

.blog-main-content ul li {
  position: relative;
  padding-left: 1.8em !important;
  margin-bottom: 0.6em;
  line-height: 1.6;
  font-size: 1.05em;
}

/* Custom bullet */
.blog-main-content ul li::before {
  content: "•";                             /* simple round bullet */
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1.2em;
  color: var(--bs-primary, #2a7ae4);        /* use your brand color */
  font-weight: bold;
}

/* Optional: Make nested lists subtle */
.blog-main-content ul ul li::before {
  color: var(--bs-secondary, #888);
  font-size: 1em;
}

.blog-main-content ul li::before {
  content: "";
  position: absolute;
  left: 0.4em;
  top: 0.7em;
  width: 0.4em;
  height: 0.4em;
  background-color: var(--bs-primary, #2a7ae4);
  border-radius: 50%;
}

.blog-main-content strong {
  color: var(--bs-primary-ultradark) !important;
  font-size: 1.1em !important;
}


.photo-blog-list {
  list-style: none !important;              /* remove default bullets */
  padding-left: 0 !important;
  margin: 1.25em 0 !important;
}




/** blog links */
.blog-links {
  /* background: #faf9f7; */
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.06);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

.blog-links h5 {
  color: #3b5429;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.blog-links h6 {
  color: #3b5429;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* remove browser bullets */
.blog-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0.3em 0 1em 0;
}

/* custom bullet with aligned wrap */
.blog-links ul li {
  position: relative;
  padding-left: 1.2em;       /* space for custom bullet */
  margin-bottom: 0.4em;
  line-height: 1.5;
}

/* single, consistent bullet */
.blog-links ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #4b6133;
  font-weight: bold;
  font-size: 1.1em;
}

/* link styling */
.blog-links ul li a {
  color: #b1441d;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.blog-links ul li a:hover {
  color: #7a2600;
  text-decoration: underline;
}

/* Base stacked layout */
.photo-stack {
  width: 100%;
}

/* Grouped layout: side-by-side, wrapping */
.grouped {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  margin-bottom: 20px;
}

/* Each image container */
.grouped .photo-stack-item {
  flex: 1 1 48%;
  max-width: 48%;
  display: flex;
  justify-content: center;
}

/* Image itself */
.grouped .photo-stack-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive: stack images vertically on small screens */
@media (max-width: 600px) {
  .grouped .photo-stack-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* Added Dec 20 SHoudl I rent a car */


.headline-card {
    padding: 1em;
    font-size:1.4rem;
    border: 3px solid var(--bs-primary-dark);
    border-radius: 8px;
    margin-bottom: 20px!important;
    text-align: center;
}

/* Full-bleed header image inside a padded Bootstrap card */

.page-block.card {
  overflow: hidden;
}

/* Pull the first image paragraph to card edges */
.page-block.card > p:first-of-type {
  margin: calc(-1 * var(--bs-card-spacer-y))
          calc(-1 * var(--bs-card-spacer-x))
          var(--bs-card-spacer-y)
          calc(-1 * var(--bs-card-spacer-x));
}

/* Neutralize inherited image styles for the day header map */
.page-block.card img.card-header-photo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;

  margin: 0;
  padding: 0;
  border: 0;

  object-fit: cover;
}

/* Optional: match card rounded corners */
.page-block.card img.card-header-photo {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
/* =========================================================
   BASE TABLE STYLING (calm, document-like)
   ========================================================= */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.1rem 0 0.8rem 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

thead th {
  text-align: left;
  font-weight: 600;
  padding: 0.6rem 0.7rem;
  border-bottom: 2px solid #ddd;
  background: #f7f7f7;
}

td,
th {
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: top;
}

/* Subtle row texture for skimming — FIXED */
tbody tr:nth-child(even) td {
  background: #fafafa;
}

/* Cost column */
td:nth-child(2),
th:nth-child(2) {
  text-align: right;
  white-space: nowrap;
}

/* Time column */
td:nth-child(3),
th:nth-child(3) {
  text-align: right;
  white-space: nowrap;
}

/* Total row background ONLY (no semantic border here) */
table tr:last-child td {
  background: #fbfcfb;
}
/* Odd rows */
tbody tr:nth-child(odd) td {
  background: #ffffff;
}

/* Even rows */
tbody tr:nth-child(even) td {
  background: #f5f5f5;
}


/* =========================================================
   MOBILE TUNING
   ========================================================= */

@media (max-width: 700px) {
  table {
    font-size: 0.9rem;
  }

  td,
  th {
    padding: 0.5rem 0.55rem;
  }
}


.no-padding-card {

}