/* ---- Attachment component ---- */
a.post-attachment {
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px;
    width: 318px;
    height: 60px;
    background: #E6ECF1;
    border-radius: 20px 0 20px 0;
    padding: 0 24px;
    text-decoration: none !important;
    transition: background 0.2s ease;
    box-sizing: border-box;
}

a.post-attachment:hover {
    background: #dce4ed;
    text-decoration: none !important;
}

a.post-attachment .post-attachment-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

a.post-attachment .post-attachment-icon img {
    display: block;
    margin: 0;
    padding: 0;
}

a.post-attachment .post-attachment-text {
    color: #013759;
    font-family: "Red Hat Display";
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0%;
    vertical-align: middle;
    min-width: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
	text-align: left;
}
