/* assets/styles/previews/linkedin.css */
.linkedin-preview {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-width: 550px;
    margin: auto;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
}
.linkedin-header {
    display: flex;
    align-items: center;
    padding: 12px 16px 8px;
}
.linkedin-profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}
.linkedin-username {
    font-weight: 600;
}
.linkedin-timestamp {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}
.linkedin-post-text {
    padding: 8px 16px;
    white-space: pre-wrap;
    line-height: 1.5;
}
.linkedin-media {
    width: 100%;
}
.linkedin-media img,
.linkedin-media video {
    width: 100%;
    height: auto;
    display: block;
}
.linkedin-actions {
    display: flex;
    justify-content: space-around;
    padding: 4px 8px;
    border-top: 1px solid #e0e0e0;
}
.linkedin-action-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 4px;
}
.linkedin-action-button:hover {
    background-color: rgba(0, 0, 0, 0.08);
}
.linkedin-action-button .icon {
    margin-right: 8px;
}

@media (max-width: 420px) {
    .linkedin-action-button span {
        display: none;
    }
    .linkedin-action-button .icon {
        margin-right: 0;
    }
}
