.trix-button-group.trix-button-group--file-tools {
    display: none !important;
}

.full-width-div {
    position: absolute;
    /* Or position: fixed; if you want the div to stay even when scrolling */
    left: 0;
    right: 0;
    width: 100vw;
    /* Full viewport width */
    margin: 0;
    /* Remove any margins */
    /* padding: 20px; */
    /* Add some padding for aesthetics */
    /* background-color: rgb(12, 47, 39); */
    /* Background color */
    /* z-index: 1; */
    /* Ensures the element is above others */
    /* margin-bottom: 30rem; Add margin at the bottom for spacing below */
}

.card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    /* Ensures the image doesn't overflow */
}

.card-header {
    padding: 0;
    border: none;
    position: relative;
}

.card-img-top {
    width: 100%;
    height: 200px;
    /* Adjust as needed */
    object-fit: cover;
}

.article-card-img-top {
    width: 100%;
    height: 400px;
    /* Adjust as needed */
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.card-body {
    padding: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 0.9rem;
}

.card-footer {
    background-color: transparent;
    border-top: none;
    padding: 0.5rem 1rem;
}

.author-img {
    width: 30px;
    height: 30px;
}

.detail-author-img {
    width: 60px;
    height: 60px;
}

.text-truncate-fixed {
    height: 156px;
    /* Fixed height */
    overflow: hidden;
    /* Hide overflow */
    display: -webkit-box;
    /* Required for truncating in combination with line-clamp */
    -webkit-line-clamp: 4;
    /* Number of lines before truncation (optional) */
    -webkit-box-orient: vertical;
    /* Ensures the box behaves vertically */
    text-overflow: ellipsis;
    /* Add ellipsis at the end */
}

.hover-shadow {
    transition: box-shadow 0.3s ease-in-out;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    /* Custom shadow effect */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.1); */
}

.nav-link {
    position: relative;
    padding-bottom: 8px;
    font-weight: 500;
    white-space: nowrap;
    /* Prevents text from breaking into multiple lines */

}

.nav-link.active {
    color: #004400;
    /* Adjust the color as needed */
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: orange;
    transition: width 0.3s;
}

.nav-link.active::after {
    width: 100%;
}