:root {
 --bg:#f7f8fc;           /* tło całej strony – jasne */
 --bg2:#eef0ff;
 --panel:#ffffff;        /* panele / karty */
 --muted:#55607a;        /* tekst drugorzędny */
 --text:#0f1221;         /* tekst podstawowy */
 --primary:#b8cb1b;      /* akcent */
 --primary-2:#4f0797;    /* akcent jaśniejszy */
 --primary-3:#2d8575;    /* akcent ciemniejszy */
 --secondary:#8367ea; 
 --success:#12b886;      /* online */
 --warning:#f59f00;      /* live */
 --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
}
* {
	box-sizing: border-box
}
html, body {
	scrollbar-gutter: stable;
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial
}
a {
	color: inherit;
	text-decoration: none
}
.container {
	width: min(1200px, 92%);
	margin-inline: auto
}
.bg2 {
	background: var(--bg2);
}
/* HEADER */
header {
	position:relative;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,.9);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid rgba(15,18,33,.08)
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0
}
.logo {
	display: flex;
	gap: 3px;
	align-items: center;
	letter-spacing: .3px
}
.logo .wordmark {
	font-weight: 600;
	font-size: 25px;
	line-height: 1;
	/*background: var(--gradient);*/
	background:var(--primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent
}
.logo .mark {
}
.logo .mark svg {
}
.nav ul {
	display: flex;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0
}
.menu .mobile-only {
	display: none
}
.nav a.link {
	color: var(--muted);
	font-weight: 600
}
.nav a.link:hover {
	color: var(--text)
}
.actions {
	display: flex;
	gap: 10px;
	align-items: center
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid rgba(15,18,33,.12);
	background: #ffffff;
	color: var(--text);
	padding: 10px 14px;
	border-radius: 12px;
	font-weight: 500;
	text-shadow: none;
}
.btn:hover {
	box-shadow: 0 6px 20px rgba(15,18,33,.08)
}
.btn.primary {
	/*background: var(--gradient);*/
	border: none;
	color: #fff;
	background: var(--primary);
	
}
.menu-toggle {
	display: none
}

@media (max-width: 860px) {
.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(15,18,33,.12)
}
.nav ul {
	display: none;
	position: absolute;
	top: 60px;
	left: 4%;
	right: 4%;
	width: 92%;
	flex-direction: column;
	gap: 8px;
	background: #fff;
	border: 1px solid rgba(15,18,33,.12);
	padding: 12px;
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(15,18,33,.12);
	z-index: 60
}
.nav ul.open {
	display: flex
}
.menu .mobile-only {
	display: block
}
.menu a.btn {
	width: 100%;
	justify-content: center
}
.menu a.link {
	padding: 10px 6px
}
.actions {
	display: none !important
}
}

/* Desktop menu always visible & horizontal */
@media (min-width: 861px) {
.menu-toggle {
	display: none !important
}
.nav ul {
	display: flex !important;
	position: static;
	width: auto;
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
	gap: 18px;
	flex-direction: row;
	align-items: center
}
.actions {
	display: flex !important;
	position: static
}
}
/* HERO */
.hero {
	position: relative;
	isolation: isolate
}
.hero .bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #ffffff, var(--bg2));
	opacity: 1;
	z-index: -1
}
.hero .wrap {
	display: grid;
grid-template-columns:1.1fr .9fr;
	gap: 40px;
	align-items: center;
	padding: 72px 0
}
.hero h1 {
	font-size: clamp(28px, 3.6vw, 56px);
	line-height: 1.3;
	margin: 20px 0
}
.hero p {
	color: var(--muted);
	font-size: 18px
}
.hero .cta {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	flex-wrap: wrap
}
.tagline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	/*color: var(--primary);
	background: rgb(255 77 109 / 4%);*/
	color:#c7007e;
	
	border: 1px solid;
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 500;
}
.hero-card {
	overflow: hidden;
	position: relative;
}
.hero-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}
.hero-card:before {
	box-shadow: inset 0px -75px 86px -124px #f0f2ff;
	content: '';
	display: block;
	width: 100%;
	height: 200px;
	position: absolute;
	background: linear-gradient(180deg, #ffffff00, #f0f2ff);
	bottom: -1px;
}
.hero-stats {
	display: flex;
	gap: 18px;
	padding: 14px;
	flex-wrap: wrap
}
.chip {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	background: #fff;
	border: 1px solid rgba(15,18,33,.12);
	color: var(--secondary);
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 600
}

@media (max-width: 980px) {
.hero .wrap {
	grid-template-columns: 1fr
}
}
/* GRID: Użytkownicy */
.section {
	padding: 48px 0
}
.section h2 {
	font-size: 28px;
	margin: 0 0 6px
}
.section p.lead {
	color: var(--muted);
	margin: 0 0 24px
}
.section-footer {
	display: flex;
	justify-content: center;
	margin-top: 30px
}
.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px
}

@media (max-width: 980px) {
.hero-card {
	display: none;
}
.grid {
	grid-template-columns: repeat(2, 1fr)
}
}

@media (max-width: 620px) {
.grid {
	grid-template-columns: 1fr
}
}
.card {
	position: relative;
	background: var(--panel);
	border: 1px solid rgba(15,18,33,.08);
	border-radius: 18px;
	overflow: hidden;
	min-height: 380px;
	box-shadow: 0 10px 24px rgba(15,18,33,.06);
	aspect-ratio: 9 / 16;
}
.card .img {
	position: absolute;
	inset: 0
}
.card .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.05)
}
.card .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.9) 100%)
}
.badge {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(4px);
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(15,18,33,.12);
	font-weight: 700
}
.online {
--dot: var(--success)
}
.offline {
--dot: #8b93b0
}
.badge .dot {
	width: 8px;
	height: 8px;
	background: var(--dot);
	border-radius: 999px;
	box-shadow: 0 0 0 4px rgba(0,0,0,.06) inset
}
.fav {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255,255,255,.95);
	border: 1px solid rgba(15,18,33,.12);
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	box-shadow: 0 6px 18px rgba(15,18,33,.08);
	transform: translateZ(0);
	opacity: 0.7;
}
.fav:hover {
	box-shadow: 0 10px 24px rgba(15,18,33,.12);
	transform: translateZ(0);
    opacity: 1;
}
.fav.active {
	background: var(--primary);
	color: #fff;
	opacity: 2;
}
.card .content {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px
}
.name-age {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 18px
}
.hobbies {
	display: flex;
	gap: 8px;
}
.hob {
	    background: rgb(255 255 255 / 51%);
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 0.9em;
}
.cta-row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px
}
.cta-row a:last-child {
	width: 100%;
	justify-content: center
}
.btn.small {
	padding: 8px 12px;
	border-radius: 10px;
	font-weight: 500
}
.clickable {
	cursor: pointer
}
/* RELACJE WIDEO (LIVE) */
.live-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

@media (max-width: 1200px) {
.live-grid {
	grid-template-columns: repeat(3, 1fr)
}
}

@media (max-width: 900px) {
.live-grid {
	grid-template-columns: repeat(2, 1fr)
}
}

@media (max-width: 520px) {
.live-grid {
	grid-template-columns: 1fr
}
}
.live-card {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(15,18,33,.08);
	background: #fff;
	aspect-ratio: 9/16;
	box-shadow: 0 10px 24px rgba(15,18,33,.06)
}
.live-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}
.live-label {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #ff2b7a;
	color: #fff;
	padding: 6px 10px;
	border-radius: 8px;
	display: inline-flex;
	gap: 6px;
	align-items: center;
	letter-spacing: .4px;
	box-shadow: 0 6px 16px rgba(255,43,122,.25);
}
.live-label, .viewers {
	font-size: 0.7em;
}
.viewers {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(0,0,0,.6);
	color: #fff;
	padding: 6px 10px;
	border-radius: 8px;
	border: none;
	display: inline-flex;
	gap: 6px;
	align-items: center;
	backdrop-filter: blur(2px)
}
.live-bottom {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.live-user {
	display: flex;
	align-items: center;
	gap: 10px;
	    color: #FFF;
    font-size: 25px;
}
.avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(0,0,0,.1)
}
.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

/* Placeholders (offline, no-network) */
@keyframes shimmer {
0% {
background-position:-200% 0
}
100% {
background-position:200% 0
}
}
.ph {
	background: linear-gradient(90deg, #e9ecf7 0%, #f7f8fc 40%, #e9ecf7 80%);
	background-size: 200% 100%;
	animation: shimmer 1.6s linear infinite
}
.ph-photo {
	position: absolute;
	inset: 0
}
.ph-hero {
	width: 100%;
	height: 100%;
	display: block
}
.ph-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(90deg, #e9ecf7, #f7f8fc, #e9ecf7);
	background-size: 200% 100%;
	animation: shimmer 1.6s linear infinite
}
.fake-video {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.18)), linear-gradient(90deg, #e9ecf7, #f7f8fc, #e9ecf7);
	background-blend-mode: multiply;
	background-size: 200% 100%;
	animation: shimmer 1.6s linear infinite
}
.hero-card {
	aspect-ratio: 4/3
}


.media.fake-video {
  position: relative;
  width: 100%;
  max-width: 960px;   /* opcjonalnie */
  margin: 0 auto;     /* opcjonalnie */
  aspect-ratio: 16 / 9;
  border-radius: 12px;  /* dopasuj do stylu strony */
  overflow: hidden;
}

.media.fake-video .live-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* brak interakcji: nie klikniesz, nie zatrzymasz */
  pointer-events: none;
  user-select: none;
}

.media.fake-video .live-preview.is-blurred {
  /* rozmycie + lekkie powiększenie, żeby krawędzie nie „prześwitywały” */
  filter: blur(6px);
  transform: scale(1.02);
}

/* klasa dostępności – ukryte wizualnie, widoczne dla czytników ekranu */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}






/* CTA blok */
.cta-block {
	background: var(--gradient);
	border-radius: 22px;
	padding: 28px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	color: #fff
}

.cta-block h3 {
	margin: 0;
	font-size: 26px
}
.cta-block div{
flex-wrap: wrap;
    gap: 10px;
    display: flex;
    justify-content: center;
	
}

@media (max-width: 680px) {
.cta-block {
	grid-template-columns: 1fr
}
}
/* Jak to działa */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px
}

@media (max-width: 860px) {
.steps {
	grid-template-columns: 1fr
}
}
.step {
	position: relative;
	background: #fff;
	border: 1px solid rgba(15,18,33,.08);
	border-radius: 18px;
	padding: 26px 18px 18px;
	display: block;
	text-align: center;
	overflow: visible
}
.icon {
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #ffffff;
	border: 1px solid rgba(15,18,33,.12);
	box-shadow: 0 8px 18px rgba(15,18,33,.08);
	font-size: 24px
}
/* Opinie – karuzela */
.carousel {
	position: relative;
	padding: 0 40px
}
.carousel-track {
	display: flex;
	gap: 16px;
	overflow: hidden;
	scroll-behavior: smooth
}
.opinia {
	min-width: 251px;
	flex: 0 0 251px;
	background: #fff;
	border: 1px solid rgba(15, 18, 33, .08);
	border-radius: 18px;
	padding: 16px;
	text-align: center;
}
.opinia .user {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
	    text-align: left;
}
.opinia .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(0,0,0,.08)
}
.opinia .avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}
.carousel .arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	border-radius: 100%;
	display: grid;
	place-items: center;
	background: #fff;
	border: 1px solid rgba(15, 18, 33, .12);
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 8px 18px rgba(15, 18, 33, .08);
	line-height: 0;
}
.carousel .arrow.prev {
	left: 0
}
.carousel .arrow.next {
	right: 0
}
/* Statystyki */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	justify-items: center;
	text-align: center
}

@media (max-width: 980px) {
.stats {
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	justify-items: center
}
}

@media (max-width: 600px) {
.stats {
	grid-template-columns: 1fr;
	gap: 14px;
	justify-items: center
}
}
.stat {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 10px;
	box-shadow: none;
	text-align: center
}
.stat .num {
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent
}
.stat p {
	color: var(--muted);
	margin: 8px 0 0;
	text-align: center
}
/* Drugi CTA */
.cta-ghost {
	background: var(--gradient);
	border-radius: 22px;
	padding: 28px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(15,18,33,.06);
	color: #fff;
}
.cta-ghost, .primary, .cta-block, .live-label {
	text-shadow: 2px 1px 2px #00000057;
}
.cta-ghost h3 {
	margin-top: 0;
	font-size: 26px
}
/* Stopka */
footer {
	margin-top: 40px;
	border-top: 1px solid rgba(15,18,33,.1);
	background: #f4f6fb;
	color: #1d223b
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 18px;
	padding: 24px 0
}
.footer-grid h4 {
	margin: 0 0 10px
}
.footer-grid a {
	color: var(--muted)
}
.copyright {
	padding: 12px 0;
	color: #5b6685;
	border-top: 1px solid rgba(15,18,33,.1)
}

@media (max-width: 860px) {
.footer-grid {
	grid-template-columns: 1fr 1fr
}
}











/* blokada scrolla */
body.popup-open {
	overflow: hidden;
}
/* tło + animacja */
.popup {
	z-index: 999;
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}
.popup.show {
	opacity: 1;
	pointer-events: auto;
}
/* okno + animacja wejścia */
.poput-content {
	max-width: 420px;
	width: calc(100% - 32px);
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	border-radius: 12px;
	padding: 18px;
	transform: translateY(8px);
	transition: transform .2s ease;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
}
.popup.show .poput-content {
	transform: translateY(0);
}
/* elementy wewnątrz */
.poput-content img{
    width: 63px;
    margin-bottom: 8px;
    justify-self: anchor-center;
    display: block;
}
.popup-title {
	margin: 0 0 6px;
	text-align: center;
	font-size: 23px;
}
.popup-text {
    color: #4a5568;
    text-align: center;
    margin: 30px 0;
}
.popup-strong {
    text-align: center;
    margin: 30px 0 50px 0;
	font-weight:500;
	color:#c7007e;
}
.popup-btn {
	display: block;
	width: 100%;
	padding: 12px 14px;
	margin-top: 10px;
	text-align: center;
	text-decoration: none;
	background: #0f62fe;
	color: #fff;
	border-radius: 10px;
	font-weight: 700;
	border: 0;
}
.popup-btn{
cursor: pointer;
    padding: 10px 12px;
    font-weight: 500;
    font-size: 17px;
}
.popup-btn[disabled]{
  opacity:.6; 
}

.user-view{
  background: rgba(0, 0, 0, 0.35); /* półprzezroczyste przyciemnienie */
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px); /* Safari */
}


body:has(.popup-btn[disabled]){
cursor:wait;	
}
.poput-content svg {
    width: 63px;
    margin-bottom: 8px;
    justify-self: anchor-center;
    display: block;
    height: auto;
}



/*=======PROFIL======

.profile-container {
display: grid;
    grid-column-gap: 40px;
    grid-row-gap: 0px;
    margin: auto;
    overflow: hidden;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    padding: 30px 0;
}
.profile-main-photo   { grid-area: 1 / 1 / 2 / 2; }
.profile-nick         { grid-area: 2 / 1 / 3 / 2; }
.profile-details      { grid-area: 3 / 1 / 4 / 2; }
.profile-contact      { grid-area: 4 / 1 / 5 / 2; }
.profile-biogram  { grid-area: 5 / 1 / 6 / 2; }
.profile-gallery      { grid-area: 6 / 1 / 7 / 2; }



.profile-nick {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.profile-biogram {    padding-bottom: 40px;}

.profile-biogram>div{
    position: relative;
    margin: 15px 0;
    line-height: 25px;
    padding: 0 20px;
}



.profile-main-photo{
    text-align: center;
}

.profile-main-photo img{
    width: 100%;
    border-radius: 10px;
    border: solid 7px #fff;
    box-shadow: 0px 0px 0px 1px #ff4d6d;
    margin: 1px;
    max-width: 200px
}
    


.profile-nick b{
    font-size: 25px;
    font-weight: 600;
    margin: 0 15px;

}

.profile-nick .status{
    border-radius: 10px;
    background: #eef0ff;
    padding: 0 10px;
    font-size: 11px;
    color: #404040;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.profile-nick .status:before{
content: '';
    display: block;
    width: 6px;
    aspect-ratio: 1;
    background: green;
    border-radius: 100%;
    margin-right: 5px;
    animation: migotanie 1s infinite;
}

@keyframes migotanie {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}
.profile-container h2{
font-size: 19px;
    margin: 10px 0 5px 0;
    color: #2e2e2e;
    background: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: 400;

}



.profile-container ul{
list-style-type: none;
    padding-left: 20px;
    margin: 0;
    line-height: 25px;
        margin: 0 5px;
}
.profile-details ul li{
    position: relative;
    
}

.profile-container b{
    font-weight: 500;
    
}

.profile-details ul li:before{
content: '';
    display: block;
    width: 5px;
    height: 2px;
    background: #ff4d6d;
    position: absolute;
    left: -12px;
    top: 13px;
    
    
    
}
.profile-gallery>div{
display: flex;
    gap: 20px;
    margin: 10px 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    
    
}
.profile-gallery .img{
width: 140px;
    aspect-ratio: 1;
    background-size: cover; 
    
    

}

.profile-gallery img{
    
    
    
}

.profile-contact ul{
    line-height: 40px;

}
.profile-container button{
cursor: pointer;
    background: var(--gradient);
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 7px;
    
}
.profile-contact span{
    width: 160px;
    display: inline-block;
}


.profile-container .read-more{
    position: absolute;
    width: 100%;
    bottom: -7px;
    height: 59px;
    background: linear-gradient(0deg, rgb(238 240 255) 15%, rgba(255, 255, 255, 0) 145%);
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.profile-container .read-more button{
    position: absolute;
    bottom: -25px;
}

.profile-gallery button{
        margin: 0 130px;
    min-width: 80px;
}
@media (min-width: 960px) {
.profile-container {
 
    grid-template-columns: 200px calc((100% - 280px) / 2) calc((100% - 280px) / 2);
}
   

.profile-main-photo { grid-area: 1 / 1 / 5 / 2; }
.profile-nick {grid-area: 1 / 2 / 2 / 4;}
.profile-biogram {grid-area: 3 / 2 / 4 / 4;}
.profile-details {grid-area: 2 / 2 / 3 / 3; }
.profile-contact { grid-area: 2 / 3 / 3 / 4; }
.profile-gallery { grid-area: 4 / 2 / 5 / 4; } 
    

.profile-gallery button{
        margin: 0;
    min-width: 0;
}
*/
}