/**
 * @file
 * Facebook post styling to mimic Facebook's embed UI.
 */

.sf-facebook-post--styled {
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid #dddfe2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgb(0, 0, 0, 0.1);
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
}

.sf-facebook-post--styled .sf-facebook-post__header {
  padding: 12px 16px;
  border-bottom: 1px solid #e4e6eb;
}

.sf-facebook-post--styled .sf-facebook-post__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-facebook-post--styled .sf-facebook-post__time {
  color: #65676b;
  font-size: 13px;
  line-height: 1.3;
}

.sf-facebook-post--styled .sf-facebook-post__content {
  padding: 12px 16px;
}

.sf-facebook-post--styled .sf-facebook-post__message {
  white-space: pre-wrap;
  word-wrap: break-word;
  color: #050505;
  font-size: 15px;
  line-height: 1.3333;
}

.sf-facebook-post--styled .sf-facebook-post__message a {
  text-decoration: none;
  color: #385898;
}

.sf-facebook-post--styled .sf-facebook-post__message a:hover {
  text-decoration: underline;
}

.sf-facebook-post--styled .sf-facebook-post__media {
  position: relative;
  background: #f0f2f5;
  line-height: 0;
}

.sf-facebook-post--styled .sf-facebook-post__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sf-facebook-post--styled .sf-facebook-post__media--video {
  position: relative;
  padding: 40px;
  text-align: center;
  background: #000;
}

.sf-facebook-post--styled .sf-facebook-post__video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  transition: background 0.2s;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  background: #1877f2;
  font-size: 15px;
  font-weight: 600;
}

.sf-facebook-post--styled .sf-facebook-post__video-link:hover {
  background: #166fe5;
}

.sf-facebook-post--styled .sf-facebook-post__video-icon {
  font-size: 16px;
}

.sf-facebook-post--styled .sf-facebook-post__footer {
  padding: 12px 16px;
  border-top: 1px solid #e4e6eb;
}

.sf-facebook-post--styled .sf-facebook-post__actions a {
  text-decoration: none;
  color: #385898;
  font-size: 13px;
  font-weight: 600;
}

.sf-facebook-post--styled .sf-facebook-post__actions a:hover {
  text-decoration: underline;
}

/* Utility */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap;
}

/* Custom style - minimal styling */
.sf-facebook-post--custom {
  margin-bottom: 20px;
}

.sf-facebook-post--custom .sf-facebook-post__message {
  margin-bottom: 10px;
}

.sf-facebook-post--custom .sf-facebook-post__image {
  max-width: 100%;
  height: auto;
}

.sf-facebook-post--custom .sf-facebook-post__time,
.sf-facebook-post--custom .sf-facebook-post__link {
  margin-top: 8px;
  font-size: 14px;
}
