/* ============================================
   CSS Variables & Base Styles
============================================= */
:root {
  --primary-color: #111111;
  --secondary-color: #666666;
  --accent-color: #3b82f6;
  --bg-color: #f5f5f0;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-color);
  color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  user-select: none;
}

/* ============================================
   Scroll Progress Bar
============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 10001;
  transition: width 0.1s ease;
}

/* ============================================
   Header (Desktop Only)
============================================= */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 15px 10%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

header h1 {
  font-size: 18px;
  font-weight: 600;
}

nav {
  display: flex;
}

nav a {
  margin-left: 30px;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  opacity: 0.6;
}

/* ============================================
   Hero Section
============================================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding-left: 10%;
  max-width: 500px;
  z-index: 2;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-text h2 {
  color: #f5f5f0;
  font-family: 'Allura', cursive;
  font-size: 65px;
  font-weight: 400;
}

.hero-text p {
  color: #f5f5f0;
  margin-bottom: 60px;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}

/* ============================================
   Sections
============================================= */
section {
  padding: 120px 10%;
}

.section-title {
  font-size: 28px;
  margin-bottom: 60px;
}

/* ============================================
   Projects Grid
============================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.project-card img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card {
  transition: transform 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-info {
  margin-top: 15px;
}

.project-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.project-info p {
  font-size: 14px;
  opacity: 0.6;
}

/* ============================================
   About Section
============================================= */
#about p {
  max-width: 700px;
}

/* ============================================
   Contact Section
============================================= */
.contact-form {
  max-width: 600px;
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form button {
  padding: 12px 28px;
  border: 1px solid #d2d4d8;
  background: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #111111;
  color: #FFFFFF;
}

.socials {
  margin-top: 40px;
}

.socials a {
  margin-right: 20px;
  font-size: 18px;
  transition: 0.3s;
  display: inline-block;
}

.socials a:hover {
  opacity: 0.6;
  transform: translateY(-3px);
}

/* ============================================
   Footer
============================================= */
footer {
  text-align: center;
  padding: 60px 10%;
  font-size: 14px;
  color: #c1c3c7;
  background: #ffffff;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

/* ============================================
   Animations
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ============================================
   Skills Section
============================================= */
.skills-minimal {
  width: 250px;
}

.skill-item {
  margin-bottom: 40px;
}

.skill-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f5f5f0;
  margin-bottom: 10px;
}

.skill-line {
  width: 100%;
  height: 2px;
  background: rgba(245, 245, 240, 0.3);
}

.skill-fill {
  height: 100%;
  width: 0;
  background: #f5f5f0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   View Work Button
============================================= */

.view-work{
  position:absolute;
  bottom:6vh;
  left:50%;
  transform:translateX(-50%);

  display:inline-flex;
  align-items:center;
  gap:15px;

  text-decoration:none;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;

  color:#f5f5f0;
  z-index:10;

  transition:all 0.35s cubic-bezier(0.16,1,0.3,1);
}

.view-work .line{
  width:50px;
  height:1px;
  background:#f5f5f0;
  transition:width 0.35s cubic-bezier(0.16,1,0.3,1);
}

.view-work:hover .line{
  width:80px;
}

.view-work:hover{
  transform:translateX(-50%) translateY(-3px);
}




/* ============================================
   Awwwards Scroll Animations
============================================= */
.aw-hidden {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.aw-show {
  opacity: 1;
  transform: translateY(0);
}

.full-image,
.image-grid img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.full-image:hover,
.image-grid img:hover {
  transform: scale(1.03);
}

/* ============================================
   Mobile Navigation (Hamburger)
============================================= */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  z-index: 1100;
}

.nav-links {
  display: flex;
  gap: 40px;
}

/* ============================================
   INNER PAGE STYLES
============================================= */
.inner-page {
  background: #f5f5f0;
  color: #111111;
}

/* Hide back button on desktop by default */
.mobile-back-btn {
  display: none;
}

/* Desktop Header - Visible on desktop */
.desktop-header {
  display: flex;
}

/* Inner Page Hero */
.inner-hero {
  padding: 160px 10% 80px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.inner-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: #111111;
}

.inner-hero p {
  font-size: 24px;
  line-height: 1.5;
  color: #555555;
  max-width: 600px;
  margin: 0 auto;
}

.inner-content {
  padding: 60px 10% 120px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Text Block - Centered */
.text-block {
  max-width: 720px;
  margin: 0 auto 60px auto;
  font-size: 19px;
  line-height: 1.9;
  text-align: center;
  color: #222;
}

.text-block p:first-letter {
  font-size: inherit;
  float: none;
  padding: 0;
}

/* Images */
.full-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px auto;
  display: block;
  border-radius: 4px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 100px auto;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ============================================
   MOBILE RESPONSIVE (Max-Width: 768px)
============================================= */
@media (max-width: 768px) {

  /* Hero */
  .hero-left {
    padding: 0 10%;
    max-width: 100%;
  }

  .hero-text h2 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 40px;
  }

  /* Mobile Navigation */
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #ffffff;
    flex-direction: column;
    padding: 120px 30px;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 0;
    font-size: 16px;
  }


  /* Hide desktop header on mobile */
  .desktop-header {
    display: none;
  }

  /* Inner Page Mobile */
  .inner-hero {
    padding: 120px 6% 60px;
    text-align: left;
  }

  .inner-hero h1 {
    font-size: 36px;
  }

  .inner-hero p {
    font-size: 16px;
    text-align: left;
  }

  .inner-content {
    padding: 40px 6% 80px;
  }

  .text-block {
    font-size: 16px;
    text-align: left;
    margin-bottom: 40px;
  }

  .full-image {
    margin-bottom: 50px;
    width: 100%;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
}


/* ============================================
   INNER PAGE LAYOUT & TYPOGRAPHY
============================================= */

/* Layout Container */
.inner-page-layout {
  max-width: 800px; /* Narrower container for reading */
  margin: 0 auto;
  padding: 140px 20px 100px 20px; /* Top padding clears fixed header */
}

/* Hero Section */
.inner-hero {
  text-align: center;
  margin-bottom: 60px;
}

.meta-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  display: block;
  margin-bottom: 15px;
}

.inner-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.1;
}

.inner-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #555;
}

/* Newspaper Text Block */
.newspaper-text-block {
  margin-bottom: 40px;
}

.newspaper-text-block p {
  font-family: 'Lora', serif; /* Newspaper feel */
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  text-align: justify; /* Newspaper justification */
  hyphens: auto; /* Prevents gaps on mobile */
  margin-bottom: 25px;

}

/* Lists inside article text */
.newspaper-text-block ul,
.newspaper-text-block ol {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  margin: 0 0 25px 20px;
  padding: 0;
  text-align: justify;
}

.newspaper-text-block li {
  margin-bottom: 6px;
}

/* subtle editorial bullet style */
.newspaper-text-block li::marker {
  color: #888;
}

/* Drop Cap for first letter */
.newspaper-text-block p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.5em;
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  margin-top: 4px;
  color: #111;
}

/* Full Width Images */
.inner-image-full {
  margin: 50px 0;
  width: 100%;
}

.inner-image-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.img-caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  display: block;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Grid for Images */
.inner-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 50px 0;
}

.inner-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.inner-image-grid img:hover {
  transform: scale(1.02);
}

/* ============================================
   MOBILE RESPONSIVENESS (Inner Page)
============================================= */
@media (max-width: 768px) {
  .inner-page-layout {
    padding: 120px 20px 80px 20px;
  }

  

  .inner-hero h1 {
    font-size: 32px;
  }

  .newspaper-text-block p {
    font-size: 16px;
    text-align: left; /* Justify can look bad on very small screens, left align is safer */
    hyphens: auto;
  }

    .newspaper-text-block ul,
  .newspaper-text-block ol {
    font-size: 16px;
  }
  
  /* Optional: Keep justify on mobile if you prefer, just remove text-align: left above */
  .newspaper-text-block p {
     text-align: justify; 
  }

  .inner-image-grid {
    grid-template-columns: 1fr; /* Stack images on mobile */
  }
}


/* Add this to shift the image to show the person */
@media (max-width: 768px) {
  .hero img {
    object-position: 60% center !important; /* Shifts image to show right side/face */
    height: 100vh; /* Full height so text floats over it */
  }
}


.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #ffffff;
    flex-direction: column;
    padding: 120px 30px;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }
}

.comparison-block{
margin-top:25px;
padding:20px;
border-left:3px solid #d2d4d8;
background:#f9f9f9;
}

.comparison-block h3{
margin-bottom:10px;
}

.comparison-block ul{
padding-left:20px;
line-height:1.8;
}


#about{
  position: relative;
}

.about-more{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.5s ease;
}

.about-more.active{
  max-height:500px;
}

.read-more-btn{
  display:block;
  margin-left:auto; /* pushes button to the right */
  margin-top:15px;
  background:none;
  border:none;
  font-family:inherit;
  font-size:14px;
  cursor:pointer;
  color:inherit;
  opacity:0.7;
  transition:opacity 0.3s ease;
}

.read-more-btn:hover{
  opacity:1;
}

.about-text{
  max-width:700px;
}

.about-more{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

.about-more.active{
  max-height:500px;
}

.read-more-btn{
  background:none;
  border:none;
  font-family:inherit;
  font-size:14px;
  cursor:pointer;
  margin-top:6px;
  padding:0;
  color:inherit;
  opacity:0.7;
}

.read-more-btn:hover{
  opacity:1;



  /* ===============================
   AWWARDS STYLE TYPOGRAPHY
================================ */

body{
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color:#111;
  background:#f5f5f0;
  line-height:1.75;
  letter-spacing:-0.01em;
}

/* Hero title */

.inner-hero h1{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem,4vw,3.8rem);
  font-weight:600;
  letter-spacing:-0.02em;
}

/* Subtitle */

.inner-subtitle{
  font-family:'Lora', serif;
  font-style:italic;
  font-size:1.2rem;
  color:#666;
}

/* Journal title */

.newspaper-text-block h2{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:1.3rem;
  margin-bottom:20px;
  letter-spacing:-0.01em;
}

/* Paragraph text */

.newspaper-text-block p{
  font-family:'Lora', serif;
  font-size:1.05rem;
  max-width:720px;
  margin-bottom:20px;
}

/* Links */

a{
  color:#111;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,0.1);
  transition:0.3s;
}

a:hover{
  border-bottom:1px solid #111;
}

/* Blog recommendation */

section ul{
  list-style:none;
  padding:0;
}

section li{
  margin-bottom:12px;
  font-family:'Plus Jakarta Sans', sans-serif;
}

/* Images */

img{
  border-radius:6px;
}

/* Footer */

footer{
  font-family:'Inter', sans-serif;
  font-size:0.9rem;
  color:#666;
}
}

.related-articles{
margin-top:80px;
border-top:1px solid #e5e5e5;
padding-top:40px;
}

.related-articles h2{
font-family:"Plus Jakarta Sans", sans-serif;
font-size:22px;
margin-bottom:25px;
}

.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.related-card{
text-decoration:none;
color:inherit;
padding:20px;
border:1px solid #e5e5e5;
border-radius:8px;
transition:all .25s ease;
background:#fff;
}

.related-card:hover{
transform:translateY(-4px);
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.related-card h3{
font-size:18px;
margin-bottom:10px;
font-family:"Plus Jakarta Sans", sans-serif;
}

.related-card p{
font-size:14px;
color:#666;
line-height:1.6;
}



/* ============================= */
/* Expand / Collapse Button */
/* ============================= */

.toggle-posts{
  display: block;
  margin-left: auto;          /* pushes button to right */
  margin-top: 25px;

  background: none;
  border: none;

  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;

  color: #111;
  cursor: pointer;

  transition: all 0.25s ease;
}

/* Hover effect */
.toggle-posts:hover{
  opacity: 0.6;
  transform: translateY(-1px);
}

/* Click effect */
.toggle-posts:active{
  transform: translateY(0);
  opacity: 0.4;
}

/* Optional subtle divider above button */
.toggle-posts::before{
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 10px;
}

/* See More Button */
.toggle-posts{
  margin-top: 8px;
  padding: 8px 16px;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: 1s;
}

/* Force button to right inside grid */
.projects-grid .toggle-posts{
  grid-column: 1 / -1;
  justify-self: end;
}



/* ===================================================== */
/* GLOBAL SMOOTH UI SYSTEM */
/* ===================================================== */

:root{
  --smooth-fast:0.25s;
  --smooth-normal:0.35s;
  --smooth-slow:0.55s;
  --ease-smooth:cubic-bezier(0.22,1,0.36,1);
}

html{
  scroll-behavior:smooth;
}

*{
  backface-visibility:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ===================================================== */
/* UNIVERSAL TRANSITIONS */
/* ===================================================== */

a,
button,
.project-card,
.socials a,
.nav-links a{
  transition:
  transform var(--smooth-fast) var(--ease-smooth),
  opacity var(--smooth-fast) var(--ease-smooth),
  color var(--smooth-fast) var(--ease-smooth),
  background var(--smooth-fast) var(--ease-smooth),
  box-shadow var(--smooth-fast) var(--ease-smooth);
}

/* ===================================================== */
/* PROJECT CARD SMOOTH HOVER */
/* ===================================================== */

.project-card{
  transform:translateY(0);
  will-change:transform;
}

.project-card:hover{
  transform:translateY(-6px);
}

/* ===================================================== */
/* IMAGE PERFORMANCE */
/* ===================================================== */

img{
  max-width:100%;
  height:auto;
  display:block;
  transform:translateZ(0);
}

/* ===================================================== */
/* SMOOTH BUTTON INTERACTION */
/* ===================================================== */

button{
  cursor:pointer;
}

button:hover{
  transform:translateY(-2px);
}

button:active{
  transform:translateY(0);
}

/* ===================================================== */
/* FADE UP ANIMATION */
/* ===================================================== */

.fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:
  opacity var(--smooth-slow) var(--ease-smooth),
  transform var(--smooth-slow) var(--ease-smooth);
}

.fade-up.visible{
  opacity:1;
  transform:translateY(0);
}

/* ===================================================== */
/* STAGGERED CARD ANIMATION */
/* ===================================================== */

.projects-grid .project-card{
  opacity:0;
  transform:translateY(30px);
}

.projects-grid.show .project-card{
  opacity:1;
  transform:translateY(0);
}

.projects-grid.show .project-card:nth-child(1){transition-delay:0.05s;}
.projects-grid.show .project-card:nth-child(2){transition-delay:0.1s;}
.projects-grid.show .project-card:nth-child(3){transition-delay:0.15s;}
.projects-grid.show .project-card:nth-child(4){transition-delay:0.2s;}
.projects-grid.show .project-card:nth-child(5){transition-delay:0.25s;}
.projects-grid.show .project-card:nth-child(6){transition-delay:0.3s;}
.projects-grid.show .project-card:nth-child(7){transition-delay:0.35s;}
.projects-grid.show .project-card:nth-child(8){transition-delay:0.4s;}

/* ===================================================== */
/* SEE MORE BUTTON */
/* ===================================================== */

.toggle-posts{
  display:block;
  margin-left:auto;
  margin-top:25px;

  background:none;
  border:none;

  font-size:14px;
  font-family:'Inter',sans-serif;

  opacity:0.8;

  transition:
  opacity var(--smooth-fast) var(--ease-smooth),
  transform var(--smooth-fast) var(--ease-smooth);
}

.toggle-posts:hover{
  opacity:1;
  transform:translateY(-2px);
}

/* ===================================================== */
/* MAGNETIC BUTTON EFFECT */
/* ===================================================== */

button,
.toggle-posts{
  position:relative;
  transition:transform var(--smooth-fast) var(--ease-smooth);
}

button:hover,
.toggle-posts:hover,
.view-work:hover{
  transform:translateY(-2px) scale(1.02);
}

/* ===================================================== */
/* SILKY SCROLL PROGRESS BAR */
/* ===================================================== */

.scroll-progress{
  position:fixed;
  top:0;
  left:0;

  height:3px;
  width:0%;

  background:#111;

  z-index:9999;

  transition:width 0.15s linear;
}

/* ===================================================== */
/* PERFORMANCE IMPROVEMENTS */
/* ===================================================== */

section{
  transform:translateZ(0);
}

.projects-grid{
  transform:translateZ(0);
}


.blog-feature-image{
margin:30px 0;
text-align:center;
}

.blog-feature-image img{
width:100%;
max-height:500px;
object-fit:cover;
border-radius:10px;
}

.image-credit{
font-size:12px;
color:#777;
margin-top:6px;
}

