body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    overflow: hidden;
}

.gallery-wrapper {
    width: 1100px;
    border: 1px solid #ccc;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    padding: 10px;
}

.gallery-container {
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.image-page {
    flex-shrink: 0;
    width: 1080px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    box-sizing: border-box;
}

.image-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    overflow: hidden;
}

.image-title-container {
    /* ±âÁ¸ ½ºÅ¸ÀÏ À¯Áö */
    padding: 8px 5px;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
    margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-align: center; /* Á¦¸ñ ÅØ½ºÆ®¸¦ Ç×»ó Áß¾ÓÀ¸·Î À¯Áö (Ãß°¡) */

    /* ÆÄ½ºÅÚÅæ ¹è°æ»ö Ãß°¡ */
    background-color: #e0f2f7; /* ¿¬ÇÑ ÇÏ´Ã»ö */
    /* ´Ù¸¥ ÆÄ½ºÅÚÅæ »ö»ó ¿¹½Ã */
    /* background-color: #fce4ec; /* ¿¬ÇÑ ºÐÈ«»ö */
    /* background-color: #fff9c4; /* ¿¬ÇÑ ³ë¶õ»ö */
    /* background-color: #f1f8e9; /* ¿¬ÇÑ ¿¬µÎ»ö */
}

.image-title {
    font-size: 1.1em;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.image-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
    background-color: #fcfcfc;
    border-radius: 0 0 8px 8px;
    border: 1px solid #eee;
}

.gallery-image {
    width: 100%;
    height: 180px; /* ÀÌ¹ÌÁöÀÇ °íÁ¤ ³ôÀÌ */
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.image-description-container {
    background-color: #f9f9f9;
    padding: 8px 5px;
    border-top: 1px solid #eee;
    margin-top: 5px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -1px 3px rgba(0,0,0,0.05);
    height: 120px; /* ¼³¸í ±¸¿ªÀÇ °íÁ¤ ³ôÀÌ */
    overflow-y: auto; /* ³»¿ëÀÌ ³ÑÄ¡¸é ½ºÅ©·Ñ¹Ù »ý¼º */
    display: flex;
    flex-direction: column;
}

.description-item {
    font-size: 0.9em;
    color: #555;
    line-height: 1.4;
    margin-bottom: 5px;
    white-space: normal;
}

.description-item:last-child {
    margin-bottom: 0;
}

.description-item strong {
    color: #333;
    min-width: 60px;
    display: inline-block;
}