.line-clamp-short {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.line-clamp {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.image-box {
    border: 1px dashed #e2e8f0;
    border-radius: 8px;
    padding: 10px 50px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-box .btn-delete-image {
    position: absolute;
    top: 0px;
    right: 10px;
    padding: 10px;
}


.card-information {
    width: calc((100% / 4) - 24px);
    box-sizing: border-box;
    margin: 0px 12px 30px;
    padding: 0px !important;
    border-radius: 0;
    background-color: unset;
    align-items: stretch;
    border: 2px solid transparent;
}

.card-information:hover {
    box-shadow: 0px 4px 6px 0px rgb(44, 44, 44, 0.1);
    border: 2px solid #0094FF;
    transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
}

.card-information .content {
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 0px;
    height: calc(100% - 52px);
    padding: 0;
    margin: 0;
    box-shadow: 0px 4px 6px 0px rgb(44, 44, 44, 0.04);
}

.card-information .content .header {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
}

.card-information .content .header .info {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0px;
}

.card-information .content .header .info .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 0px;
    border-radius: 5px;
}

.card-information .content .header .info .logo img {
    width: 150px;
    height: 150px;
    margin: 5px;
    object-fit: fill;
}

.card-information .content .body {
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    padding: 10px;
}

.card-information .content .body .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.card-information .content .body .info h3 {
    font-size: 14px;
    width: 100%;
}

.card-information .content .body .info h3 span {
    line-height: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.card-information .content .body .info .icon {
    padding: 2px 8px 6px 4px;
}

.card-information .content .body .info .icon img {
    width: 16px;
    height: 16px;
}

.card-information .content .body .info span {
    margin: 4px;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.card-information .footer {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-top: 1px solid #e2e8f0;
    background-color: #fff;
    height: 52px;
    padding: 10px;
}

.card-information .footer .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.card-information .footer .info .owner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-information .footer .info .owner img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 50%;
}


.card-information .footer .info .owner p {
    font-size: 14px;
    font-weight: 500 !important;
    color: #333 !important;
    margin: unset;
}



.card-product {
    width: calc((100% / 4) - 24px);
    box-sizing: border-box;
    margin: 0px 12px 30px;
    padding: 0px !important;
    border-radius: 0;
    background-color: unset;
    align-items: stretch;
    border: 2px solid transparent;
}

.card-product:hover {
    box-shadow: 0px 4px 6px 0px rgb(44, 44, 44, 0.1);
    border: 2px solid #0094FF;
    transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
}

.card-product .content {
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 0px;
    height: calc(100% - 52px);
    padding: 0;
    margin: 0;
    box-shadow: 0px 4px 6px 0px rgb(44, 44, 44, 0.04);
}

.card-product .content .header {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
}

.card-product .content .header .info {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0px;
    position: relative;
}

.card-product .content .header .info .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 0px;
    border-radius: 5px;
}

.card-product .content .header .info .logo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-product .content .header .info .favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-product .content .header .info .favorite .bi-heart {
    padding-top: 2px;
    width: 24px;
    height: 24px;
}

.card-product .content .header .info .favorite .bi-heart::before {
    font-size: 24px;
    color: #000;
}

.card-product .content .body {
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    padding: 10px;
}

.card-product .content .body .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.card-product .content .body .info h3 {
    font-size: 14px;
    width: 100%;
}

.card-product .content .body .info h3 span {
    line-height: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.card-product .content .body .info .icon {
    padding: 2px;
}

.card-product .content .body .info .icon img {
    width: 16px;
    height: 16px;
}

.card-product .content .body .info .icon i {
    width: 16px;
    height: 16px;
}

.card-product .content .body .info .icon i::before {
    font-size: 16px;
    color: #000;
}

.card-product .content .body .info span {
    margin: 4px;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.card-product .footer {
    background-color: #fff;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-top: 1px solid #e2e8f0;
    height: 52px;
    padding: 10px;
}

.card-product .footer .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.card-product .footer .info .owner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-product .footer .info .owner img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 50%;
}

.card-product .footer .info .owner p {
    font-size: 14px;
    font-weight: 500 !important;
    color: #333 !important;
    margin: unset;
}

.job-description {
    display: flex;
    flex-direction: column;
}

.job-description * {
    all: unset;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
}