:root {
--posts-grid-gap-mobile: 15px;
--posts-grid-gap-tablet: 20px;
--posts-grid-gap-desktop: 30px;
--posts-grid-card-bg: #ffffff;
--posts-grid-text-color: #333333;
--posts-grid-excerpt-color: #666666;
--posts-grid-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
--posts-grid-shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.12);
--posts-grid-border-radius: 12px;
--posts-grid-animation-timing: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
--posts-grid-content-padding-mobile: 15px 12px;
--posts-grid-content-padding-tablet: 18px 16px;
--posts-grid-content-padding-desktop: 24px 20px;
} .posts-grid-shortcode {
position: relative;
width: 100%;
margin: 0 auto;
padding: 20px 0;
} .posts-grid-container {
display: grid;
gap: var(--posts-grid-gap-mobile);
grid-template-columns: repeat(2, 1fr);
width: 92%;
margin: 0 auto;
} .posts-grid-total-records {
text-align: center;
font-size: 0.95rem;
color: var(--posts-grid-excerpt-color);
margin-bottom: 20px;
padding: 0 4%;
} .post-grid-item {
position: relative;
background: var(--posts-grid-card-bg);
border-radius: var(--posts-grid-border-radius);
overflow: hidden;
box-shadow: var(--posts-grid-shadow);
transition: all var(--posts-grid-animation-timing);
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
animation-delay: var(--animation-delay, 0ms);
display: grid;
grid-template-rows: auto 1fr;
height: 100%;
} .post-grid-image {
position: relative;
width: 100%;
overflow: hidden;
aspect-ratio: 1 / 1;
} .post-grid-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--posts-grid-animation-timing);
display: block;
} @supports not (aspect-ratio: 1 / 1) {
.post-grid-image::before {
float: left;
padding-top: 100%;
content: '';
}
.post-grid-image::after {
display: block;
content: '';
clear: both;
}
.post-grid-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
} .post-grid-content {
padding: var(--posts-grid-content-padding-mobile);
display: flex;
flex-direction: column;
height: 100%;
box-sizing: border-box;
} .post-grid-title {
margin: 0 0 12px 0;
font-size: 1.2rem;
line-height: 1.3;
font-weight: 600;
padding: 0;
}
.post-grid-title a {
color: var(--posts-grid-text-color);
text-decoration: none;
transition: color 0.2s ease;
display: block;
width: 100%;
} .post-grid-excerpt {
margin: 0;
color: var(--posts-grid-excerpt-color);
line-height: 1.4;
font-size: 0.95rem;
flex-grow: 1;
padding: 0;
} .posts-grid-no-excerpt .post-grid-excerpt {
display: none;
} .posts-grid-pagination {
margin-top: 40px;
text-align: center;
padding: 0 4%;
}
.posts-grid-pagination .page-numbers {
display: inline-block;
padding: 8px 16px;
margin: 0 4px;
border: 1px solid #ddd;
border-radius: 4px;
text-decoration: none;
color: var(--posts-grid-text-color);
background: var(--posts-grid-card-bg);
transition: all 0.2s ease;
}
.posts-grid-pagination .page-numbers.current {
background: #2271b1;
color: white;
border-color: #2271b1;
}
.posts-grid-pagination .page-numbers:hover:not(.current) {
background: #f5f5f5;
border-color: #999;
} .post-grid-item:hover {
transform: translateY(-8px);
box-shadow: var(--posts-grid-shadow-hover);
}
.post-grid-item:hover::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #2271b1, #1d5f9a);
z-index: 2;
}
.post-grid-image:hover img {
transform: scale(1.05);
}
.post-grid-title a:hover {
color: #2271b1;
} .post-grid-title a:focus,
.post-grid-image a:focus,
.page-numbers:focus {
outline: 2px solid #2271b1;
outline-offset: 2px;
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (prefers-reduced-motion: reduce) {
.post-grid-item,
.post-grid-image img,
.posts-grid-pagination .page-numbers {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.post-grid-item {
opacity: 1;
animation: none;
}
} @media (max-width: 480px) {
.posts-grid-container {
gap: 12px;
width: 94%;
}
.post-grid-content {
padding: 12px 10px;
}
.post-grid-title {
font-size: 1.1rem;
margin-bottom: 8px;
}
.post-grid-excerpt {
font-size: 0.85rem;
line-height: 1.3;
}
} @media (min-width: 768px) and (max-width: 1023px) {
.posts-grid-container {
grid-template-columns: repeat(2, 1fr);
gap: var(--posts-grid-gap-tablet);
width: 90%;
}
.post-grid-content {
padding: var(--posts-grid-content-padding-tablet);
}
.post-grid-title {
font-size: 1.25rem;
margin-bottom: 14px;
}
.post-grid-excerpt {
font-size: 0.95rem;
line-height: 1.4;
}
} @media (min-width: 1024px) {
.posts-grid-container {
gap: var(--posts-grid-gap-desktop);
max-width: 1200px;
width: 90%;
} .post-grid-content {
padding: var(--posts-grid-content-padding-desktop);
}
.post-grid-title {
font-size: 1.3rem;
margin-bottom: 16px;
line-height: 1.35;
}
.post-grid-excerpt {
font-size: 1rem;
line-height: 1.45;
} .posts-grid-1-per-row .posts-grid-container {
grid-template-columns: repeat(1, 1fr);
max-width: 800px;
}
.posts-grid-2-per-row .posts-grid-container {
grid-template-columns: repeat(2, 1fr);
}
.posts-grid-3-per-row .posts-grid-container {
grid-template-columns: repeat(3, 1fr);
}
.posts-grid-4-per-row .posts-grid-container {
grid-template-columns: repeat(4, 1fr);
} .posts-grid-1-per-row .post-grid-item {
display: grid;
grid-template-columns: 300px 1fr;
grid-template-rows: 1fr;
align-items: stretch;
}
.posts-grid-1-per-row .post-grid-image {
aspect-ratio: 1 / 1;
height: 100%;
}
.posts-grid-1-per-row .post-grid-content {
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
}
.posts-grid-1-per-row .post-grid-title {
font-size: 1.5rem;
margin-bottom: 20px;
}
.posts-grid-1-per-row .post-grid-excerpt {
font-size: 1.1rem;
line-height: 1.5;
}
} @media (min-width: 1200px) {
.posts-grid-container {
max-width: 1200px;
} .posts-grid-2-per-row .post-grid-content,
.posts-grid-3-per-row .post-grid-content,
.posts-grid-4-per-row .post-grid-content {
padding: 26px 22px;
}
.posts-grid-2-per-row .post-grid-title {
font-size: 1.35rem;
}
.posts-grid-3-per-row .post-grid-title {
font-size: 1.3rem;
}
.posts-grid-4-per-row .post-grid-title {
font-size: 1.25rem;
margin-bottom: 14px;
}
.posts-grid-4-per-row .post-grid-excerpt {
font-size: 0.95rem;
line-height: 1.4;
}
} @media (min-width: 1440px) {
.posts-grid-container {
max-width: 1400px;
}
.posts-grid-2-per-row .post-grid-content,
.posts-grid-3-per-row .post-grid-content {
padding: 28px 24px;
}
} @media (prefers-color-scheme: dark) {
.post-grid-item {
--posts-grid-card-bg: #1e1e1e;
--posts-grid-text-color: #f0f0f0;
--posts-grid-excerpt-color: #b0b0b0;
--posts-grid-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
--posts-grid-shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.4);
} .post-grid-item {
background: #ffffff !important;
--posts-grid-text-color: #333333;
--posts-grid-excerpt-color: #666666;
}
.posts-grid-pagination .page-numbers {
background: #ffffff;
color: #333333;
border-color: #ddd;
}
.posts-grid-pagination .page-numbers:hover:not(.current) {
background: #f5f5f5;
}
} [dir="rtl"] .post-grid-item:hover::before {
left: auto;
right: 0;
}
[dir="rtl"] .post-grid-image img {
transform-origin: center;
}
[dir="rtl"] .post-grid-content {
text-align: right;
} @media print {
.posts-grid-container {
display: block !important;
width: 100% !important;
gap: 0 !important;
}
.post-grid-item {
break-inside: avoid;
page-break-inside: avoid;
margin-bottom: 20px;
box-shadow: none !important;
border: 1px solid #ddd !important;
transform: none !important;
display: flex !important;
flex-direction: row;
align-items: flex-start;
}
.post-grid-image {
float: left;
width: 120px !important;
margin-right: 15px;
margin-bottom: 10px;
aspect-ratio: unset !important;
height: 120px !important;
}
.post-grid-image img {
width: 100% !important;
height: 100% !important;
}
.post-grid-content {
padding: 15px !important;
overflow: hidden;
flex: 1;
}
.post-grid-title a::after {
content: " (" attr(href) ")";
font-size: 0.8em;
font-weight: normal;
color: #666;
} .posts-grid-pagination,
.posts-grid-total-records {
display: none !important;
}
} .posts-grid-shortcode,
.posts-grid-container {
max-width: none !important;
}
.posts-grid-shortcode .posts-grid-container {
width: 92% !important;
}
@media (min-width: 768px) {
.posts-grid-shortcode .posts-grid-container {
width: 90% !important;
}
} .post-grid-content > *:first-child {
margin-top: 0;
}
.post-grid-content > *:last-child {
margin-bottom: 0;
}#jp-post-flair {
padding-top: 0.5em;
} div.sharedaddy,
#content div.sharedaddy,
#main div.sharedaddy {
clear: both;
}
div.sharedaddy h3.sd-title {
margin: 0 0 1em 0;
display: inline-block;
line-height: 1.2;
font-size: 9pt;
font-weight: 700;
}
body.highlander-light h3.sd-title::before {
border-top: 1px solid rgba(0, 0, 0, 0.2);
}
body.highlander-dark h3.sd-title::before {
border-top: 1px solid rgba(255, 255, 255, 0.4);
} .sd-sharing {
margin-bottom: 1em;
}
.sd-content ul {
padding: 0 !important;
margin: 0 !important;
list-style: none !important;
}
.sd-content ul li {
display: inline-block;
margin: 0 8px 12px 0;
padding: 0;
}
.sd-content ul li.share-deprecated {
opacity: 0.5;
}
.sd-content ul li.share-deprecated a span {
text-decoration: line-through;
}
.sd-block.sd-gplus {
margin: 0 0 0.5em 0;
}
.sd-gplus .sd-content {
font-size: 12px;
} .sd-content .share-email-error .share-email-error-title {
margin: 0.5em 0;
}
.sd-content .share-email-error .share-email-error-text {
font-family: "Open Sans", sans-serif;
font-size: 12px;
margin: 0.5em 0;
} .sd-social-icon .sd-content ul li a.sd-button,
.sd-social-text .sd-content ul li a.sd-button,
.sd-content ul li a.sd-button,
.sd-content ul li .option a.share-ustom, .sd-content ul li.preview-item div.option.option-smart-off a,
.sd-content ul li.advanced a.share-more,
.sd-social-icon-text .sd-content ul li a.sd-button,
.sd-social-official .sd-content > ul > li > a.sd-button,
#sharing_email .sharing_send,
.sd-social-official .sd-content > ul > li .digg_button > a { text-decoration: none !important;
display: inline-block;
font-size: 13px;
font-family: "Open Sans", sans-serif;
font-weight: 500;
border-radius: 4px;
color: #2c3338 !important;
background: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.12);
text-shadow: none;
line-height: 23px;
padding: 4px 11px 3px 9px;
}
.sd-social-official .sd-content ul li a.sd-button,
.sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a {
align-items: center;
display: flex;
font-size: 12px;
line-height: 12px;
padding: 1px 6px 0 5px;
min-height: 20px;
}
.sd-social-official .sd-content ul.preview li a.sd-button,
.sd-social-official .sd-content ul.preview li.preview-item div.option.option-smart-off a {
position: relative;
top: 2px;
}
.sd-content ul li a.sd-button > span,
.sd-content ul li .option a.share-ustom span, .sd-content ul li.preview-item div.option.option-smart-off a span,
.sd-content ul li.advanced a.share-more span,
.sd-social-icon-text .sd-content ul li a.sd-button > span,
.sd-social-official .sd-content > ul > li > a.sd-button span,
.sd-social-official .sd-content > ul > li .digg_button > a span { line-height: 23px;
margin-left: 6px;
} .sd-social-icon .sd-content ul li a.sd-button > span {
margin-left: 0;
}
body .sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-icon.no-text span:not(.custom-sharing-span) {
display: none;
} .sd-social-text .sd-content ul li a.sd-button span {
margin-left: 3px;
}
.sd-social-official .sd-content ul li a.sd-button > span,
.sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a span {
line-height: 12px;
margin-left: 3px;
}
.sd-social-official .sd-content > ul > li > a.sd-button::before,
.sd-social-official .sd-content > ul > li .digg_button > a::before,
.sd-social-official .sd-content .sharing-hidden .inner > ul > li > a.sd-button::before,
.sd-social-official .sd-content .sharing-hidden .inner > ul > li .digg_button > a::before {
margin-bottom: -1px;
}
.sd-social-icon .sd-content ul li a.sd-button:hover,
.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:hover,
.sd-social-text .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:hover,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-official .sd-content > ul > li > a.sd-button:hover,
.sd-social-official .sd-content > ul > li > a.sd-button:active,
.sd-social-official .sd-content > ul > li .digg_button > a:hover,
.sd-social-official .sd-content > ul > li .digg_button > a:active {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.22);
}
.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-official .sd-content > ul > li > a.sd-button:active,
.sd-social-official .sd-content > ul > li .digg_button > a:active {
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.16);
} .sd-content ul li a.sd-button::before {
display: inline-block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font: 400 18px/1 social-logos;
vertical-align: top;
text-align: center;
} .sd-social-icon-text ul li a.sd-button::before {
position: relative;
top: 2px;
} @media screen and (-webkit-min-device-pixel-ratio: 0) {
.sd-content ul li a.sd-button::before {
position: relative;
top: 2px;
}
}
.sd-social-official ul li a.sd-button::before {
position: relative;
top: -2px;
} @media screen and (-webkit-min-device-pixel-ratio: 0) {
.sd-social-official ul li a.sd-button::before {
top: 0;
}
} .jp-sharing-input-touch .sd-content ul li {
padding-left: 10px;
}
.sd-content ul li.preview-item.no-icon a.sd-button span {
margin-left: 0;
} .sd-social-text .sd-content ul li a::before,
.sd-content ul li.no-icon a::before {
display: none;
}
body .sd-social-text .sd-content ul li.share-custom a span,
body .sd-content ul li.share-custom.no-icon a span {
background-image: none;
background-position: -500px -500px !important; background-repeat: no-repeat !important;
padding-left: 0;
height: 0;
line-height: inherit;
}
.sd-social-icon .sd-content ul li a.share-more {
position: relative;
top: -4px;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.sd-social-icon .sd-content ul li a.share-more {
top: 2px;
}
} @-moz-document url-prefix() {
.sd-social-icon .sd-content ul li a.share-more {
top: 2px;
}
}
.sd-social-icon .sd-content ul li a.share-more span {
margin-left: 3px;
} .sd-social-icon .sd-content ul li.share-print a::before,
.sd-social-text .sd-content ul li.share-print a::before,
.sd-content ul li.share-print div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-print a::before,
.sd-social-official .sd-content li.share-print a::before {
content: "\f469";
}
.sd-social-icon .sd-content ul li.share-email a::before,
.sd-social-text .sd-content ul li.share-email a::before,
.sd-content ul li.share-email div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-email a::before,
.sd-social-official .sd-content li.share-email a::before {
content: "\f410";
}
.sd-social-icon .sd-content ul li.share-linkedin a::before,
.sd-social-text .sd-content ul li.share-linkedin a::before,
.sd-content ul li.share-linkedin div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-linkedin a::before {
content: "\f207";
}
.sd-social-icon .sd-content ul li.share-twitter a::before,
.sd-social-text .sd-content ul li.share-twitter a::before,
.sd-content ul li.share-twitter div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-twitter a::before,
.sd-social-icon .sd-content ul li.share-x a::before,
.sd-social-text .sd-content ul li.share-x a::before,
.sd-content ul li.share-x div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-x a::before {
content: "\f10e";
}
.sd-social-icon .sd-content ul li.share-reddit a::before,
.sd-social-text .sd-content ul li.share-reddit a::before,
.sd-content ul li.share-reddit div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-reddit a::before,
.sd-social-official .sd-content li.share-reddit a::before {
content: "\f222";
}
.sd-social-icon .sd-content ul li.share-tumblr a::before,
.sd-social-text .sd-content ul li.share-tumblr a::before,
.sd-content ul li.share-tumblr div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-tumblr a::before {
content: "\f607";
}
.sd-social-icon .sd-content ul li.share-pocket a::before,
.sd-social-text .sd-content ul li.share-pocket a::before,
.sd-content ul li.share-pocket div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-pocket a::before {
content: "\f224";
}
.sd-social-icon .sd-content ul li.share-pinterest a::before,
.sd-social-text .sd-content ul li.share-pinterest a::before,
.sd-content ul li.share-pinterest div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-pinterest a::before {
content: "\f210";
}
.sd-social-icon .sd-content ul li.share-facebook a::before,
.sd-social-text .sd-content ul li.share-facebook a::before,
.sd-content ul li.share-facebook div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-facebook a::before {
content: "\f203";
}
.sd-social-icon .sd-content ul li.share-press-this a::before,
.sd-social-text .sd-content ul li.share-press-this a::before,
.sd-content ul li.share-press-this div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-press-this a::before,
.sd-social-official .sd-content li.share-press-this a::before {
content: "\f205";
}
.sd-social-official .sd-content li.share-press-this a::before {
color: #2ba1cb;
}
.sd-social-icon .sd-content ul li.share-telegram a::before,
.sd-social-text .sd-content ul li.share-telegram a::before,
.sd-content ul li.share-telegram div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-telegram a::before,
.sd-social-official .sd-content li.share-telegram a::before {
content: "\f606";
}
.sd-social-official .sd-content li.share-telegram a::before {
color: #08c;
}
.sd-social-icon .sd-content ul li.share-threads a::before,
.sd-social-text .sd-content ul li.share-threads a::before,
.sd-content ul li.share-threads div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-threads a::before,
.sd-social-official .sd-content li.share-threads a::before {
content: "\f10d";
}
.sd-social-official .sd-content li.share-threads a::before {
color: #000;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-threads a.sd-button {
background: #000;
color: #fff !important;
}
.sd-social-icon .sd-content ul li.share-mastodon a::before,
.sd-social-text .sd-content ul li.share-mastodon a::before,
.sd-content ul li.share-mastodon div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-mastodon a::before,
.sd-social-official .sd-content li.share-mastodon a::before {
content: "\f10a";
}
.sd-social-official .sd-content li.share-mastodon a::before {
color: #563acc;
}
.sd-social-icon .sd-content ul a.share-more::before,
.sd-social-text .sd-content ul a.share-more::before,
.sd-content ul li.advanced a.share-more::before,
.sd-social-icon-text .sd-content a.share-more::before,
.sd-social-official .sd-content a.share-more::before {
content: "\f415";
}
.sd-social-official .sd-content a.share-more::before {
color: #2ba1cb;
}
.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a::before,
.sd-social-text .sd-content ul li.share-jetpack-whatsapp a::before,
.sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-jetpack-whatsapp a::before,
.sd-social-official .sd-content li.share-jetpack-whatsapp a::before {
content: "\f608";
}
.sd-social-official .sd-content li.share-jetpack-whatsapp a::before {
color: #43d854;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-jetpack-whatsapp a.sd-button {
background: #43d854;
color: #fff !important;
}
.sd-social-icon .sd-content ul li.share-nextdoor a::before,
.sd-social-text .sd-content ul li.share-nextdoor a::before,
.sd-content ul li.share-nextdoor div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-nextdoor a::before,
.sd-social-official .sd-content li.share-nextdoor a::before {
content: "\f10c";
}
.sd-social-official .sd-content li.share-nextdoor a::before {
color: #8ed500;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-nextdoor a.sd-button {
background: #8ed500;
color: #fff !important;
}
.sd-social-icon .sd-content ul li.share-bluesky a::before,
.sd-social-text .sd-content ul li.share-bluesky a::before,
.sd-content ul li.share-bluesky div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-bluesky a::before,
.sd-social-official .sd-content li.share-bluesky a::before {
content: "\f10f";
}
.sd-social-official .sd-content li.share-bluesky a::before {
color: #0085ff;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-bluesky a.sd-button {
background: #0085ff;
color: #fff !important;
}
.sd-social-icon .sd-content ul li.share-deprecated a::before,
.sd-social-icon-text .sd-content li.share-deprecated a::before,
.sd-social-official .sd-content li.share-deprecated a::before,
.sd-content ul li.share-deprecated div.option.option-smart-off a::before {
width: 1em;
height: 1em;
content: "\1F6AB";
} .sd-social .sd-button .share-count {
background: #2ea2cc;
color: #fff;
border-radius: 10px;
display: inline-block;
text-align: center;
font-size: 10px;
padding: 1px 3px;
line-height: 1;
}
.sd-social-official .sd-content > ul > li > a.sd-button span {
line-height: 1;
}
.sd-social-official .sd-content ul {
display: flex;
flex-wrap: wrap;
}
.sd-social-official .sd-content ul::after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.sd-social-official .sd-content li.share-press-this a {
margin: 0 0 5px 0;
}
.sd-social-official .sd-content ul > li {
display: flex;
max-height: 18px;
}
.sd-social-official .sd-content ul > li .option-smart-off {
margin-right: 8px;
}
.sd-social-official .fb-share-button > span {
vertical-align: top !important;
}
.sd-social-official .sd-content .pocket_button iframe {
width: 98px;
} .pocket_button iframe,
.pinterest_button,
.twitter_button,
.linkedin_button > span {
margin: 0 !important;
}
.linkedin_button > span,
.pinterest_button a {
display: block !important;
}
.sd-social-official .sd-content .share-tumblr iframe {
max-width: 53px;
width: unset;
}
body .sd-social-official li.share-print,
body .sd-social-official li.share-email a,
body .sd-social-official li.share-custom a,
body .sd-social-official li a.share-more,
body .sd-social-official li.share-digg a,
body .sd-social-official li.share-press-this a {
position: relative;
top: 0;
} body .sd-social-icon .sd-content li.share-custom > a {
padding: 2px 3px 0 3px;
position: relative;
top: 4px;
}
body .sd-social-icon .sd-content li.share-custom a span,
body .sd-social-icon-text .sd-content li.share-custom a span,
body .sd-social-text .sd-content li.share-custom a span,
body .sd-social-official .sd-content li.share-custom a span,
body .sd-content ul li.share-custom a.share-icon span {
background-size: 16px 16px;
background-repeat: no-repeat;
margin-left: 0;
padding: 0 0 0 19px;
display: inline-block;
height: 21px;
line-height: 16px;
}
body .sd-content ul li.share-custom a span[hidden] {
display: none;
}
body .sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-icon.no-text .custom-sharing-span {
color: transparent;
}
body .sd-social-icon .sd-content li.share-custom a span {
width: 0;
padding-left: 16px !important;
} .sharing-hidden .inner {
position: absolute;
z-index: 2;
border: 1px solid #ccc;
padding: 10px;
background: #fff;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
border-radius: 2px;
margin-top: 5px;
max-width: 400px;
}
.sharing-hidden .inner ul {
margin: 0 !important;
}
.sd-social-official .sd-content .sharing-hidden ul > li.share-end {
clear: both;
margin: 0 !important;
height: 0 !important;
}
.sharing-hidden .inner::before,
.sharing-hidden .inner::after {
position: absolute;
z-index: 1;
top: -8px;
left: 20px;
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 8px solid #ccc;
content: "";
display: block;
}
.sharing-hidden .inner::after {
z-index: 2;
top: -7px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 8px solid #fff;
}
.sharing-hidden ul {
margin: 0;
} .sd-social-icon .sd-content ul li[class*="share-"] a,
.sd-social-icon .sd-content ul li[class*="share-"] a:hover,
.sd-social-icon .sd-content ul li[class*="share-"] div.option a {
border-radius: 50%;
border: 0;
box-shadow: none;
padding: 7px;
position: relative;
top: -2px;
line-height: 1;
width: auto;
height: auto;
margin-bottom: 0;
max-width: 32px;
}
.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button > span,
.sd-social-icon .sd-content ul li[class*="share-"] div.option a span {
line-height: 1;
}
.sd-social-icon .sd-content ul li[class*="share-"] a:hover,
.sd-social-icon .sd-content ul li[class*="share-"] div.option a:hover {
border: none;
opacity: 0.6;
}
.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button::before {
top: 0;
}
.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-custom {
padding: 8px 8px 6px 8px;
}
.sd-social-icon .sd-content ul li a.sd-button.share-more {
margin-left: 10px;
}
.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more {
margin-left: 0;
}
.sd-social-icon .sd-button span.share-count {
position: absolute;
bottom: 0;
right: 0;
border-radius: 0;
background: #555;
font-size: 9px;
} .sd-social-icon .sd-content ul li[class*="share-"] a.sd-button {
background: #e9e9e9;
margin-top: 2px;
text-indent: 0;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-tumblr a.sd-button {
background: #2c4762;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-facebook a.sd-button {
background: #0866ff;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-twitter a.sd-button {
background: #000;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-x a.sd-button {
background: #000;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-pinterest a.sd-button {
background: #ca1f27;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-digg a.sd-button {
color: #555 !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-press-this a.sd-button {
background: #4f94d4;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-telegram a.sd-button {
background: #08c;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-linkedin a.sd-button {
background: #0077b5;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-pocket a.sd-button {
background: #ee4056;
color: #fff !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-reddit a.sd-button {
background: #cee3f8;
color: #555 !important;
}
.sd-social-icon .sd-content ul li[class*="share-"].share-mastodon a.sd-button {
background: linear-gradient(to top, #563acc 0%, #6364ff 100%);
color: #fff !important;
}
#jetpack-source_f_name {
display: none !important;
position: absolute !important;
left: -9000px;
}
.sd-content .share-customize-link {
margin-top: 8px;
line-height: 11px;
}
.sd-content .share-customize-link a {
font-size: 11px;
font-family: "Open Sans", sans-serif;
}
@media print {
.sharedaddy.sd-sharing-enabled {
display: none;
}
}@font-face{font-family:social-logos;src:url(data:application/octet-stream;base64,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) format('woff2');font-weight:400;font-style:normal}.social-logo{font-family:social-logos;display:inline-block;vertical-align:middle;line-height:1;font-weight:400;font-style:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.social-logo__amazon:before{content:"\f600"}.social-logo__behance:before{content:"\f101"}.social-logo__blogger-alt:before{content:"\f601"}.social-logo__blogger:before{content:"\f602"}.social-logo__codepen:before{content:"\f216"}.social-logo__dribbble:before{content:"\f201"}.social-logo__dropbox:before{content:"\f225"}.social-logo__eventbrite:before{content:"\f603"}.social-logo__facebook:before{content:"\f203"}.social-logo__fediverse:before{content:"\f10b"}.social-logo__feed:before{content:"\f413"}.social-logo__flickr:before{content:"\f211"}.social-logo__foursquare:before{content:"\f226"}.social-logo__ghost:before{content:"\f61c"}.social-logo__github:before{content:"\f200"}.social-logo__google-alt:before{content:"\f102"}.social-logo__google-plus-alt:before{content:"\f218"}.social-logo__google-plus:before{content:"\f206"}.social-logo__google:before{content:"\f103"}.social-logo__instagram:before{content:"\f215"}.social-logo__link:before{content:"\f109"}.social-logo__linkedin:before{content:"\f207"}.social-logo__mail:before{content:"\f410"}.social-logo__mastodon:before{content:"\f10a"}.social-logo__medium-alt:before{content:"\f106"}.social-logo__medium:before{content:"\f623"}.social-logo__nextdoor:before{content:"\f10c"}.social-logo__patreon:before{content:"\f105"}.social-logo__pinterest-alt:before{content:"\f210"}.social-logo__pinterest:before{content:"\f209"}.social-logo__pocket:before{content:"\f224"}.social-logo__polldaddy:before{content:"\f217"}.social-logo__print:before{content:"\f469"}.social-logo__reddit:before{content:"\f222"}.social-logo__share:before{content:"\f415"}.social-logo__skype:before{content:"\f220"}.social-logo__spotify:before{content:"\f515"}.social-logo__squarespace:before{content:"\f605"}.social-logo__stumbleupon:before{content:"\f223"}.social-logo__telegram:before{content:"\f606"}.social-logo-threads:before{content:"\f10d"}.social-logo__tiktok-alt:before{content:"\f107"}.social-logo__tiktok:before{content:"\f108"}.social-logo__tumblr-alt:before{content:"\f607"}.social-logo__tumblr:before{content:"\f214"}.social-logo__twitch:before{content:"\f516"}.social-logo__twitter-alt:before{content:"\f202"}.social-logo__twitter:before{content:"\f610"}.social-logo__vimeo:before{content:"\f212"}.social-logo__whatsapp:before{content:"\f608"}.social-logo__woocommerce:before{content:"\f104"}.social-logo__wordpress:before{content:"\f205"}.social-logo__xanga:before{content:"\f609"}.social-logo__youtube:before{content:"\f213"}