.p-showcase .ible-list{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1119px) {
	.p-showcase .ible-list{
	    grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (min-width: 1120px) {
	.p-showcase .ible-list{
	    grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 767px) {
    .p-showcase .col-sm-4 {
        width: 100%; 
    }
}
.p-showcase .ible-list .db-category-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 5px 0;
    padding: 20px 0 12px;
    border-bottom: 2px solid #707070;
}
.p-showcase .dbSearchDetail1Area,
.p-showcase .dbSearchDetail2Area{
	display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 8px;
}
.p-showcase .db-search-title {
    width: 106px;
    border-left: 8px solid #A1C1CB;
    padding-left: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.p-showcase .db-search-title p {
    font-size: 1.125rem;
    font-weight: 700;
}
.p-showcase .dbSearchDetail1Text, 
.p-showcase .dbSearchDetail2Text {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 106px);
}
.p-showcase .db-search-text.dbSearchDetail1,
.p-showcase .db-search-text.dbSearchDetail2 {
    margin: 5px 6px;
}
.p-showcase .dbSearchDetail2Text .db-search-text:nth-child(n + 7) {
    display: none !important;
}
.p-showcase .search-result-cell a {
    position: relative;
    display: inline;
    background-image: linear-gradient(90deg, #A1C1CB, #A1C1CB);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 30%;
    transition: all 0.5s ease-in-out;
}
.p-showcase .search-result-cell a:hover {
  background-size: 100% 30%;
}
