/*
Theme Name:     PoliticalWP-Child
Description:    PoliticalWP - Multipurpose Campaign, Political, Election WordPress Theme
Author:         ThemeSLR
Template:       politicalwp

(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
*/
 .social-profile-card {
    border-radius: 12px;
    padding: 22px;
    max-width: 520px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  .social-profile-card img.profile-photo {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-fit: cover;
  }

  /* LinkedIn theme */
  .social-profile-card.linkedin {
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
  }

  .social-profile-card.linkedin img.profile-photo {
    border: 4px solid #0a66c2;
  }

  /* X (Twitter) theme */
  .social-profile-card.x {
    border: 1px solid #222;
    background: #000;
    color: #fff;
  }

  .social-profile-card.x img.profile-photo {
    border: 3px solid #fff;
  }

  .social-card-content {
    padding-top: 10px;
  }

  .social-card-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 4px;
  }

  .social-card-subtitle {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .social-card-subtitle.muted {
    color: #555;
  }

  .social-card-subtitle.light {
    color: #bbb;
  }

  .social-card-text {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .social-card-text.muted {
    color: #555;
  }

  .social-card-text.light {
    color: #aaa;
  }

  .social-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: none;
  }

  .social-button.linkedin {
    background: #0a66c2;
    color: #fff;
  }

  .social-button.x {
    background: #fff;
    color: #000;
  }

  .social-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
  }

  .social-button-icon.linkedin {
    background: #fff;
    color: #0a66c2;
  }

  .social-button-icon.x {
    background: #000;
    color: #fff;
  }

  /* ⭐ Responsive behaviour */
  @media (max-width: 640px) {
    .social-profile-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .social-card-content {
      padding-top: 16px;
    }

    .social-profile-card img.profile-photo {
      width: 180px;
      height: 180px;
    }
  }
