/**
 * OM LinkedIn Feed - Frontend Styles
 *
 * Main stylesheet for LinkedIn feed display
 */

/* ===========================
   Container & Grid
   =========================== */

.om-linkedin-feed-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f3f2ef;
}

/* ===========================
   Feed Header (Company Info)
   =========================== */

.om-linkedin-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
}

.om-linkedin-company-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.om-linkedin-company-logo,
.om-linkedin-company-logo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.om-linkedin-company-name {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0,0,0,0.9);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.om-linkedin-follower-count {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    margin: 0;
}

.om-linkedin-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0077B5;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
}

.om-linkedin-follow-btn:hover {
    background: #006399;
}

.om-linkedin-follow-btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================
   Feed Grid
   =========================== */

.om-linkedin-feed-grid {
    margin-bottom: 30px;
}

.om-linkedin-feed-grid::after {
    content: '';
    display: block;
    clear: both;
}

/* Isotope gutter sizer */
.om-linkedin-gutter-sizer {
    width: 20px;
}

/* ===========================
   Post Card
   =========================== */

.linkedin-card,
.om-linkedin-post-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 20px;
    width: calc(33.333% - 14px);
}

.om-linkedin-feed-container[data-columns="1"] .linkedin-card,
.om-linkedin-feed-container[data-columns="1"] .om-linkedin-post-card {
    width: 100%;
}

.om-linkedin-feed-container[data-columns="2"] .linkedin-card,
.om-linkedin-feed-container[data-columns="2"] .om-linkedin-post-card {
    width: calc(50% - 10px);
}

.om-linkedin-feed-container[data-columns="3"] .linkedin-card,
.om-linkedin-feed-container[data-columns="3"] .om-linkedin-post-card {
    width: calc(33.333% - 14px);
}

.om-linkedin-feed-container[data-columns="4"] .linkedin-card,
.om-linkedin-feed-container[data-columns="4"] .om-linkedin-post-card {
    width: calc(25% - 15px);
}

.linkedin-card:hover,
.om-linkedin-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ===========================
   New Card Header
   =========================== */

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.card-header .company {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.card-header .company-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-header .company-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-header .company-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
    line-height: 1.3;
}

.card-header time {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.card-header .linkedin-source {
    font-size: 13px;
    color: #0077B5;
    text-decoration: none;
    font-weight: 500;
    flex-shrink: 0;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.card-header .linkedin-source:hover {
    background: rgba(0, 119, 181, 0.08);
}

/* ===========================
   New Card Content
   =========================== */

.card-content {
    margin-bottom: 12px;
}

.card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 8px 0;
}

.card-content .hashtag {
    color: #0077B5;
    text-decoration: none;
    font-weight: 500;
}

.card-content .hashtag:hover {
    text-decoration: underline;
}

.card-content .read-more {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.card-content .read-more:hover {
    color: rgba(0, 0, 0, 0.9);
}

/* ===========================
   New Card Preview
   =========================== */

.card-preview {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.card-preview:hover {
    border-color: #0077B5;
}

.card-preview .preview-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.card-preview .preview-content {
    padding: 12px;
    background: #f8f9fa;
}

.card-preview .preview-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-preview .preview-domain {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

/* ===========================
   Card Media (without preview)
   =========================== */

.card-media {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: auto;
    display: block;
}

.card-media .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.card-media .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-media .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s;
}

.card-media .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===========================
   New Card Actions
   =========================== */

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

.card-actions .engagement {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-actions .likes,
.card-actions .comments {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.card-actions .share-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.card-actions .share-btn:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.9);
}

/* ===========================
   Post Header
   =========================== */

.om-linkedin-post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.om-linkedin-post-author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

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

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

.om-linkedin-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.om-linkedin-post-date {
    font-size: 12px;
    color: #666;
}

.om-linkedin-icon {
    color: #0077B5;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.om-linkedin-icon:hover {
    opacity: 0.8;
}

/* ===========================
   Post Content
   =========================== */

.om-linkedin-post-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    flex-grow: 1;
}

.om-linkedin-post-content p {
    margin: 0 0 10px 0;
}

.om-linkedin-read-more {
    color: #0077B5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.om-linkedin-read-more:hover {
    text-decoration: underline;
}

/* ===========================
   Post Media
   =========================== */

.om-linkedin-post-media {
    margin: 12px -16px;
    overflow: hidden;
}

.om-linkedin-post-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.om-linkedin-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.om-linkedin-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.om-linkedin-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s;
}

.om-linkedin-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lazy Loading */
.om-linkedin-lazy {
    background: #f0f0f0;
    min-height: 200px;
}

.om-linkedin-lazy.loaded {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===========================
   Link Preview
   =========================== */

.om-linkedin-link-preview {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    margin: 0 -16px 12px -16px;
    border-top: 1px solid #e0e0e0;
    background: #f8f8f8;
}

.om-linkedin-link-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.om-linkedin-link-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.om-linkedin-link-title {
    font-size: 14px;
    font-weight: 500;
    color: #0077B5;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.om-linkedin-link-title:hover {
    text-decoration: underline;
}

.om-linkedin-link-domain {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* ===========================
   Post Footer
   =========================== */

.om-linkedin-post-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
}

.om-linkedin-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.om-linkedin-stat svg {
    width: 16px;
    height: 16px;
}

.om-linkedin-share {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    text-decoration: none;
    margin-left: auto;
    transition: color 0.2s;
}

.om-linkedin-share:hover {
    color: #0077B5;
}

.om-linkedin-share svg {
    width: 16px;
    height: 16px;
}

/* ===========================
   Load More Button
   =========================== */

.om-linkedin-load-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.om-linkedin-load-more {
    background: #0077B5;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.om-linkedin-load-more:hover {
    background: #006399;
}

.om-linkedin-load-more:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.om-linkedin-loading {
    margin-top: 10px;
}

.om-linkedin-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0077B5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================
   Modal
   =========================== */

.om-linkedin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.om-linkedin-modal.active {
    display: block;
}

.om-linkedin-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.om-linkedin-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.om-linkedin-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.om-linkedin-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.om-linkedin-modal-prev,
.om-linkedin-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.om-linkedin-modal-prev {
    left: -50px;
}

.om-linkedin-modal-next {
    right: -50px;
}

.om-linkedin-modal-prev:hover,
.om-linkedin-modal-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.om-linkedin-modal-body {
    padding: 20px;
}

.om-linkedin-modal-post {
    padding: 20px 0;
}

.om-linkedin-modal-header {
    margin-bottom: 20px;
}

.om-linkedin-modal-content-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.om-linkedin-post-content-full {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.om-linkedin-post-content-full p {
    margin: 0 0 15px 0;
}

.om-linkedin-view-on-linkedin {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.om-linkedin-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077B5;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.om-linkedin-view-link:hover {
    text-decoration: underline;
}

.om-linkedin-share-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.om-linkedin-share-link:hover {
    color: #0077B5;
}

/* ===========================
   Empty State
   =========================== */

.om-linkedin-feed-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
    font-size: 16px;
}

/* ===========================
   Responsive Design
   =========================== */

@media screen and (max-width: 768px) {
    .linkedin-card,
    .om-linkedin-post-card {
        width: 100% !important;
        padding: 12px;
    }

    .om-linkedin-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .om-linkedin-modal-prev {
        left: 10px;
    }

    .om-linkedin-modal-next {
        right: 10px;
    }

    .om-linkedin-modal-body {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .om-linkedin-feed-container {
        padding: 10px;
    }

    .om-linkedin-author-avatar {
        width: 40px;
        height: 40px;
    }

    .om-linkedin-author-name {
        font-size: 13px;
    }

    .om-linkedin-post-date {
        font-size: 11px;
    }

    .om-linkedin-post-content {
        font-size: 13px;
    }

    .om-linkedin-load-more {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* ===========================
   STYLE 2 - Modern
   =========================== */

/* Container override for Style 2 */
.om-style2 {
    background: #f8f9fa;
}

.om-style2 .om-linkedin-feed-header {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: none;
}

/* Style 2 Card */
.om-style2 .s2-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

.om-style2 .s2-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
    transform: none;
}

/* Style 2 Header */
.s2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 10px;
}

.s2-company {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
}

.s2-company:hover .s2-company-name {
    color: #0077B5;
}

.s2-company-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.s2-logo-placeholder {
    background: #0077B5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.s2-company-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.s2-company-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
    line-height: 1.3;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.s2-header time {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.s2-linkedin-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    transition: background 0.2s;
}

.s2-linkedin-icon:hover {
    background: rgba(0, 119, 181, 0.08);
}

/* Style 2 Content */
.s2-content {
    margin-bottom: 14px;
}

.s2-content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 6px 0;
    word-wrap: break-word;
}

.s2-hashtag {
    color: #0077B5;
    text-decoration: none;
    font-weight: 500;
}

.s2-hashtag:hover {
    text-decoration: underline;
}

.s2-read-more {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.s2-read-more:hover {
    color: rgba(0, 0, 0, 0.8);
}

/* Style 2 Link Preview */
.s2-link-preview {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color 0.2s;
    background: #fff;
}

.s2-link-preview:hover {
    border-color: #0077B5;
}

.s2-preview-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.s2-preview-info {
    padding: 10px 14px;
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
}

.s2-link-preview-no-image .s2-preview-info {
    border-top: none;
}

.s2-preview-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s2-preview-domain {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
}

.s2-preview-domain svg {
    opacity: 0.6;
}

/* Style 2 Media */
.s2-media {
    margin: 0 -20px 14px;
    overflow: hidden;
}

.s2-media img {
    width: 100%;
    height: auto;
    display: block;
}

.s2-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.s2-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s2-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.9;
}

.s2-play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
}

/* Style 2 Footer */
.s2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #ebebeb;
}

.s2-engagement {
    display: flex;
    align-items: center;
    gap: 14px;
}

.s2-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 400;
}

.s2-stat svg {
    color: rgba(0, 0, 0, 0.4);
}

.s2-likes:hover svg {
    color: #e74c3c;
}

.s2-comments:hover svg {
    color: #0077B5;
}

.s2-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: all 0.2s;
}

.s2-share-btn svg {
    color: rgba(0, 0, 0, 0.4);
}

.s2-share-btn:hover {
    background: rgba(0, 119, 181, 0.06);
    border-color: #0077B5;
    color: #0077B5;
}

.s2-share-btn:hover svg {
    color: #0077B5;
}


/*STYLE-2*/

.om-style2 {
    background: transparent;
}

/*header*/
.om-style2 .om-linkedin-feed-header {
    border: 0;
    /*max-width: 430px;*/
    /*background: transparent;*/
    /*margin: auto;*/
}
.om-style2 .om-linkedin-company-logo,
.om-style2 .om-linkedin-company-logo-placeholder {
    width: 70px;
    height: 70px;
    padding: 5px;
    border-radius: 50px;
    border: 1px solid #f8f8f8;
}
/**/

.om-style2 .s2-card {
    border-radius: 8px;
    /*background: rgb(248, 248, 248);*/
    border: 1px solid #f8f8f8;
}
.om-style2 .s2-card:hover {
    box-shadow: none;
    border-color: transparent;
}
.om-style2 .s2-company-logo {
    width: 40px;
    height: 40px;
    padding: 3px;
    border-radius: 50px;
    border: 1px solid #f8f8f8;
}
.om-style2 .s2-header svg {
    width: 40px;
    height: 40px;
    fill: rgb(10, 102, 194);
}
.om-style2 .om-linkedin-follower-count {
    font-size: 13px;
    line-height: 18px;
    color: rgba(17, 17, 17, 0.7);
}
.om-style2 .om-linkedin-company-name {
    font-size: 16px;
    color: #24448a;
}
.om-style2 .om-linkedin-follow-btn {
    /*background: rgb(25, 123, 255);*/
}
.om-style2 .s2-company-name {
    color: #24448a;
}
.om-style2 .om-linkedin-post-content-full p {
    font-size: 16px;
    line-height: 1.4;
}

/* ===========================
   Style 2 - Responsive
   =========================== */

@media screen and (max-width: 768px) {
    .om-style2 .s2-card {
        padding: 14px;
    }

    .s2-media {
        margin: 0 -14px 14px;
    }
    .om-linkedin-company-name {
        font-size: 14px;
    }
    .om-style2 .om-linkedin-company-name {
        font-size: 14px;
    }
    .om-style2 .om-linkedin-feed-header {
        padding: 0 10px 30px;
    }
    .om-linkedin-feed-header {
        padding: 24px 10px;
    }
}


@media screen and (max-width: 480px) {
    .s2-company-logo {
        width: 34px;
        height: 34px;
    }

    .s2-company-name {
        font-size: 13px;
    }

    .s2-content p {
        font-size: 13px;
    }

    .s2-stat {
        font-size: 12px;
    }

    .s2-share-btn {
        font-size: 11px;
        padding: 4px 10px;
    }
}
