/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 26 2025 | 13:05:05 */
.entry-content a {
  border-bottom: 2px solid;
}

/* Note box */

.note-box {
  background-color: #f4f3ed;       /* soft cream background */
  border-left: 6px solid #7eb197;  /* warm blush accent */
  padding: 12px 16px;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  color: #44312b;                  /* deep brown text */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.note-box::before {
  content: "✏️ Note:";
  font-weight: bold;
  color: #7eb197;                  /* blush icon/text */
  margin-right: 6px;
}

/* On-brand Tip Box Style */
.tip-box {
  background-color: #f4f3ed;       /* soft cream background */
  border-left: 6px solid #d39e8a;  /* warm blush accent */
  padding: 12px 16px;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  color: #44312b;                  /* deep brown text */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tip-box::before {
  content: "💡 Tip:";
  font-weight: bold;
  color: #d39e8a;                  /* blush icon/text */
  margin-right: 6px;
}

.related-links-box {
  background-color: #f4f3ed;      /* your cream color */
  border: 2px solid #d39e8a;      /* blush border */
  padding: 16px;
  margin: 24px 0;
  border-radius: 8px;
  color: #44312b;                 /* deep brown text */
}

.related-links-box h3 {
  margin-top: 0;
  color: #d39e8a;                 /* blush heading */
  font-size: 1.2rem;
}

.related-links-box ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.related-links-box a {
  color: #73868c;                 /* muted blue-gray links */
  text-decoration: none;
  border-bottom: 1px dashed #73868c;
}

.related-links-box a:hover {
  color: #44312b;                 /* deep brown on hover */
  border-bottom: 1px solid #44312b;
}

/* On-brand Disclosure Box Style */
.disclosure-box {
  background-color: #f4f3ed;       /* soft cream background */
  border-left: 6px solid #73868c;  /* muted blue-gray accent */
  padding: 12px 16px;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #44312b;                  /* deep brown text */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.disclosure-box::before {
  content: "⚖️ Disclosure:";
  font-weight: bold;
  color: #73868c;                  /* blue-gray icon/text */
  margin-right: 6px;
}

/* Styled affiliate banner block for Travelling Cooks */
.tc-affiliate-banner {
  background-color: #f4f3ed;        /* cream background */
  border: 2px solid #d39e8a;        /* blush border */
  border-radius: 10px;
  padding: 20px;
  margin: 40px auto;
  max-width: 450px;                 /* keeps it elegant */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
}

.tc-affiliate-banner img {
  display: block;
  margin: 10px auto 0;
  max-width: 250px;
  width: 100%;
  height: auto;
  float: none !important;
}

.tc-affiliate-banner .tc-affiliate-label {
  font-size: 0.85rem;
  color: #73868c;                   /* muted blue-gray */
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* UNIVERSAL TRAVELLING COOKS AFFILIATE BOX */
.tc-affiliate-box {
  background-color: #f4f3ed;        /* cream */
  border: 2px solid #d39e8a;        /* blush accent */
  border-radius: 10px;
  padding: 20px 22px;
  margin: 40px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  color: #44312b;                   /* deep brown text */
}

/* Heading */
.tc-affiliate-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #d39e8a;                    /* blush heading */
}

/* CTA Button */
.tc-affiliate-button {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  background-color: #d39e8a;         /* blush button */
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  transition: all 0.2s ease;
}

.tc-affiliate-button:hover {
  background-color: #b88471;         /* darker blush */
  color: #ffffff !important;
}
/* ===== Travelling Cooks Product Grid ===== */

.tc-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(240px, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
  margin: 20px 0 !important;
}

.tc-item {
  list-style: none !important;
  text-align: center !important;
}

.tc-img {
  width: 100% !important;
  max-width: 320px !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  display: block !important;
  margin: 0 auto 10px !important;
}

.tc-item h3 {
  margin: 8px 0 6px !important;
  font-size: 1.05rem !important;
}

.tc-item p {
  margin: 0 0 10px !important;
}

.tc-link {
  display: inline-block !important;
  background: #d97706 !important;
  color: #fff !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.tc-link:hover {
  background: #b45309 !important;
}

/* ===== Responsive grid ===== */
@media (max-width: 980px) {
  .tc-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .tc-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Fix for huge emojis in content */

img.emoji {
    width: 1em;
    display: inline-block;
}

/* NEWSLETTER FORM IN THE FOOTER */

footer .ml-form-embedBody{
	padding: 0 !important;
}

footer .ml-form-formContent{
	margin-bottom: 0 !important;
}