        .pr-container {
            direction: ltr;
            margin: 0 auto;
            margin-top: var(--margin-top-botton);
            margin-bottom: var(--margin-top-botton);
            max-width: var(--max-width);
            width: 100%;
            height: auto;
            background-color: var(--bg-color);
            border: 3px solid var(--bg-stick);
            border-radius: var(--border-radius-md);
            display: flex;
            overflow: hidden;
            position: relative;
        }

        .pr-sidebar {
            width: 70px;
            background-color: var(--bg-stick);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 8px;
            padding: 20px 0;
            
        }

        .pr-main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .pr-content-area {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: repeat(3, 1fr);
            gap: 0;
        }

        .pr-picture-box {
            border: 2px solid var(--bg-stick);
            background-color: var(--bg-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .pr-picture-box:nth-child(1) {
            grid-column: 1;
            grid-row: 1 / 3;
            border-left: none;
            border-top: none;
        }

        .pr-picture-box:nth-child(2) {
            grid-column: 2;
            grid-row: 2 / 4;
            border-right: none;
            border-top: none;
        }
        
        .pr-picture-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: flex;
        }


        .pr-info-box {
            border: 2px solid #1a3a52;
            background-color: var(--bg-color);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            font-size: 24px;
            padding: 10px 15px;
            justify-content: left;
        }
        

        .pr-info-box:nth-child(3) {
            grid-column: 1;
            grid-row: 3;
            border-left: none;
            border-top: none;
        }

        .pr-info-box:nth-child(4) {
            grid-column: 2;
            grid-row: 1;
            border-right: none;
            border-top: none;
        }

        .pr-info-box-head{
            display: flex;
            width: 100%;
            justify-content: space-between;
        }
        .pr-info-box-head h3{
            font-size: 20px;
            margin-bottom: 0.5rem;
        }
        .pr-info-box p{
            font-size: 16px;
            margin-bottom: 1rem;
        }
        .pr-info-box a svg{
            color: var(--bg-stick);
            width: 25px;
            height: 25px;
            transition: all 0.2s ease-in-out;
        }
        .pr-info-box a:hover svg{
            color: var(--primary-color);
            transform: scale(1.2);
        }

        .pr-footer {
            height: 60px;
            background-color: var(--bg-stick);
            border-top: 2px solid va;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 24px;
        }
        .pr-footer p{
            background-color: var(--bg-color);
            height: 100%;
            width: 70%;
            display: flex;
            align-items: center;
            justify-content: left;
            padding-left: 10px;
            
        }

        .pr-arrow-section {
            width: 190px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

@media (max-width: 768px) {
    .pr-container {
        width: var(--mobile-margin-rl);
        max-width: 750px;
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .pr-container {
        width: var(--mobile-margin-rl);
        height: auto;
        flex-direction: column;
        border-radius: var(--border-radius-md);
        margin-top: 2vh;
        margin-bottom: var(--mobile-margin-tb);
    }

    .pr-sidebar {
        width: 100%;
        height: 60px;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        font-size: 24px;
        letter-spacing: 4px;
        padding: 0;
    }

    .pr-main-content {
        flex-direction: column;
    }

    .pr-content-area {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pr-picture-box {
        width: 100%;
        height: 320px;
        border-left: none !important;
        border-right: none !important;
        border-top: 2px solid #1a3a52;
        grid-column: auto !important;
        grid-row: auto !important;
    }
    .pr-info-box{
        width: 100%;
        min-height: 150px;
        border-left: none !important;
        border-right: none !important;
        border-top: 2px solid #1a3a52;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .pr-picture-box:first-child {
        border-top: none;
    }

    /* ترتیب المان‌ها در موبایل */
    .pr-picture-box:nth-child(1) {
        order: 1;
    }

    .pr-info-box:nth-child(3) {
        order: 2;
    }

    .pr-picture-box:nth-child(2) {
        order: 3;
    }

    .pr-info-box:nth-child(4) {
        order: 4;
    }

    .pr-picture-box {
        font-size: 28px;
    }

    .pr-info-box {
        font-size: 20px;
        min-height: 80px;
    }

    .pr-footer {
        height: 60px;
        padding: 0 15px;
        font-size: 20px;
        border-left: none;
        border-right: none;
    }

    .pr-arrow-section {
        width: 70px;
    }
    .pr-footer p{
        color: var(--text-dark);
        background-color: var(--bg-stick);
    }
}