/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2026 | 05:54:24 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 


/* ========================================
   HERITAGE ARTICLE FEATURE BLOCK
======================================== */

.mrr-heritage-guide {
  --mrr-red: #c90000;
  --mrr-dark-red: #970000;
  --mrr-charcoal: #252525;
  --mrr-text: #444444;
  --mrr-light: #f7f5f2;
  --mrr-border: #e4e0db;
  --mrr-white: #ffffff;

  width: 100%;
  max-width: 1000px;
  margin: 35px auto 50px;
  font-family: inherit;
  color: var(--mrr-text);
}

.mrr-heritage-guide *,
.mrr-heritage-guide *::before,
.mrr-heritage-guide *::after {
  box-sizing: border-box;
}

/* Intro panel */

.mrr-guide-intro {
  position: relative;
  overflow: hidden;
  padding: 42px;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    rgba(29, 29, 29, 0.98),
    rgba(63, 24, 24, 0.96)
  );
  border-radius: 16px;
  color: var(--mrr-white);
}

.mrr-guide-intro::after {
  content: "";
  position: absolute;
  top: -65px;
  right: -65px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.mrr-guide-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mrr-guide-intro h2 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}

.mrr-guide-intro p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

/* Step cards */

.mrr-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mrr-step-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  background: var(--mrr-white);
  border: 1px solid var(--mrr-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.055);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.mrr-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 0, 0, 0.32);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

.mrr-step-number {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  background: var(--mrr-red);
  border-radius: 50%;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.mrr-step-card h3 {
  margin: 0 0 12px;
  color: var(--mrr-charcoal);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.mrr-step-card p {
  margin: 0;
  color: var(--mrr-text);
  font-size: 15px;
  line-height: 1.7;
}

.mrr-step-label {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 12px;
  background: #f9eeee;
  border-radius: 30px;
  color: var(--mrr-dark-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.mrr-step-watermark {
  position: absolute;
  right: 18px;
  bottom: -17px;
  color: rgba(201, 0, 0, 0.045);
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* Important note */

.mrr-important-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  margin: 24px 0;
  padding: 24px 28px;
  background: #fff7e7;
  border-left: 5px solid #d29b2d;
  border-radius: 10px;
}

.mrr-note-icon {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: #d29b2d;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.mrr-important-note strong {
  display: block;
  margin-bottom: 5px;
  color: #332a19;
  font-size: 17px;
}

.mrr-important-note p {
  margin: 0;
  color: #5b503d;
  font-size: 15px;
  line-height: 1.65;
}

/* Comparison section */

.mrr-comparison {
  padding: 38px;
  background: var(--mrr-light);
  border: 1px solid var(--mrr-border);
  border-radius: 16px;
}

.mrr-comparison-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.mrr-comparison-heading h2 {
  margin: 0 0 10px;
  color: var(--mrr-charcoal);
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.25;
}

.mrr-comparison-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.mrr-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mrr-comparison-card {
  padding: 28px;
  background: var(--mrr-white);
  border-radius: 12px;
}

.mrr-comparison-card:first-child {
  border-top: 4px solid var(--mrr-red);
}

.mrr-comparison-card:last-child {
  border-top: 4px solid var(--mrr-charcoal);
}

.mrr-comparison-card h3 {
  margin: 0 0 17px;
  color: var(--mrr-charcoal);
  font-size: 21px;
  line-height: 1.3;
}

.mrr-comparison-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mrr-comparison-card li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  font-size: 15px;
  line-height: 1.6;
}

.mrr-comparison-card li:last-child {
  margin-bottom: 0;
}

.mrr-comparison-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--mrr-red);
  font-weight: 700;
}

/* Mobile */

@media (max-width: 767px) {
  .mrr-heritage-guide {
    margin: 30px auto 40px;
  }

  .mrr-guide-intro {
    padding: 30px 24px;
    border-radius: 12px;
  }

  .mrr-guide-intro p {
    font-size: 16px;
  }

  .mrr-step-grid,
  .mrr-comparison-grid {
    grid-template-columns: 1fr;
  }

  .mrr-step-card {
    min-height: auto;
    padding: 25px;
  }

  .mrr-comparison {
    padding: 28px 20px;
  }

  .mrr-important-note {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}



/* Heritage article mid-page checklist */

.mrr-heritage-checklist {
  margin: 38px 0;
  padding: 30px;
  background: #f7f5f2;
  border: 1px solid #e4e0db;
  border-radius: 14px;
}

.mrr-heritage-checklist-header {
  margin-bottom: 22px;
}

.mrr-heritage-checklist-header h2 {
  margin: 0 0 8px;
  color: #252525;
  font-size: 26px;
  line-height: 1.25;
}

.mrr-heritage-checklist-header p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.65;
}

.mrr-heritage-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.mrr-heritage-checklist-item {
  position: relative;
  padding: 20px 18px 20px 48px;
  background: #ffffff;
  border-radius: 10px;
  color: #333333;
  font-size: 15px;
  line-height: 1.55;
}

.mrr-heritage-checklist-item::before {
  content: "✓";
  position: absolute;
  top: 20px;
  left: 18px;
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: #c90000;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .mrr-heritage-checklist {
    padding: 24px 20px;
  }

  .mrr-heritage-checklist-grid {
    grid-template-columns: 1fr;
  }
}

