/**
 * استایل برای نمایش باکس مقالات مرتبط
 * استفاده در قالب وردپرس
 */

/* استایل اصلی باکس مقالات مرتبط */
.related-article-box {
	color: #A12722 !important;
    font-weight: bold !important;
    display: block;
    background-color: #f8f9fa;
    border-right: 4px solid #A12722;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 15px 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* افکت هاور روی باکس */
.related-article-box:hover {
    background-color: #f5f5f5;
    transform: translateX(-3px);
}

/* متن پیشنهادی قبل از عنوان مقاله */
.related-article-box::before {
    content: "این مقاله به شما پیشنهاد می‌شود: ";
    display: block;
    color: #A12722;
    font-weight: 500;
    font-size: 0.9em;
    margin-bottom: 4px;
}

/* باکس ابزارهای سلامت */
.health-tools-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    direction: rtl;
    margin: 30px 0;
}
.health-tools-box > h2 {
    color: #124b8a;
    margin-bottom: 20px;
    padding-right: 10px;
	font-size: 20px;
    font-weight: 600;
    margin-top: 0;
}
/* Common styles for all tools */
.health-tools-box .health-tool {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border: 1px solid #e6e9ef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.health-tools-box .health-tool:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Tool content section */
.health-tools-box .tool-content {
    flex: 1;
}
/* Tool titles */
.health-tools-box .health-tool .tool-content h3 {
    color: #124b8a;
	font-size: 16px;
    margin: 0 0 5px 0;
    text-align: right;
    font-weight: 600;
}
/* Tool description */
.health-tools-box .tool-description {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0;
}
/* Download button */
.health-tools-box .tool-action.download-btn {
    background-color: #124b8a;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    margin-left: 0;
}
.health-tools-box .download-icon {
    margin-right: 8px;
    font-size: 16px;
    position: relative;
    top: 2px;
}
.health-tools-box .tool-action.download-btn:hover {
    background-color: #0d3b6d;
    transform: scale(1.05);
}
/* Interactive tool specific styles */
.health-tools-box .health-tool[data-type="interactive"] {
    justify-content: flex-start;
}
.health-tools-box .health-tool[data-type="interactive"] .tool-action {
    background: none;
    padding: 0;
    min-width: auto;
	display: flex;
	align-items: center;
	margin-right: 0;
	margin-left: 0;
	justify-content: flex-start;
	flex: 2;
}
.health-tools-box .interactive-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .health-tools-box {
        padding: 15px;
    }
    
    .health-tools-box .health-tool {
        flex-direction: column;
        padding: 15px;
        align-items: stretch;
    }
    
    .health-tools-box .tool-content {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .health-tools-box .health-tool .tool-content h3 {
        text-align: center;
    }
    
    .health-tools-box .tool-description {
        text-align: center;
    }
    
    .health-tools-box .tool-action.download-btn {
        width: auto;
        min-width: 90px;
        padding: 10px 15px;
        margin: 0 auto;
    }
    
    .health-tools-box .health-tool[data-type="interactive"] .tool-action {
        justify-content: center;
        margin-right: 0;
        width: 100%;
    }
    
    .health-tools-box .interactive-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
