@charset "utf-8";

/* CTA Section - Simple Black/White/Gray Design */
.content-cta {
    width: 100%;
    margin: 20px 0;
    background: #ffffff;
    border: 3px solid #000000;
    color: #1f2937;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.content-cta:hover {
    background: #f8f9fa;
}

.content-cta:hover .content-cta__title {
    color: #1f2937;
}

.content-cta:hover .content-cta__subtitle {
    color: #374151;
}

.content-cta__inner {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
}

.content-cta__title {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

.content-cta__subtitle {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    text-align: center !important;
}

/* Override typography.css justify alignment for CTA subtitle */
.content-text .content-cta__subtitle {
    text-align: center !important;
}

.content-cta__actions {
    margin-top: 4px;
    text-align: center;
}

/* Black/White Button with Hover Effects */
.content-cta__btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    background: #ffffff;
    border: 2px solid #333333;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: monospace;
    text-align: center;
    margin: 0 auto;
}

.content-cta:hover .content-cta__btn {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: translateY(-1px);
}

.content-cta__btn:active {
    background: #555555;
    border-color: #555555;
    color: #ffffff;
    transform: translateY(0);
}

.content-cta__btn:focus {
    outline: 2px solid #666666;
    outline-offset: 2px;
}

/* Ensure consistent text color across states */
.content-cta__btn,
.content-cta__btn:link,
.content-cta__btn:visited {
    color: #333333;
    text-decoration: none;
}

.content-cta__btn:hover,
.content-cta__btn:focus,
.content-cta__btn:active {
    color: #ffffff;
    text-decoration: none;
}

/* Remove hover state from individual button to avoid conflicts */
.content-cta__btn:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: none;
}

/* Post Meta (Date and Views) */
.post-date {
    margin-right: 16px;
}

.post-views {
    color: #a2a2a2;
    background: url(../../static/images/see.png) no-repeat;
    background-size: 22px auto;
    text-indent: 31px;
    background-position: 0 1px;
    height: 25px;
    line-height: 26px;
    display: inline-block;
}


