/**
 * MNMLD Themes CSS
 *
 * Version: 1.0.1
 *
 */

/* sidebar posts */
.widget-sidebar-posts li {
  border-bottom:none!important; 
  
  overflow-wrap: break-word;
  word-wrap: break-word;

  -ms-word-break: break-all;
  word-break: break-word;

  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.widget-sidebar-posts li a {
  color:var(--color-900);
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 110px auto;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.25;
}

.widget-sidebar-posts li a:hover {
  color: var(--color-accent);
}

.widget-sidebar-posts img { border-radius:4px; width:110px; height:110px; }

.widget-sidebar-posts .cat-side {
  color: var(--color-accent);
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* social share */
.social-share button {
  background: transparent;
  color: var(--color-700);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--spacing-l);
  padding-right: 34px;
  position: relative;
}

.social-share button path,
.social-share button span {
  display: inline-block;
  line-height: 28px;
  transition: all 0.3s ease-in-out;
}

.social-share button span {
  margin-left: 36px;
}
.social-share button:hover span {
  color: var(--color-500);
}

.social-share button .svg-icon {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.social-share button path {
  fill: var(--color-accent);
}

.social-share button:hover path {
  fill: var(--color-500);
}

.social-share button.share-link-header {
  padding-right: 24px;
  padding-left: 24px;
  margin-bottom: 0;
}
.social-share button.share-link-header .svg-icon {
  width: 28px;
  height: 28px;
}
.social-share button.share-link-header path {
  fill: var(--color-accent);
}
.social-share button.share-link-header:hover path {
  fill: var(--color-700);
}


/* about me */
.widget-aboutme .bg-container {
  background: #fff;
  padding: 20px;
  margin: 100px 0 48px 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  text-align: center;
}

.widget-aboutme h3 {
  color: #404040;
  font-size: 1.3rem !important;
  font-family: var(--font-serif)!important;
  font-weight:700!important;
  margin: 0 0 12px 0 !important;
}
.widget-aboutme .subtitle {
  color: #525252;
  font-size: 0.95rem;
  padding-bottom: 12px;
}
.widget-aboutme .text-desc {
  color: #555;
  font-size: 0.85rem;
  font-weight: 400;
  padding-bottom: 12px;
}

.widget-aboutme img {
  border-radius: 50%;
  height: auto;
  width: 150px;
  margin-bottom: 28px;
  margin-top: -106px;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--color-accent);
}

.widget-aboutme .link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 16px 0;
  padding: 0 7px;
  line-height: 0.3;
  border-bottom: 8px solid rgba(47, 47, 47, 0.1);
}

/* contact form */
.form-field {
  margin-top: 30px;
  margin-bottom: 30px;
}
.no-sidebar .form-field {
  margin-left: auto;
  margin-right: auto;
}
.template-contact label {
  text-align: left;
  font-size: .9rem;
  font-weight: 500;
}
.template-contact input:not([type="submit"]),
.template-contact textarea {
  width: 100%;
}

/* messages */
.text-box {
  border-radius: 7px;
  font-weight: 500;
  margin: 15px 0 50px 0;
  padding: 25px;
}
.text-box-success {
  background: #d1fadf;
  color: #054e31;
}
.text-box-caution {
  background: #feefe3;
  color: #bf360c;
}
