/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 06 2026 | 12:37:12 */
.my-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
/*     margin: 40px 0; */
}

.my-blog-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E8EFE8;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: all .35s ease;
}

.my-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(46,125,50,.18);
}

.my-blog-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #F7FAF7;
}

.my-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.my-blog-card:hover .my-blog-thumb img {
    transform: scale(1.08);
}

.my-blog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46,125,50,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .35s;
}

.my-blog-overlay span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F4C542;
    color: #2E7D32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.my-blog-card:hover .my-blog-overlay {
    opacity: 1;
}

.my-blog-content {
    padding: 22px;
}

.my-blog-content h3 {
/*     font-size: 20px;
    line-height: 1.45;
    font-weight: 700; */
	font-family: var(--e-global-typography-8ccf36c-font-family), Sans-serif;
    font-size: var(--e-global-typography-8ccf36c-font-size);
    font-weight: var(--e-global-typography-8ccf36c-font-weight);
    line-height: var(--e-global-typography-8ccf36c-line-height);	
    color: #1F2937;
	margin: 0 0 14px;
    transition: .3s;
}

.my-blog-card:hover h3 {
    color: #2E7D32;
}

.my-blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    margin: 0;
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}

.my-blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4BAE4F;
}

.my-blog-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 50px 0 20px;
}

.my-blog-pagination .prev.page-numbers,
.my-blog-pagination .next.page-numbers{
	padding-inline: 10px;
} 

.my-blog-pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    background: #F7FAF7;
    border: 1px solid #DCE8DC;
    color: #2E7D32;
    font-weight: 600;
    transition: .3s;
}

.my-blog-pagination .page-numbers:hover,
.my-blog-pagination .page-numbers.current {
    background: #4BAE4F;
    color: #fff;
    border-color: #4BAE4F;
}


/* Old Claude Style  */

/* .my-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.my-blog-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.my-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.my-blog-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.my-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.my-blog-card:hover .my-blog-thumb img {
    transform: scale(1.08);
}

.my-blog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.my-blog-card:hover .my-blog-overlay {
    opacity: 1;
}

.my-blog-content {
    padding: 18px 20px 22px;
}

.my-blog-content h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}

.my-blog-card:hover .my-blog-content h3 {
    color: #d20000;
}

.my-blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin: 0;
}

.my-blog-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
}

.my-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.my-blog-pagination .page-numbers {
    padding: 8px 14px;
    border-radius: 8px;
    background: #f2f2f2;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.my-blog-pagination .page-numbers.current,
.my-blog-pagination .page-numbers:hover {
    background: #d20000;
    color: #fff;
} */