.foundoraio-cat-showcase-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

.f-cat-section {
    margin-bottom: 30px;
}

.f-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.f-cat-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.f-cat-view-all {
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.f-cat-view-all:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.f-cat-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .f-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .f-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.f-cat-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: visible;
    transition: transform 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}


.f-cat-image-link {
    display: block;
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.f-cat-thumbnail-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #f3f4f6;
    border-radius: 16px;
    overflow: visible;
}

.f-cat-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.f-cat-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-radius: 16px;
}

.f-cat-badge-wrapper {
    position: absolute;
    top: -1px;
    left: -1px;
    background: #ffffff;
    padding: 13px 16px 16px 13px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    z-index: 2;
}

.f-cat-badge-wrapper::before,
.f-cat-badge-wrapper::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 100% 100%, transparent 16px, #ffffff 16.5px);
}

.f-cat-badge-wrapper::before {
    top: 0;
    right: -16px;
}

.f-cat-badge-wrapper::after {
    bottom: -16px;
    left: 0;
}

.f-cat-badge {
    background: #eff6ff;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

.f-cat-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.f-cat-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.f-cat-post-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.f-cat-post-title a:focus,
.f-cat-post-title a:active,
.f-cat-post-title a:hover {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.f-cat-post-title a:hover {
    color: #2563eb;
}

.f-cat-excerpt {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.f-cat-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
    margin-top: auto;
}

.f-cat-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

.f-cat-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.f-cat-author-name {
    color: #111827;
    font-weight: 600;
}

.f-cat-separator {
    color: #d1d5db;
}

.f-cat-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Force remove any borders, outlines, or shadows on hover for links and the card */
.f-cat-card,
.f-cat-card:hover,
.f-cat-card a,
.f-cat-card a:hover,
.f-cat-card a:focus,
.f-cat-card a:active,
.f-cat-image-link:hover,
.f-cat-post-title a:hover {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}