
.pm-section {
    background: #F1EDEB;
}

.pm-container {
    max-width: 1669px;
    margin: 0 auto;
    padding: 0px 104px 72px;
}

.pm-hero {
    width: 100%;
    height: 546px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.pm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542362567-b07e54358753?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.pm-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .20) 52%, rgba(0, 0, 0, 0) 72%);
}

.pm-hero-text {
    position: absolute;
    left: 40px;
    bottom: 36px;
    color: #fff;
    font-size: 36px;
    line-height: 1.22;
    font-weight: 500;
    max-width: 760px;
}

.pm-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    column-gap: 68px;
    align-items: start;
    padding-top: 60px;
}

.pm-list h3 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    color: #0f3a35;
    margin: 0 0 24px;
}

.pm-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    row-gap: 18px;
}

.pm-list li {
    font-size: 36px;
    line-height: 1.2;
    color: #8EA5A0;
}

.pm-card {
    border-radius: 16px;
    background: linear-gradient(145deg, #0F5A51, #0C403D);
    color: #fff;
    padding: 24px 24px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.pm-card h4 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    letter-spacing: .02em;
}

.pm-card p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
    opacity: .95;
}

.pm-thumb {
    width: 280px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background: #d9d9d9;
    margin: 6px 0 18px;
}

.pm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
    background: transparent;
    font-size: 13px;
    cursor: pointer;
}

.pm-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width:1100px) {
    .pm-container {
        padding: 40px 20px 56px
    }

    .pm-grid {
        grid-template-columns: 1fr;
        row-gap: 28px
    }

    .pm-hero {
        height: 260px
    }

    .pm-hero-text {
        font-size: 28px
    }
}

@media (max-width:600px) {
    .pm-container { padding: 24px 16px 36px; }
    .pm-hero { height: 220px; border-radius: 12px; }
    .pm-hero-text { font-size: 22px; left: 16px; bottom: 18px; max-width: 86%; }
    .pm-grid { grid-template-columns: 1fr; row-gap: 20px; padding-top: 28px; }
    .pm-list h3 { font-size: 24px; }
    .pm-list li { font-size: 18px; }
}

@media (min-width: 800px) and (max-width: 1600px) {
    .pm-container { max-width: 1335px; padding: 0 83px 58px; }
    .pm-hero { height: 437px; border-radius: 13px; }
    .pm-hero-text { left: 32px; bottom: 29px; font-size: 29px; max-width: 608px; }
    .pm-grid { column-gap: 54px; padding-top: 48px; }
    .pm-list h3 { font-size: 32px; margin: 0 0 19px; }
    .pm-list ul { row-gap: 14px; }
    .pm-list li { font-size: 29px; }
    .pm-card { border-radius: 13px; padding: 19px 19px 16px; }
    .pm-card h4 { font-size: 13px; }
    .pm-card p { font-size: 12px; }
    .pm-thumb { width: 224px; height: 120px; border-radius: 10px; margin: 5px 0 14px; }
    .pm-btn { height: 29px; padding: 0 13px; font-size: 11px; gap: 8px; }
    .pm-btn svg { width: 13px; height: 13px; }
}

