.pr-header-046fa71c {
    margin-bottom: 40px;
}

.pr-heading-046fa71c {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 15px;
}

.pr-paragraph-046fa71c {
    font-size: 16px;
    color: #666;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pr-header-046fa71c[style*="text-align: left"] .pr-paragraph-046fa71c {
    margin-left: 0;
}

.pr-header-046fa71c[style*="text-align: right"] .pr-paragraph-046fa71c {
    margin-right: 0;
}

.pr-grid-046fa71c {
    display: grid;
    gap: 30px;
}

.pr-card-046fa71c {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
}

.pr-card-046fa71c:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pr-bg-046fa71c {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.pr-card-inner-046fa71c {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pos-left .pr-card-inner-046fa71c { flex-direction: row; gap: 20px; }
.pos-right .pr-card-inner-046fa71c { flex-direction: row-reverse; gap: 20px; }

.pr-p-img-046fa71c img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}
.pos-left .pr-p-img-046fa71c img, .pos-right .pr-p-img-046fa71c img {
    width: 100px; max-height: 100px; margin-bottom: 0;
}

.pr-stars-046fa71c { color: #f5b301; margin-bottom: 10px; font-size: 14px; }
.pr-title-046fa71c { margin: 0 0 10px; font-size: 18px; font-weight: 600; }
.pr-text-046fa71c { font-size: 15px; line-height: 1.6; color: #555; margin-bottom: 20px; flex-grow: 1; }

.pr-meta-046fa71c { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.pr-avatar-046fa71c { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.pr-author-info-046fa71c { display: flex; flex-direction: column; }
.pr-name-046fa71c { font-size: 14px; color: #111; }
.pr-verified-046fa71c { color: #4caf50; font-size: 12px; }
.pr-date-046fa71c { font-size: 12px; color: #999; }

.pr-p-name-046fa71c { display: inline-block; font-size: 12px; color: #000; text-decoration: underline; }

/* Popup */
.pr-popup-overlay-046fa71c {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}
.pr-popup-overlay-046fa71c.active { opacity: 1; }
.pr-popup-overlay-046fa71c .pr-card-046fa71c {
    max-width: 600px; width: 100%;
    transform: scale(0.9);
    transition: transform 0.3s;
    cursor: default;
}
.pr-popup-overlay-046fa71c.active .pr-card-046fa71c { transform: scale(1); }
.pr-popup-close-046fa71c {
    position: absolute; top: 20px; right: 20px;
    background: transparent; border: none; color: #fff;
    font-size: 24px; cursor: pointer;
}
