/**
 * Content Information Plugin Styles
 */

.cip-content-information {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cip-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.cip-meta-info {
    margin-bottom: 20px;
}

.cip-meta-item {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.cip-meta-item strong {
    color: #555;
    font-weight: 600;
    margin-right: 5px;
}

.cip-meta-item span {
    color: #333;
}

.cip-review-notice {
    background-color: #fff;
    border-left: 4px solid #0073aa;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.cip-review-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.cip-review-notice a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.cip-review-notice a:hover {
    text-decoration: underline;
}

.cip-author-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.cip-author-heading {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #333;
}

.cip-author-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cip-author-photo {
    flex-shrink: 0;
}

.cip-author-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0073aa;
}

.cip-author-info {
    flex: 1;
}

.cip-author-name-credentials {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.cip-author-name-credentials strong {
    font-weight: 600;
    font-size: 18px;
}

.cip-credentials {
    color: #555;
    font-weight: 400;
}

.cip-author-title {
    margin-bottom: 12px;
    font-size: 15px;
}

.cip-author-title em {
    color: #0073aa;
    font-style: normal;
    font-weight: 500;
}

.cip-author-bio {
    margin-bottom: 15px;
}

.cip-author-bio p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.cip-author-links {
    margin-top: 12px;
    font-size: 14px;
}

.cip-author-links a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.cip-author-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .cip-content-information {
        padding: 20px;
    }
    
    .cip-author-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cip-author-photo img {
        width: 100px;
        height: 100px;
    }
    
    .cip-title {
        font-size: 20px;
    }
    
    .cip-author-heading {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .cip-content-information {
        padding: 15px;
    }
    
    .cip-meta-item {
        font-size: 14px;
    }
    
    .cip-author-photo img {
        width: 80px;
        height: 80px;
    }
}
