/*<!--nw placements style-->*/
/* FULL WIDTH - main container with rich gradient background */
    .full-width-card {
      width: 100%;
      
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
   
	 background: linear-gradient(125deg, #ffffff 0%, #fffef7 40%, #fffaf0 100%);
	 margin-bottom:30px;
    }

 

    .top-accent {
      height: 5px;
      background: linear-gradient(90deg, #ff4d1e, #ff8c42, #ffb347, #ffcc88);
      width: 100%;
      border-radius: 0;
    }

    /* two column layout: left content + right image (photo from unsplash) */
    .dashboard-split {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
    }

    /* LEFT SIDE: stats and info */
    .left-stats {
      flex: 1.4;
      padding: 2rem 0 2rem 2.5rem;
    }

    /* RIGHT SIDE: Unsplash photo - clean, professional placement */
    .right-photo {
      flex: 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 2rem 1.8rem;
      
      background: transparent;
    }

    .image-container {
      width: 100%;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease;
      background: #f7efe7;
    }

    .image-container:hover {
      transform: scale(1.01);
    }

    .placement-photo {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: all 0.4s ease;
      filter: brightness(1.02) contrast(1.02);
    }

    /* optional subtle caption overlay */
    .photo-credit {
      text-align: center;
      font-size: 0.65rem;
      color: #b2967c;
      margin-top: 12px;
      letter-spacing: 0.3px;
    }

    .photo-credit i {
      font-size: 0.6rem;
      margin-right: 4px;
    }

    /* title area */
    .title-block {
      margin-bottom: 1rem;
      border-left: 4px solid #ff6a2e;
      padding-left: 1.2rem;
    }

    .main-headline {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
      background: linear-gradient(115deg, #E65C1E 0%, #F29B3C 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.25rem;
    }

    .soft-divider {
      width: 48px;
      height: 2px;
      background: linear-gradient(90deg, #ffa25e, #ffe0c4);
      margin: 0.6rem 0 0.5rem 0;
    }

    .tagline-single {
      font-size: 0.88rem;
      font-weight: 500;
      color: #5a6e7c;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .tagline-single i {
      color: #ff7e33;
      font-size: 0.8rem;
    }

    .separator-dot {
      display: inline-block;
      width: 4px;
      height: 4px;
      background: #cbd5e1;
      border-radius: 50%;
      margin: 0 6px;
    }

    .success-container {
      display: flex;
      margin: 1rem 0 1.6rem 0;
    }

    .pill-success {
      background: #f0f9ef;
      border-radius: 40px;
      padding: 0.5rem 1.6rem;
      font-weight: 700;
      font-size: 0.95rem;
      color: #1f8b4c;
      border: 1px solid rgba(31, 139, 76, 0.2);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .pill-success i {
      font-size: 1rem;
    }

    /* GRID FOR 5 METRICS - sharp clean */
    .stats-full-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-top: 0.4rem;
    }

    .stat-sharp {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(0px);
      padding: 1rem 0.6rem;
      transition: all 0.25s ease;
      border: 1px solid #f0e6dc;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
      position: relative;
      border-radius: 0 !important;
    }

    .stat-sharp:hover {
      transform: translateY(-3px);
      border-color: #ffcfaa;
      background: #ffffff;
      box-shadow: 0 15px 25px -12px rgba(0, 0, 0, 0.05);
    }

    .stat-label-custom {
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 1px;
      color: #7c6b5a;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .stat-label-custom i {
      font-size: 0.75rem;
      color: #ff7a2f;
    }

    .stat-number-large {
      font-size: 2.2rem;
      font-weight: 800;
      color: #1e2a3a;
      line-height: 1.1;
      margin-bottom: 0.2rem;
    }

    .stat-footnote {
      font-size: 0.65rem;
      color: #9c8b7a;
      margin-top: 5px;
      font-weight: 500;
    }

    /* mini stat badges */
    .stat-bubbles {
      display: flex;
      gap: 14px;
      margin-top: 22px;
      flex-wrap: wrap;
    }

    .mini-stat {
      background: white;
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 0.72rem;
      font-weight: 600;
      color: #b45a2b;
      border: 1px solid rgba(255,140,66,0.2);
      box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    }

    .mini-stat i {
      margin-right: 6px;
      color: #ff7e33;
    }

    /* responsive */
    @media (max-width: 1200px) {
      .stats-full-grid {
        gap: 0.8rem;
      }
      .stat-number-large {
        font-size: 1.9rem;
      }
    }

    @media (max-width: 1000px) {
      .dashboard-split {
        flex-direction: column;
      }
      .left-stats {
        flex: auto;
        padding: 1.8rem 1.8rem 1rem 1.8rem;
      }
      .right-photo {
        flex: auto;
        border-left: none;
        border-top: 1px solid rgba(255,140,66,0.2);
        padding: 1.5rem 1.8rem 2rem 1.8rem;
      }
      .stats-full-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .image-container {
        max-width: 500px;
        margin: 0 auto;
      }
    }

    @media (max-width: 700px) {
      .stats-full-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .left-stats {
        padding: 1.5rem;
      }
    }

    @media (max-width: 500px) {
      .stats-full-grid {
        grid-template-columns: 1fr;
      }
      .stat-number-large {
        font-size: 1.8rem;
      }
      .main-headline {
        font-size: 1.6rem;
      }
      .pill-success {
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
      }
      .right-photo {
        padding: 1.2rem;
      }
    }
	
	/* main academic year text — matches screenshot style */
        .academic-year {
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: -0.3px;
            color: #1e2f3e;
            margin-bottom:0.2rem;
            font-family: inherit;
			margin-top:30px;
        }

        /* large number styling: exactly 16,210 as the central element */
        .stat-number {
            font-size: 4rem;
            font-weight: 700;
            color: #0f2b1f;
            line-height: 1.1;
            letter-spacing: -0.02em;
            font-family: inherit;
			margin-bottom:30px;
        }

        /* optional subtle hover effect (no extra content, just modern feel) */
        @media (max-width: 500px) {
            .stat-number {
                font-size: 4rem;
            }
            .academic-year {
                font-size: 1.4rem;
            }
        }

        /* ensure exact copy of the reference: 
           "in the Academic 2025 - 2026" above, then 16,210 below.
           no badges, no icons, no extra lines, no dividers, no footnotes.
        */

