/**
 * Read Also Block Styles (style.css)
 */
.read-also-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.read-also-posts {
    display: flex;
    flex-direction: column;
    border: 1px solid #E9EAEB;
    border-radius: 4px;
}

.read-also-item {
    display: flex;
    align-items: flex-start;
	gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #E9EAEB;
    background: transparent;
}
@media all and (max-width: 767px){
	.read-also-item{
		align-items: center;
	}
}
.read-also-item:first-child{
	padding: 24px 24px 16px 24px;
}
.read-also-item:last-child{
	border-bottom: none;
	padding: 16px 24px 24px 24px;
}
.read-also-image {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-also-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.read-also-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.read-also-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background: #f5f5f5;
}

.read-also-content {
    flex: 1;
    min-width: 0;
}

.read-also-post-title a {
	color: #000000;
    font-family: var(--fb-global-fb_customtypo_f2f7k--font-family);
    font-size: var(--fb-global-fb_customtypo_f2f7k--font-size);
    font-weight: var(--fb-global-fb_customtypo_f2f7k--font-weight);
    letter-spacing: var(--fb-global-fb_customtypo_f2f7k--font-letter-spacing);
    line-height: var(--fb-global-fb_customtypo_f2f7k--font-line-height);
    margin: 0px 0px 4px 0px;
    border: none;
    transition: all .3s ease-in-out;
}

.read-also-post-title a:hover {
    color: #040DBF;
}

.read-also-meta {
    display: flex;
    align-items: center;
	gap: 12px;
}

.read-also-meta span {
    display: flex;
    align-items: center;
	gap: 4px;
    white-space: nowrap;
	font-family: var(--fb-global-fb_customtypo_a44tl--font-family);
    font-size: var(--fb-global-fb_customtypo_a44tl--font-size);
    font-weight: var(--fb-global-fb_customtypo_a44tl--font-weight);
    letter-spacing: var(--fb-global-fb_customtypo_a44tl--font-letter-spacing);
    line-height: var(--fb-global-fb_customtypo_a44tl--font-line-height);
	color: #717680;
}

.read-also-meta svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Loading state */
.read-also-loading {
    padding: 2rem;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .read-also-item {
        gap: 0.75rem;
    }
    
    .read-also-image {
        width: 60px;
        height: 60px;
    }
    
    .read-also-post-title {
        font-size: 1rem;
    }
    
    .read-also-meta {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .read-also-meta span {
        gap: 0.2rem;
    }
    
    .read-also-meta svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .read-also-meta {
        flex-direction: row;
        align-items: flex-start;
		gap: 12px;
        flex-wrap: wrap;
    }
    
    .read-also-meta span {
        justify-content: flex-start;
    }
}

/* Editor specific styles */
.wp-block-child-theme-read-also {
    border: 1px dashed #ccc;
    padding: 1rem;
    margin: 1rem 0;
}

.wp-block-child-theme-read-also .read-also-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}