﻿/* PV18 封面圖片滿版樣式 */
.coverImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

/* 確保圖片容器有固定高度 */
.col-md-5 .coverImg {
    min-height: 500px;
}

/* 圖片容器樣式 */
.img-container {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.shrink-text {
    font-size: clamp(10px, 90%, 16px); /* 跟隨容器大小縮放 */
    text-align: justify;
    text-align-last: justify;
}
