.col-site {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px;
}

.col-lg-6 {
    margin: 0 auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
}

    .col-lg-6 img {
        border-radius: 15px 15px 0 0;
        width: 100%;
        height: 500px;
    }

.bar {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 10px 0;
    padding: 0 10px;
}

.icon-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: #DAA520;
}

    .icon-text .fa {
        font-size: 20px;
    }

    .icon-text span {
        font-weight: 500;
    }

.text-site {
    padding: 10px;
}

.col-lg-4 {
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    padding: 10px;
    border-radius: 15px;
}

.public-item-site {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .public-item-site a {
        text-decoration: none;
        color: black;
    }

.last-public-item {
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 125px;
}

    .last-public-item:hover {
        transform: translateY(-5px);
    }

    .last-public-item img {
        height: 100%;
        width: 40%;
    }

.text {
    padding: 10px;
}

.date {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: #DAA520;
}

.text h5 {
    margin-bottom: 0;
}

.text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 991px) {
    .col-lg-6 {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 600px) {
    .col-lg-6 img {
        height: 300px;
    }

    .icon-text {
        font-size: 14px;
    }

        .icon-text .fa {
            font-size: 18px;
        }
}

@media only screen and (max-width: 525px) {
    .date {
        font-size: 10px;
        font-weight: 600;
    }

    .text h5 {
        font-size: 16px;
    }

    .text p {
        font-size: 13px;
    }
}
