.elementor-1332 .elementor-element.elementor-element-3f009baa{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-39198f9e */:root {
    --ldc-primary: #1CD991;
    --ldc-primary-dark: #16b978;
    --ldc-dark: #1a1c23;
    --ldc-gray: #6b7280;
    --ldc-light-gray: #f3f4f6;
    --ldc-white: #ffffff;
    --ldc-card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --ldc-card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --ldc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
.ldc-container {

    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.ldc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.ldc-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--ldc-dark);
    margin: 0;
    position: relative;
    display: inline-block;
}

.ldc-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--ldc-primary);
    border-radius: 3px;
}

.ldc-count {
    background: var(--ldc-light-gray);
    color: var(--ldc-gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Grid Layout */
.ldc-grid {
    display: grid;
    grid-template-columns: repeat(var(--ldc-columns), 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .ldc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ldc-grid {
        grid-template-columns: 1fr;
    }
    
    .ldc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Card Design */
.ldc-card {
    position: relative;
    perspective: 1000px;
}

.ldc-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--ldc-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--ldc-card-shadow);
    transition: var(--ldc-transition);
    transform-style: preserve-3d;
}

.ldc-card:hover .ldc-card__inner {
    transform: translateY(-5px);
    box-shadow: var(--ldc-card-shadow-hover);
}

.ldc-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.ldc-card__link {
    display: block;
    width: 100%;
    height: 100%;
}

.ldc-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ldc-transition);
}

.ldc-card:hover .ldc-thumbnail {
    transform: scale(1.05);
}

.ldc-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.ldc-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--ldc-primary);
    color: var(--ldc-white);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    z-index: 1;
}

.ldc-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ldc-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ldc-category {
    background: var(--ldc-light-gray);
    color: var(--ldc-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ldc-card__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--ldc-dark);
}

.ldc-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ldc-card__title a:hover {
    color: var(--ldc-primary);
}

.ldc-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ldc-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ldc-gray);
}

.ldc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: var(--ldc-primary);
    color: var(--ldc-white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--ldc-transition);
    white-space: nowrap;
}

.ldc-button:hover {
    background-color: var(--ldc-primary-dark);
    transform: translateY(-2px);
}

/* Alerts */
.ldc-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.ldc-alert--error {
    background-color: #fee2e2;
    color: #b91c1c;
}

.ldc-alert--info {
    background-color: #dbeafe;
    color: #1d4ed8;
}

/* Icons */
.ldc-icon {
    flex-shrink: 0;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ldc-card {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.ldc-card:nth-child(1) { animation-delay: 0.1s; }
.ldc-card:nth-child(2) { animation-delay: 0.2s; }
.ldc-card:nth-child(3) { animation-delay: 0.3s; }
.ldc-card:nth-child(4) { animation-delay: 0.4s; }
.ldc-card:nth-child(5) { animation-delay: 0.5s; }
.ldc-card:nth-child(6) { animation-delay: 0.6s; }/* End custom CSS */