@charset "utf-8";

/* 새글 스킨 (latest) */
.themestore-container {
    display:flex;
    flex-direction: column;
    gap:1rem;
    padding:0.75rem
}
.themestore { 
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:1rem;
}
.themestore-list {
    display:flex;
    flex-direction: column;
}
.themestore-list .themestore-list-image {
    position: relative;
    display: flex;
    overflow: hidden;
}
.themestore-list .themestore-list-image::after {
    content: "";
    width: 100%;
    padding-bottom: 100%;
}
.themestore-list .themestore-list-image img { 
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.themestore-list:hover .themestore-list-image img {
    transform:scale(1.05);
}

.themestore-list h4.subject {
    text-align: center;
    font-size:1rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 0.25rem;
}
.themestore-list p.subtitle {
    text-align: center;
    font-size:0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.lt_more {
    width: fit-content;
    margin-left: auto;
    font-size:0.875rem;
    color:#06c;
    position: relative;
}
.lt_more::after {
    position: absolute;
    content:"";
    border-bottom: solid 1px #06c;
    bottom:0;
    left: 0; 
    transition: all .3s ease;
    width:0;
}
.lt_more:hover::after {
    width: 100%;
}
.lt_more:focus::after {
    width: 0;
    right:0;
    left:unset;
}

.themestore-title {
    font-size:2em;
    text-align: center;
    padding:1rem;
    margin-top: 2rem;
}