/* critical-articulo-style.css */
/* Base Styles (mobile-first) */
.post-layout {
    display: block;
}

.main-content {
    width: 100%;
    padding: 15px;
}

.custom-breadcrumbs a {
    background-color: #E0E0E0;
    border-radius: 15px; 
    padding: 5px 10px;
    white-space: nowrap;
    margin: 0 0px;
	color: #555;
    font-weight: 500;
    font-size: 12px;
    transition: background-color 0.3s, color 0.3s;
    text-transform: capitalize;
}


.rank-math-breadcrumb .separator {
    transform: translateY(2px);
    margin: 0 4px; 
    font-size: 16px;
    color: #7D7F8A;
    line-height: 16px;
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
}

.custom-breadcrumbs a:hover {
    background-color: #172EEB;
    color: #FFFFFF;
}

.custom-breadcrumbs span {
    color: #7D7F8A;
}

.custom-breadcrumbs a:first-of-type  {
    text-indent: -9999px;
    background: none;
    
    background-image: url('https://cdn.inspenet.com/icon-home-breadcrumbs.webp');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-flex;
    align-items: center;
    width: 22px;
    height: 26px;
    margin: 0 0px;
}

.custom-breadcrumbs a:last-of-type  {
    background-color: #172EEB;
    color: #FFFFFF;
     border-radius: 15px;
    padding: 5px 10px;
    white-space: nowrap;
    margin: 0 0px;
    font-weight: 500;
    font-size: 12px;
    transition: background-color 0.3s, color 0.3s;
    text-transform: capitalize;
}	

.post-category {
    font-size: 14px;
    color: #007bff;
    margin-bottom: 10px;
}

.post-title {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.post-excerpt {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #6c757d;
}

.post-meta {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    color: #6c757d;
    margin-bottom: 10px;
    row-gap: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.015em;
	align-items: center;
}

div.post-meta span > a {
	font-weight: 700;
}

.post-share {
    display: flex;
    gap: 1px;
}

.post-share a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #002990;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.post-share a:hover {
    color: #25B6FC;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.post-content {
    font-size: 16px;
    line-height: 1.6;
	overflow-wrap: anywhere;
}

.toc-mobile {
    display: block;
}

.toc-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 0;
    font-size: 1.2em;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #ddd;
    background-color: #f9f9f9
}

.toc-summary::after {
    content: '\25BA';
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.2s ease;
    transform-origin: center
}

html {
    scroll-behavior: smooth;
}

/* Media Queries for Larger Screens */
@media (min-width: 1024px) {
    .post-layout {
        display: flex;
        justify-content: space-between;
    }

    .main-content {
        width: 65%;
        padding-right: 20px;
    }

    .toc-mobile {
        display: none;
    }

    .post-title {
        font-size: 32px;
    }

    .post-share a {
        font-size: 24px;
        width: 35px;
        height: 35px;
    }

    .post-meta {
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
