    :root{
      --pm-green:#267336;
      --pm-green-dark:#1f5f2c;
      --pm-yellow:#f6be00;
      --pm-yellow-dark:#e0ab00;
      --pm-text:#1f2937;
      --pm-muted:#4b5563;
      --pm-bg:#ffffff;
      --pm-soft:#f8faf8;
      --pm-border:#d9e5db;
    }

    .pm_wrapper{
      max-width:1100px;
      margin:32px auto;
      background:var(--pm-bg);
      border:1px solid #e5e7eb;
      border-radius:24px;
      padding:36px 32px 42px;
      box-shadow:0 10px 30px rgba(0,0,0,.05);
    }

    .pm_wrapper img{
       border-radius: 20px;
	}	
		
    .pm_logo_note{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:20px;
      color:var(--pm-green);
      font-weight:700;
      font-size:14px;
      letter-spacing:.02em;
      text-transform:uppercase;
    }

    .pm_heading_row,
    .pm_section_heading,
    .pm_day_heading{
      display:flex;
      align-items:center;
      gap:14px;
    }

    .pm_icon_circle{
      width:52px;
      height:52px;
      min-width:52px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--pm-yellow);
      border:2px solid var(--pm-green);
      box-shadow:0 4px 12px rgba(38,115,54,.12);
    }

    .pm_icon_circle.small{
      width:42px;
      height:42px;
      min-width:42px;
    }

    .pm_icon_circle.alt{
      background:var(--pm-green);
      border-color:var(--pm-yellow);
    }

    .pm_icon{
      width:28px;
      height:28px;
      stroke:var(--pm-green);
      fill:none;
      stroke-width:2.1;
      stroke-linecap:round;
      stroke-linejoin:round;
      display:block;
    }

    .pm_icon.small{
      width:22px;
      height:22px;
    }

    .pm_icon.alt{
      stroke:var(--pm-yellow);
    }

    .pm_subtitle{
      font-size:19px;
      color:var(--pm-green-dark);
      font-weight:700;
      margin:0 0 20px;
    }

    .pm_intro p,
    .pm_content p,
    .pm_note_box p,
    .pm_cta_box p{
      margin:0 0 16px;
    }

    .pm_meta{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:14px;
      margin:22px 0 28px;
    }

    .pm_meta_item{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px 16px;
      background:var(--pm-soft);
      border:1px solid var(--pm-border);
      border-radius:18px;
      font-size:15px;
      font-weight:700;
      color:#111827;
    }

    .pm_section{
      margin-top:34px;
    }

    .pm_start_cards{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:14px;
      margin:18px 0 18px;
    }

    .pm_start_card{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:18px;
      background:var(--pm-soft);
      border:1px solid var(--pm-border);
      border-radius:18px;
    }

    .pm_start_card strong{
      display:block;
      margin-bottom:4px;
      color:#111827;
    }

    .pm_list{
      list-style:none;
      padding:0;
      margin:18px 0 0;
    }

    .pm_list li{
      display:flex;
      align-items:flex-start;
      gap:14px;
      margin-bottom:14px;
      padding:14px 16px;
      background:#fbfdfb;
      border:1px solid var(--pm-border);
      border-radius:18px;
    }

    .pm_route_line{
      margin-top:18px;
      padding:20px 22px;
      border-radius:18px;
      background:linear-gradient(90deg, rgba(246,190,0,.12) 0%, rgba(38,115,54,.06) 100%);
      border-left:6px solid var(--pm-green);
      font-weight:700;
    }

    .pm_day_block{
      margin-top:26px;
      padding:22px 22px 10px;
      background:#fff;
      border:1px solid #e7ece8;
      border-radius:22px;
    }

    .pm_location{
      color:var(--pm-green-dark);
      font-weight:700;
    }

    .pm_note_box{
      margin-top:18px;
      padding:22px;
      border:1px solid var(--pm-border);
      background:var(--pm-soft);
      border-radius:18px;
    }

    .pm_cta_box{
      margin-top:18px;
      padding:24px;
      border-radius:20px;
      background:linear-gradient(135deg, rgba(246,190,0,.14) 0%, rgba(38,115,54,.09) 100%);
      border:1px solid var(--pm-border);
    }

    .pm_divider{
      height:1px;
      background:linear-gradient(90deg, rgba(38,115,54,0) 0%, rgba(38,115,54,.22) 50%, rgba(38,115,54,0) 100%);
      margin:26px 0 0;
    }

    @media (max-width: 900px){
      .pm_meta{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }

      .pm_start_cards{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 640px){
      .pm_wrapper{
        margin:16px;
        padding:24px 18px 28px;
        border-radius:18px;
      }

    .pm_wrapper h2{
        font-size:24px;
      }

    .pm_wrapper h3{
        font-size:21px;
      }

      .pm_subtitle{
        font-size:17px;
      }

      .pm_meta{
        grid-template-columns:1fr;
      }

      .pm_icon_circle{
        width:48px;
        height:48px;
        min-width:48px;
      }

      .pm_icon_circle.small{
        width:40px;
        height:40px;
        min-width:40px;
      }

      .pm_icon{
        width:25px;
        height:25px;
      }

      .pm_icon.small{
        width:20px;
        height:20px;
      }
    }