.pm-wrap, .pm-wrap * { box-sizing: border-box; }

.pm-wrap {
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

.pm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.pm-card {
    border: 1px solid #1D4D5E;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .2s ease;
}

.pm-img-link {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.pm-img,
.pm-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pm-img-placeholder { background: #f2f2f2; }

.pm-card-body {
    padding: clamp(14px, 1.6vw, 20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pm-date {
    font-family: 'Roboto', sans-serif;
    color: #444444;
    font-size: clamp(13px, 1.1vw, 16px);
}

.pm-title {
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    font-size: clamp(16px, 1.6vw, 32px);
    line-height: 1.4;
}

.pm-title a { color: #1a1a1a; text-decoration: none; font-weight: 500; text-transform: capitalize; }
.pm-title a:hover { color: #F58232; }

.pm-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 16px);
    color: #F58232;
    text-decoration: none;
    margin-top: auto;
}

.pm-learn-more svg { transition: transform .2s ease; }
.pm-learn-more:hover svg { transform: translateX(3px); }

.pm-empty {
    text-align: center;
    color: #888;
    margin: 30px 0;
}

.pm-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(24px, 3vw, 34px);
}

.pm-loadmore-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 1.6vw, 20px);
    border: 1px solid #F58232;
    background: transparent;
    color: #F58232;
    padding: clamp(8px, 1vw, 10px) clamp(20px, 2.6vw, 30px);
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.pm-loadmore-btn:hover { background: #F58232; color: #fff; }

@media (max-width: 980px) {
    .pm-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .pm-grid { grid-template-columns: 1fr; }
}