.content-detail-box,
.page-detail-box {
    position: absolute;
    top: 420px;
    left: 50%;
    width: 1200px;
    max-width: 94%;
    transform: translateX(-50%);
    padding: 34px 26px 26px;
}

.content-detail-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;

    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.95);

    box-shadow:
        0 0 0 1px rgba(79, 187, 233, 0.5),
        0 8px 18px rgba(9, 60, 100, 0.25);
}

.content-detail-title,
.page-title-box {
    position: relative;
    z-index: 2;

    margin-top: 18px;
    padding: 13px 20px;
    border-radius: 10px;

    background: linear-gradient(90deg, rgba(15, 110, 169, 0.95), rgba(79, 187, 233, 0.75));
    border: 1px solid rgba(255, 255, 255, 0.8);

    color: #ffffff;
    font-size: 24px;
    font-weight: 600;

    text-shadow:
        0 1px 0 #0a5182,
        0 0 10px rgba(120, 225, 255, 0.7);

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.page-title-box {
    margin-top: 0;
}

.content-detail-text,
.page-content-box {
    position: relative;
    z-index: 2;

    margin-top: 16px;
    padding: 22px;
    border-radius: 12px;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(226, 245, 255, 0.80));
    border: 1px solid rgba(96, 190, 235, 0.45);

    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.9);

    color: #1b5a80;
    font-size: 15px;
    line-height: 1.9;
}

.content-detail-text img,
.page-content-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.content-detail-text a,
.page-content-box a {
    color: var(--fz-ice-600);
    font-weight: 500;
    text-decoration: underline;
}

.content-detail-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}

.content-detail-text table,
.content-detail-text th,
.content-detail-text td {
    border: 1px solid rgba(96, 190, 235, 0.55);
}

.content-detail-text th,
.content-detail-text td {
    padding: 8px;
}

.content-detail-text th {
    background: rgba(79, 187, 233, 0.22);
    color: var(--fz-ice-700);
}

.content-back {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    text-align: center;
}

.content-back a {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 999px;

    border: 2px solid rgba(255, 255, 255, 0.95);
    background: linear-gradient(180deg, #a9f0ff 0%, #49bfec 45%, #0f6ea9 100%);

    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    text-shadow: 0 1px 0 #1b6d9c;

    box-shadow:
        0 0 14px rgba(79, 187, 233, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition: 0.2s ease;
}

.content-back a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

@media (max-width: 1220px) {
    .content-detail-box,
    .page-detail-box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 24px auto 40px auto;
    }
}
