/* LinkedIn Company Posts Plugin Styles */

/* Carousel Wrapper */
.linkedin-posts-carousel-wrapper {
    position: relative;
    max-width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Roboto, Arial, sans-serif;
    margin: 20px 0;
}

/* Horizontal Carousel */
.linkedin-posts-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.linkedin-posts-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Individual Post Cards */
.linkedin-post-card {
    flex: 0 0 300px;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.linkedin-post-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e1e5e9;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.1);
    color: #c36;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* LinkedIn Post Header in Cards */
.linkedin-post-card .linkedin-post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #f3f6f8;
    flex-shrink: 0;
}

.linkedin-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.linkedin-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.linkedin-default-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A66C2;
    border-radius: 50%;
}

.linkedin-author-details {
    display: flex;
    flex-direction: column;
}

.linkedin-author-name {
    font-weight: 600;
    font-size: 13px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 2px;
}

.linkedin-author-followers {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
}

.linkedin-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.linkedin-post-date {
    color: #666;
    font-size: 11px;
    font-weight: 400;
}

.linkedin-logo {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.linkedin-logo:hover {
    opacity: 1;
}

/* Post Content in Cards */
.linkedin-post-card .linkedin-post-content {
    padding: 0 16px 16px;
    color: #333;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-height: 0;
}

.linkedin-post-card .linkedin-post-content.no-image {
    /* When there's no image, expand the text area */
    flex: 1;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 180px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0 16px 16px;
    border-radius: 8px;
}

.linkedin-post-card .linkedin-post-content.has-image {
    /* When there's an image, use compact text */
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/* Preview Image in Cards */
.linkedin-post-preview-image {
    position: relative;
    margin-top: auto;
    height: 180px;
    overflow: hidden;
}

.linkedin-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linkedin-image-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Post Modal Styles */
/* Override WordPress theme layout constraints for modal */
body.linkedin-modal-open .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none !important;
}

body.linkedin-modal-open .wp-site-blocks,
body.linkedin-modal-open .wp-block-group,
body.linkedin-modal-open .is-layout-constrained {
    max-width: none !important;
}

body.linkedin-modal-open {
    overflow: hidden !important;
}

.linkedin-modal {
    position: fixed !important;
    z-index: 10000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: rgba(0,0,0,0.85) !important;
    backdrop-filter: blur(5px);
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    transition: opacity 0.3s ease !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: none !important;
}

.linkedin-modal[style*="display: block"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.linkedin-modal * {
    box-sizing: border-box;
    max-width: none !important;
}

.linkedin-post-modal-content {
    position: relative !important;
    margin: 20px auto !important;
    padding: 0 !important;
    width: 90vw !important;
    max-width: 600px !important;
    max-height: calc(100vh - 40px) !important;
    min-width: auto !important;
    min-height: auto !important;
    background: white !important;
    border-radius: 16px !important;
    border: none !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 auto !important;
}

.linkedin-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.linkedin-modal-close:hover {
    color: #ff4444;
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.linkedin-post-modal-body {
    flex: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: calc(100vh - 80px) !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.linkedin-post-modal-body::-webkit-scrollbar {
    width: 8px;
}

.linkedin-post-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.linkedin-post-modal-body::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.linkedin-post-modal-body::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

/* Full Post Styles in Modal */
.linkedin-post-full {
    background: #fff;
    border-radius: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.linkedin-post-full .linkedin-post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid #e1e5e9;
    background: white;
    flex-shrink: 0;
}

.linkedin-post-full .linkedin-author-avatar {
    width: 48px;
    height: 48px;
}

.linkedin-post-full .linkedin-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.linkedin-post-full .linkedin-author-followers {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.linkedin-post-full .linkedin-post-date {
    font-size: 13px;
    color: #666;
}

.linkedin-post-full .linkedin-post-content {
    line-height: 1.5;
    color: #000;
    font-size: 15px;
    padding: 0 24px 16px;
    flex-shrink: 0;
    white-space: pre-wrap;
}

/* Post counter at bottom */
.linkedin-modal-counter {
    position: fixed !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    backdrop-filter: blur(10px) !important;
    z-index: 10002 !important;
    max-width: none !important;
}

.linkedin-post-full .linkedin-post-content p {
    margin-bottom: 16px;
}

.linkedin-post-full .linkedin-post-content p:last-child {
    margin-bottom: 0;
}

/* Post Navigation in Modal - Side Navigation */
.linkedin-modal-nav {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10002 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    max-width: none !important;
}

.linkedin-modal-nav:hover:not(.disabled) {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4) !important;
}

.linkedin-modal-nav.disabled {
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

.linkedin-modal-nav.linkedin-modal-prev {
    left: 30px !important;
}

.linkedin-modal-nav.linkedin-modal-next {
    right: 30px !important;
}

.linkedin-modal-nav svg {
    width: 24px !important;
    height: 24px !important;
    color: #0a66c2 !important;
}

.linkedin-modal-nav.disabled svg {
    color: #999 !important;
}

.linkedin-post-nav {
    display: none; /* Hide the old in-content navigation */
}

/* Modal Slideshow Styles */
.linkedin-modal-slideshow {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    margin: 0 0 16px 0;
    width: 100%;
}

.linkedin-slides-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    margin: 0;
    width: 100%;
}

.linkedin-slides-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.linkedin-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
}

.linkedin-slide.active {
    opacity: 1;
}

.linkedin-slide-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Slide Navigation */
.linkedin-slide-nav {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10001;
}

.linkedin-slide-btn {
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.linkedin-slide-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.linkedin-slide-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.linkedin-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.linkedin-slide-dot.active {
    background: white;
    transform: scale(1.2);
}

.linkedin-slide-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Text formatting in full posts */
.linkedin-post-full .linkedin-post-content .hashtag {
    color: #0a66c2;
    font-weight: 600;
    text-decoration: none;
    background: rgba(10, 102, 194, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    margin-right: 4px;
    display: inline-block;
    margin-bottom: 4px;
}

.linkedin-post-full .linkedin-post-content .hashtag:hover {
    background: rgba(10, 102, 194, 0.2);
    text-decoration: none;
}

.linkedin-post-full .linkedin-post-content .mention {
    color: #0a66c2;
    font-weight: 600;
    background: rgba(10, 102, 194, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.linkedin-post-full .linkedin-post-content .mention:hover {
    background: rgba(10, 102, 194, 0.2);
    text-decoration: none;
}

.linkedin-post-full .linkedin-post-content .post-link {
    color: #0a66c2;
    text-decoration: none;
    word-break: break-word;
    font-weight: 500;
    border-bottom: 1px dotted #0a66c2;
}

.linkedin-post-full .linkedin-post-content .post-link:hover {
    text-decoration: none;
    border-bottom: 1px solid #0a66c2;
}

/* Error and no posts styles */
.linkedin-error, 
.linkedin-no-posts {
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    margin: 16px 0;
    color: #721c24;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .linkedin-posts-carousel-wrapper {
        margin: 10px -10px;
    }
    
    .linkedin-posts-carousel {
        padding: 10px;
        gap: 15px;
    }
    
    .linkedin-post-card {
        flex: 0 0 280px;
        height: 350px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .linkedin-post-card .linkedin-post-header {
        padding: 12px;
    }
    
    .linkedin-author-avatar {
        width: 32px;
        height: 32px;
    }
    
    .linkedin-author-name {
        font-size: 12px;
    }
    
    .linkedin-author-followers {
        font-size: 10px;
    }
    
    .linkedin-post-date {
        font-size: 10px;
    }
    
    .linkedin-post-card .linkedin-post-content {
        font-size: 12px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
    
    .linkedin-post-preview-image {
        height: 140px;
    }
    
    .linkedin-post-modal-content {
        width: 95vw !important;
        max-height: calc(100vh - 20px) !important;
        margin: 10px auto !important;
        padding: 0 !important;
        max-width: 95vw !important;
        min-height: auto !important;
        min-width: auto !important;
        border-radius: 12px !important;
    }
    
    .linkedin-post-modal-body {
        max-height: calc(100vh - 60px) !important;
    }
    
    .linkedin-modal-close {
        top: 15px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .linkedin-modal-nav {
        width: 50px !important;
        height: 50px !important;
    }
    
    .linkedin-modal-nav.linkedin-modal-prev {
        left: 15px !important;
    }
    
    .linkedin-modal-nav.linkedin-modal-next {
        right: 15px !important;
    }
    
    .linkedin-modal-nav svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .linkedin-post-full .linkedin-post-header {
        padding: 20px 25px;
    }
    
    .linkedin-post-full .linkedin-author-avatar {
        width: 48px;
        height: 48px;
    }
    
    .linkedin-post-full .linkedin-author-name {
        font-size: 16px;
    }
    
    .linkedin-post-full .linkedin-post-content {
        padding: 0 20px 16px;
        font-size: 14px;
    }
    
    .linkedin-modal-slideshow {
        margin: 0 0 12px 0;
    }
    
    .linkedin-slide-nav {
        bottom: 12px;
        gap: 12px;
    }
    
    .linkedin-slide-btn {
        width: 32px;
        height: 32px;
    }
    
    .linkedin-slide-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .linkedin-slide-dot {
        width: 6px;
        height: 6px;
    }
    
    .linkedin-modal-counter {
        bottom: 15px;
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .linkedin-post-nav {
        padding: 15px 20px 0;
    }
    
    .linkedin-post-nav-btn {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 80px;
    }
    
    .linkedin-post-nav-btn span {
        display: none;
    }
    
    .linkedin-post-counter {
        font-size: 13px;
    }
}
.linkedin-post-content .location,
.linkedin-post-content .search,
.linkedin-post-content .medical,
.linkedin-post-content .thanks,
.linkedin-post-content .email,
.linkedin-post-content .pointer,
.linkedin-post-content .hospital,
.linkedin-post-content .idea,
.linkedin-post-content .praise,
.linkedin-post-content .video,
.linkedin-post-content .link,
.linkedin-post-content .star,
.linkedin-post-content .wave,
.linkedin-post-content .xray,
.linkedin-post-content .lightning {
    font-size: 18px;
    margin-right: 6px;
    display: inline-block;
}

.linkedin-post-content .bullet {
    color: #0a66c2;
    font-weight: bold;
    margin-right: 8px;
}

.linkedin-post-images {
    margin-bottom: 0;
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 16px;
    padding-bottom: 24px;
    display: grid;
    gap: 2px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

/* When there are no images, add bottom padding to content */
.linkedin-post-content:last-child {
    padding-bottom: 24px;
}

/* Single image */
.linkedin-images-count-1 {
    grid-template-columns: 1fr;
}

/* Two images */
.linkedin-images-count-2 {
    grid-template-columns: 1fr 1fr;
}

/* Three images */
.linkedin-images-count-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.linkedin-images-count-3 .linkedin-image-container:first-child {
    grid-row: 1 / 3;
}

/* Four or more images */
.linkedin-images-count-4,
.linkedin-images-count-5,
.linkedin-images-count-6,
.linkedin-images-count-7,
.linkedin-images-count-8,
.linkedin-images-count-9,
.linkedin-images-count-10 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.linkedin-image-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #f3f2ef;
    min-height: 200px;
}

.linkedin-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.linkedin-image-container:hover .linkedin-post-image {
    transform: scale(1.05);
}

.linkedin-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin-more-images {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

/* Modal Styles */
.linkedin-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.linkedin-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.linkedin-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.linkedin-modal-close:hover {
    color: #ccc;
}

#linkedin-modal-image {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.linkedin-modal-prev,
.linkedin-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 16px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.linkedin-modal-prev {
    left: 30px;
}

.linkedin-modal-next {
    right: 30px;
}

.linkedin-modal-prev:hover,
.linkedin-modal-next:hover {
    background-color: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.linkedin-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background-color: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .linkedin-image-container {
        min-height: 150px;
    }
    
    .linkedin-more-images {
        font-size: 20px;
    }
    
    .linkedin-modal-prev,
    .linkedin-modal-next {
        padding: 12px 16px;
        font-size: 20px;
    }
    
    .linkedin-modal-prev {
        left: 15px;
    }
    
    .linkedin-modal-next {
        right: 15px;
    }
}

.linkedin-post-footer {
    border-top: 1px solid #e1e5e9;
    padding-top: 16px;
}

.linkedin-post-footer a {
    color: #0a66c2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(10, 102, 194, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.linkedin-post-footer a:hover {
    background: rgba(10, 102, 194, 0.2);
    text-decoration: none;
    transform: translateY(-1px);
}

.linkedin-post-footer a::after {
    content: '→';
    margin-left: 8px;
    font-size: 16px;
}

.linkedin-error, 
.linkedin-no-posts {
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    margin: 16px 0;
    color: #721c24;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .linkedin-company-posts {
        max-width: 100%;
        margin: 0 -16px;
    }
    
    .linkedin-post {
        border-radius: 0;
        border-left: none;
        border-right: none;
        margin-bottom: 16px;
    }
    
    .linkedin-post-header {
        padding: 12px 16px;
    }
    
    .linkedin-author-info {
        gap: 10px;
    }
    
    .linkedin-author-avatar {
        width: 36px;
        height: 36px;
    }
    
    .linkedin-author-name {
        font-size: 13px;
    }
    
    .linkedin-author-followers {
        font-size: 11px;
    }
    
    .linkedin-post-date {
        font-size: 11px;
    }
    
    .linkedin-post-content {
        padding: 12px 16px 0;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .linkedin-post-content:last-child {
        padding-bottom: 16px;
    }
    
    .linkedin-post-images {
        margin-left: 16px;
        margin-right: 16px;
        margin-top: 12px;
        padding-bottom: 16px;
    }
    
    .linkedin-logo svg {
        width: 18px;
        height: 18px;
    }
}
