/* Blog Card Styles */
.blog-card {
    display: block;
    text-decoration: none;
    height: 100%;
}

.blog-card:hover {
    text-decoration: none;
}

/* Line clamp utility for excerpts */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* LinkedIn embed container */
.linkedin-embed-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: var(--grayscale-200);
    border-radius: 20px;
    overflow: hidden;
}

.linkedin-embed-container iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 12px;
}

/* Breadcrumb styling */
.breadcrumb a {
    text-decoration: underline;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-120);
}

/* Responsive adjustments */
@media screen and (max-width: 750px) {
    .blog-card {
        max-width: 100%;
    }

    .linkedin-embed-container iframe {
        min-height: 400px;
    }
}
