.tag-description {
    margin: 1rem auto;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    font-family: tenon, Adjusted Arial Fallback, sans-serif;
    color: #363636;
    font-size: 19px;
    margin-bottom: 75px;
}

.tag-description img {
    width: 100% ;  /* Set a fixed maximum width */
    height: auto;
    width: auto;
    object-fit: cover;    /* Ensure image covers the area without distortion */
}

/* Add horizontal line after the description */
.tag-description:after {
    content: '';
    display: block;
    width: 100px;  /* Width of the line */
    height: 1px;   /* Thickness of the line */
    background-color: #000;  /* Color of the line */
    margin: 2rem auto 0;  /* Space above and center alignment */
}