.request-detail-page{
    max-width: 900px;
    margin: 40px 50px;
    padding: 0 20px 60px;
}

.back-link{
    margin-bottom:20px;
}

.back-link a{
    color:#20204e;
    font-weight:600;
}

.post-type-label{
    display:inline-flex;
    align-items:center;
    padding:6px 14px;
    border-radius:999px;
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.request-title{
    font-size:25px;
    font-weight:800;
}

.meta-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.industry-badge,
.meta-badge{
    display:inline-flex;
    align-items:center;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
  color: #fff;
}

.meta-badge{
    background:#dedede;
}

.request-image-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin: 5px 0 30px;
}

.request-image-item {
    display: block;
    position: relative;
    overflow: hidden;

    width: 100%;
    aspect-ratio: 4 / 3;


    text-decoration: none;
}

.request-image-item img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.request-image-item:hover img {
    transform: scale(1.04);
    opacity: 0.9;
}

@media screen and (max-width: 600px) {
    .request-detail-page {
        margin: 25px auto;
        padding: 0 15px 50px;
    }

    .request-image-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .request-image-item {
        border-radius: 9px;
    }
}

.info-table-wrap{
    margin-bottom:30px;
}

.info-table{
    width:100%;
    border-collapse:collapse;
}

.info-table th{
    width:180px;
    padding:14px;
    background:#f7f8fc;
    text-align:left;
    color:#20204e;
    border-bottom:1px solid #eceff5;
}

.info-table td{
    padding:14px;
    border-bottom:1px solid #eceff5;
}

.body-section{
    margin-top:35px;
}

.body-section h2{
    font-size:22px;
    color:#20204e;
    margin-bottom:15px;
    padding-bottom:10px;
    border-bottom:3px solid #20204e;
}

.body-text{
    padding:24px;
    background:#f8faff;
    border-radius:16px;
    line-height:2;
    font-size:15px;
}

.contact-area{
    text-align:center;
    margin-top:40px;
}

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:280px;
    padding:15px 30px;
    background:#20204e;
    color:#fff;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:.2s;
}

.contact-btn:hover{
    transform:translateY(-2px);
}

.own-post-note{
    display:inline-block;
    background:#f0f1f8;
    color:#20204e;
    padding:12px 20px;
    border-radius:999px;
    font-weight:700;
}

.company-link{
    color:#20204e;
    font-weight:700;
    text-decoration:none;
}

.company-link:hover{
    text-decoration:underline;
}

.report-success {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #eef8f1;
    color: #26733b;
    font-size: 14px;
}

.report-box {
    margin-top: 24px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.report-box summary {
    cursor: pointer;
    color: red;
    font-size: 14px;
  font-weight: bold;
}

.report-form {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.report-form label {
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.report-form select,
.report-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
}

.report-submit {
    width: fit-content;
    padding: 9px 18px;
    border: none;
    border-radius: 999px;
    background: #20204e;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.report-submit:hover {
    opacity: 0.85;
}

