/* Article Card Block Styles */
.article-card-block {
    background: #ffffff;
    border: 1px solid #e8e9ea;
    border-radius: 24px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-card-block:hover {
    box-shadow: 0 4px 24px rgba(255, 0, 0, 0.16);
}

/* Header */
.article-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8e9ea;
}

.article-card-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-card-logo {
    width: auto;
    height: 42px;
    max-width: 340px;
    object-fit: contain;
    border-radius: 8px;
}

h2.article-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.article-card-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dc2626;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.article-card-explore-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.article-card-explore-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

/* Recommended Badge */
.article-card-recommended-badge {
    display: inline-block;
    background: #0e9531;
    color: #fff;
    padding: 1px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

/* Info Grid */
.article-card-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.article-card-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.article-card-info-item:nth-child(2n-1):last-child {
    grid-column: span 2;
}

.article-card-info-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    color: #dc2626;
    border: 1px solid #e5e7eb;
}

.article-card-info-icon svg {
    width: 32px;
    height: 32px;
}

.article-card-info-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex: 1;
    min-width: 0;
}

.article-card-info-label {
    font-size: 12px;
    color: #78716c;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.article-card-info-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Key Features */
.article-card-features {
    padding: 12px 18px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

h3.article-card-features-title {
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #111 !important;
    margin: 0 0 8px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

ul.article-card-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

ul.article-card-features-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #111;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.article-card-features-list li::before {
    content: "•";
    position: absolute;
    left: 2px;
    color: #dc2626;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
}

/* Pricing */
.article-card-pricing {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.article-card-pricing-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    width: 100%;
    flex-basis: 32%;
    flex-grow: 1;
    transition: all 0.2s ease;
}

.pricing-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.pricing-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.pricing-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.pricing-content {
    display: flex;
    flex-direction: column;
}

.pricing-label {
    font-size: 12px;
    color: #78716c;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-value {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .article-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .article-card-info-grid {
        display: flex;
        flex-direction: column;
    }

    .article-card-pricing {
        flex-direction: column;
    }
}