@charset "utf-8";

/*photo news*/
.photo-board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4열 */
    gap:50px; 
}
.photo-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}
.photo-card:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.thumbnail-wrapper {
    width: 100%;
    height: 300px;
    background-color: #f2f2f2;
}
.thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-title {
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    height: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.contents img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 10px auto;
}

@media (max-width: 1920px){
	.photo-board-grid {gap:30px;}
	.thumbnail-wrapper { height:230px;}
	
}

@media (max-width:1024px){
	.photo-board-grid { grid-template-columns: repeat(3, 1fr);gap:30px 15px;}
	
}

@media (max-width:800px){
	.thumbnail-wrapper { height:200px;}
	
}

@media (max-width:640px){
	.photo-board-grid { grid-template-columns: repeat(2, 1fr);gap:15px; }
	.thumbnail-wrapper { height:150px;}
	
}

@media (max-width:400px){
	.photo-board-grid { grid-template-columns: repeat(1, 1fr); }
	.thumbnail-wrapper { height:200px;}
}