/* DPM profile */

.dpm-profile--gokinjosefure .prfWrap {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: #d33f70 dotted 1px;
}

.dpm-profile--gokinjosefure .prfWrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dpm-profile--gokinjosefure .avatar {
  margin-right: 10px;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.dpm-profile--gokinjosefure .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.dpm-profile--gokinjosefure .prfName {
  flex: 1;
}
.dpm-profile--gokinjosefure .prfName a {
  color: #ff0080 !important;
  font-weight: bold !important;
  text-decoration: none !important;
}

.dpm-profile--gokinjosefure .prfText {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

.dpm-profile--gokinjosefure .prfUpdate {
  font-size: 14px;
}

/* モバイル対応: 画面幅が狭い場合は縦並びに切り替え */
@media (max-width: 768px) {
  .dpm-profile--gokinjosefure .prfWrap {
    flex-direction: column;
    align-items: center;
  }

  .dpm-profile--gokinjosefure .avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .dpm-profile--gokinjosefure .prfName {
    text-align: center;
  }
}

/* Profile heading */
.dpm-profile--gokinjosefure h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 5px;
  font-size: 16px;
}

.dpm-profile--gokinjosefure h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-image:
    repeating-linear-gradient(
      45deg,
      #d33f70 0,
      #d33f70 1px,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%
    ),
    repeating-linear-gradient(
      135deg,
      #d33f70 0,
      #d33f70 1px,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%
    );
  background-size: 8px 8px;
}
